]> git.treefish.org Git - seamulator.git/blobdiff - src/seamulator.cpp
Less heavy dots
[seamulator.git] / src / seamulator.cpp
index 92dfac608d383a97c9b345729d44e3990c3a4bc8..aec8da13377c6053d2a865c84c4b8e31a70a4a89 100644 (file)
@@ -1,20 +1,39 @@
+/**
+ * Copyright (C) 2016  Alexander Schmidt
+ *
+ * This file is part of Seamulator.
+ *
+ * Seamulator is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Seamulator is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Seamulator.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 #include <ctime>
 #include <cmath>
 #include <ctime>
 #include <cmath>
+#include <iostream>
 #include <memory>
 
 #include <memory>
 
+#include <boost/program_options.hpp>
 #include <GL/glut.h>
 
 #include "sea.h"
 #include "seaview.h"
 #include <GL/glut.h>
 
 #include "sea.h"
 #include "seaview.h"
+#include "synthesizer.h"
 #include "watersurface.h"
 
 #include "watersurface.h"
 
-const int LATTICE_SIZE{128};
-const double LATTICE_EXTEND{10};
 const int INIT_WINDOW_POS_X{50};
 const int INIT_WINDOW_POS_Y{50};
 const int INIT_WINDOW_WIDTH{800};
 const int INIT_WINDOW_HEIGHT{600};
 const int INIT_WINDOW_POS_X{50};
 const int INIT_WINDOW_POS_Y{50};
 const int INIT_WINDOW_WIDTH{800};
 const int INIT_WINDOW_HEIGHT{600};
-const double INIT_VIEW_DISTANCE{LATTICE_EXTEND * 1.5};
 const double INIT_VIEW_AZIMUTH{0};
 const double INIT_VIEW_ALTITUDE{M_PI / 4};
 const char WINDOW_TITLE[]{"seamulator"};
 const double INIT_VIEW_AZIMUTH{0};
 const double INIT_VIEW_ALTITUDE{M_PI / 4};
 const char WINDOW_TITLE[]{"seamulator"};
@@ -22,20 +41,37 @@ const char WINDOW_TITLE[]{"seamulator"};
 SeaPtr sea;
 WaterSurfacePtr surface;
 std::unique_ptr<SeaView> seaView;
 SeaPtr sea;
 WaterSurfacePtr surface;
 std::unique_ptr<SeaView> seaView;
+std::unique_ptr<Synthesizer> synthesizer;
+
+struct Settings {
+  double windSpeed;
+  int latticeSize;
+  double latticeExtend;
+  double amplitudeFactor;
+};
 
 void glDisplayFunc();
 void glReshapeFunc(int width, int height);
 void glMouseFunc(int button, int state, int x, int y);
 void glMotionFunc(int x, int y);
 
 void glDisplayFunc();
 void glReshapeFunc(int width, int height);
 void glMouseFunc(int button, int state, int x, int y);
 void glMotionFunc(int x, int y);
+Settings parseArguments(int argc, char** argv);
+
+namespace po = boost::program_options;
 
 int main(int argc, char** argv)
 {
 
 int main(int argc, char** argv)
 {
-  std::srand(std::time(0));
+  Settings settings = parseArguments(argc, argv);
 
 
-  surface = std::make_shared<WaterSurface>(LATTICE_SIZE, LATTICE_EXTEND);
-  sea = std::make_shared<Sea>(surface, 10, 0.0000001);
-  seaView = std::make_unique<SeaView>(INIT_VIEW_DISTANCE, INIT_VIEW_AZIMUTH,
-                                     INIT_VIEW_ALTITUDE);
+  std::srand(std::time(0));
+  surface = std::make_shared<WaterSurface>(settings.latticeSize,
+                                           settings.latticeExtend);
+  sea = std::make_shared<Sea>(surface,
+                              settings.windSpeed,
+                              settings.amplitudeFactor);
+  seaView = std::make_unique<SeaView>(settings.latticeExtend * 1.5,
+                                      INIT_VIEW_AZIMUTH,
+                                      INIT_VIEW_ALTITUDE);
+  synthesizer = std::make_unique<Synthesizer>(surface);
 
   glutInit(&argc, argv);
   glutInitDisplayMode(GLUT_DOUBLE);
 
   glutInit(&argc, argv);
   glutInitDisplayMode(GLUT_DOUBLE);
@@ -54,6 +90,46 @@ int main(int argc, char** argv)
   return 0;
 }
 
   return 0;
 }
 
+Settings parseArguments(int argc, char** argv)
+{
+  po::options_description desc("Available options");
+  desc.add_options()
+    ("help,h", "show this help")
+    ("windspeed,w", po::value<double>()->default_value(10),
+     "wind speed (m/s)")
+    ("size,s", po::value<char>()->default_value('s'),
+     "lattice size (s|l)")
+    ("amplitude,a", po::value<double>()->default_value(1),
+     "amplitude multiplicator")
+    ;
+
+  po::variables_map vm;
+  po::store(po::parse_command_line(argc, argv, desc), vm);
+  po::notify(vm);
+
+  if (vm.count("help")) {
+    std::cout << desc << "\n";
+    exit(1);
+  }
+
+  Settings settings;
+
+  settings.windSpeed = vm["windspeed"].as<double>();
+
+  if (vm["size"].as<char>() == 'l') {
+    settings.latticeSize = 256;
+    settings.latticeExtend = 20;
+    settings.amplitudeFactor = vm["amplitude"].as<double>() * 0.00000004;
+  }
+  else {
+    settings.latticeSize = 128;
+    settings.latticeExtend = 10;
+    settings.amplitudeFactor = vm["amplitude"].as<double>() * 0.0000001;
+  }
+
+  return settings;
+}
+
 void glDisplayFunc()
 {
   glClear(GL_COLOR_BUFFER_BIT);
 void glDisplayFunc()
 {
   glClear(GL_COLOR_BUFFER_BIT);
@@ -61,6 +137,7 @@ void glDisplayFunc()
   seaView->setupView();
   sea->update();
   surface->draw();
   seaView->setupView();
   sea->update();
   surface->draw();
+  synthesizer->tick();
 
   glutSwapBuffers();
   glutPostRedisplay();
 
   glutSwapBuffers();
   glutPostRedisplay();