]> git.localhorst.tv Git - blank.git/blobdiff - src/interface.hpp
fixed light propagation
[blank.git] / src / interface.hpp
index a4b7a92cef1cf10c1d9c79d30ab0ff72e9cf818f..7bfd7155cc3823e335fd7d0cf69964a2121fbfbc 100644 (file)
@@ -18,7 +18,17 @@ class World;
 class Interface {
 
 public:
-       explicit Interface(World &);
+       struct Config {
+               float move_velocity = 0.005f;
+               float pitch_sensitivity = -0.0025f;
+               float yaw_sensitivity = -0.001f;
+
+               bool keyboard_disabled = false;
+               bool mouse_disabled = false;
+               bool visual_disabled = false;
+       };
+
+       Interface(const Config &, World &);
 
        void Handle(const SDL_KeyboardEvent &);
        void Handle(const SDL_MouseMotionEvent &);
@@ -33,6 +43,11 @@ public:
        void PlaceBlock();
        void RemoveBlock();
 
+       void PrintBlockInfo();
+       void PrintLightInfo();
+       void PrintSelectionInfo();
+       void Print(const Block &);
+
        void SelectNext();
        void SelectPrevious();
 
@@ -52,9 +67,7 @@ private:
        OutlineModel outline;
        glm::mat4 outline_transform;
 
-       float move_velocity;
-       float pitch_sensitivity;
-       float yaw_sensitivity;
+       Config config;
 
        Block remove;
        Block selection;