aboutsummaryrefslogtreecommitdiff
path: root/params.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'params.cpp')
-rw-r--r--params.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/params.cpp b/params.cpp
new file mode 100644
index 0000000..5b71e86
--- /dev/null
+++ b/params.cpp
@@ -0,0 +1,33 @@
+#include "params.h"
+
+namespace C {
+
+ const int autoTimeout=80000;
+ const int elimTrigger=25000;
+
+ const int baseDuration[]={
+ 2, // set
+ 2, // add
+ 2, // sub
+ 2, // comp
+ 14, // trans
+ 1, // jump
+ 2, // bjump
+ 1, // die
+ 20, // move
+ 8, // turn
+ 8, // scan
+ 100, // create
+ };
+
+ const int numInstructions=(int)ins_t::__num_instructions;
+
+ const int pen_transinstr=1;
+ const int pen_remote=6;
+ const int pen_createbank=25;
+ const int pen_createmobilemult=1;
+ const int pen_createmobile=120;
+ const int pen_createiset1=40;
+ const int pen_createiset2=100;
+
+}