X-Git-Url: http://git.treefish.org/~alex/seamulator.git/blobdiff_plain/0fcdcce0bba803bdb7d3165a3884e4e0f50553bc..40fe15ee6190427f3bbc5db4ff640442626cc3bb:/seamulator.cpp diff --git a/seamulator.cpp b/seamulator.cpp deleted file mode 100644 index 15b731b..0000000 --- a/seamulator.cpp +++ /dev/null @@ -1,59 +0,0 @@ -#include - -#include - -#include "sea.h" -#include "watersurface.h" - -const int LATTICE_SIZE = 10; -const double LATTICE_UNIT = 1; - -SeaPtr sea; -WaterSurfacePtr surface; - -void glDisplayFunc() -{ - glMatrixMode(GL_MODELVIEW); - glLoadIdentity(); - - glClear(GL_COLOR_BUFFER_BIT); - - sea->update(); - surface->draw(); - - glutSwapBuffers(); - - glutPostRedisplay(); -} - -void glReshapeFunc(int width, int height) -{ - glMatrixMode(GL_PROJECTION); - glLoadIdentity(); - gluPerspective(50.0, ((float)width/(float)height), 0, 1000.0); - glViewport(0, 0, width, height); - gluLookAt(0,-10,10, 0,0,0, 0,1,0); -} - -int main(int argc, char** argv) -{ - std::srand(std::time(0)); - - surface = std::make_shared(LATTICE_SIZE, LATTICE_UNIT); - sea = std::make_shared(surface); - - glutInit(&argc, argv); - glutInitDisplayMode(GLUT_DOUBLE); - glutInitWindowSize(300, 300); - glutInitWindowPosition(100, 100); - glutCreateWindow("seamulator"); - - glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); - - glutDisplayFunc(glDisplayFunc); - glutReshapeFunc(glReshapeFunc); - - glutMainLoop(); - - return 0; -}