From cccd3186305915d92b1751dc616979d64116a4aa Mon Sep 17 00:00:00 2001 From: KT Date: Mon, 6 Sep 2021 19:07:33 -0500 Subject: Upload a1 --- dev/a4-dance/dance_floor.cc | 71 --------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 dev/a4-dance/dance_floor.cc (limited to 'dev/a4-dance/dance_floor.cc') diff --git a/dev/a4-dance/dance_floor.cc b/dev/a4-dance/dance_floor.cc deleted file mode 100644 index f8302e6..0000000 --- a/dev/a4-dance/dance_floor.cc +++ /dev/null @@ -1,71 +0,0 @@ -#include "dance_floor.h" -#include "config.h" - -DanceFloor::DanceFloor(float s, int c) { - tileSize_ = s; - tileCount_ = c; - /** - Array indices; - Array coords; - Array texcoords; - tex = Texture::fromFile(DANCEFLOOR_PATH); - - indices.append(0,1,2,3); - coords.append(Vector3(-tileSize/2, 0, -tileSize/2)); - texcoords.append(Vector2(0,0)); - coords.append(Vector3(-tileSize/2, 0, tileSize/2)); - texcoords.append(Vector2(0,1)); - coords.append(Vector3(tileSize/2, 0, tileSize/2)); - texcoords.append(Vector2(1,1)); - coords.append(Vector3(tileSize/2, 0, -tileSize/2)); - texcoords.append(Vector2(1,0)); - - vdatabuf = VertexBuffer::create(sizeof(Vector3) * coords.size() - + sizeof(Vector2) * texcoords.size() + sizeof(int)*indices.size(), - VertexBuffer::WRITE_ONCE); - - vcoords = AttributeArray(coords, vdatabuf); - vtexcoords = AttributeArray(texcoords, vdatabuf); - vindices = IndexStream(indices, vdatabuf); - - colors.resize(tileCount*2); - for (int i=0; ipushState(); - rd->setTexture(0, tex); - - rd->beginIndexedPrimitives(); - rd->setVertexArray(vcoords); - rd->setTexCoordArray(0, vtexcoords); - - - for (int x=0; xsetColor(colors[x][y]+Color3(0.1,0.1,0.1)); - rd->setObjectToWorldMatrix(CoordinateFrame(Vector3((x - tileCount) * tileSize, - 0, - (y - tileCount) * tileSize))); - rd->sendIndices(PrimitiveType::QUADS, vindices); - if (Random::common().uniform(0, 1) < 0.015) { - colors[x][y] = Color3(Random::common().uniform(0.3, 2.0), - Random::common().uniform(0.3, 2.0), - Random::common().uniform(0.3, 2.0)); - } - } - } - - rd->endIndexedPrimitives(); - rd->popState(); - */ -} - -- cgit v1.2.3