summaryrefslogtreecommitdiff
path: root/src/game/QuickOptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/QuickOptions.h')
-rw-r--r--src/game/QuickOptions.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/src/game/QuickOptions.h b/src/game/QuickOptions.h
new file mode 100644
index 0000000..f194c1c
--- /dev/null
+++ b/src/game/QuickOptions.h
@@ -0,0 +1,99 @@
+#include "QuickOption.h"
+#include "GameModel.h"
+
+class SandEffectOption: public QuickOption
+{
+public:
+ SandEffectOption(GameModel * m):
+ QuickOption("P", "Sand effect", m, Toggle)
+ {
+
+ }
+ virtual bool GetToggle()
+ {
+ return m->GetSimulation()->pretty_powder;
+ }
+ virtual void perform()
+ {
+ m->GetSimulation()->pretty_powder = !m->GetSimulation()->pretty_powder;
+ }
+};
+
+class DrawGravOption: public QuickOption
+{
+public:
+ DrawGravOption(GameModel * m):
+ QuickOption("G", "Draw gravity field", m, Toggle)
+ {
+
+ }
+ virtual bool GetToggle()
+ {
+ return m->GetRenderer()->gravifyFieldEnabled;
+ }
+ virtual void perform()
+ {
+ m->GetRenderer()->gravifyFieldEnabled = !m->GetRenderer()->gravifyFieldEnabled;
+ }
+};
+
+class DecorationsOption: public QuickOption
+{
+public:
+ DecorationsOption(GameModel * m):
+ QuickOption("D", "Draw decorations", m, Toggle)
+ {
+
+ }
+ virtual bool GetToggle()
+ {
+ return m->GetRenderer()->decorations_enable;
+ }
+ virtual void perform()
+ {
+ m->GetRenderer()->decorations_enable = !m->GetRenderer()->decorations_enable;
+ }
+};
+
+class NGravityOption: public QuickOption
+{
+public:
+ NGravityOption(GameModel * m):
+ QuickOption("N", "Newtonian Gravity", m, Toggle)
+ {
+
+ }
+ virtual bool GetToggle()
+ {
+ return m->GetSimulation()->grav->ngrav_enable;
+ }
+ virtual void perform()
+ {
+ if(m->GetSimulation()->grav->ngrav_enable)
+ {
+ m->GetSimulation()->grav->stop_grav_async();
+ }
+ else
+ {
+ m->GetSimulation()->grav->start_grav_async();
+ }
+ }
+};
+
+class AHeatOption: public QuickOption
+{
+public:
+ AHeatOption(GameModel * m):
+ QuickOption("A", "Ambient heat", m, Toggle)
+ {
+
+ }
+ virtual bool GetToggle()
+ {
+ return m->GetSimulation()->aheat_enable;
+ }
+ virtual void perform()
+ {
+ m->GetSimulation()->aheat_enable = !m->GetSimulation()->aheat_enable;
+ }
+}; \ No newline at end of file