added style value for key arrangement on game panel (not used yet)
[rocksndiamonds.git] / src / libgame / system.h
index 0e05f56f9675547f0231727e8b6c7dc0a5131a5d..ce239f1d3a5c2ead14c370d2c3edd8546ed3b462 100644 (file)
 
 #define ANIM_DEFAULT           ANIM_LOOP
 
-// values for special drawing styles (currently only for crumbled graphics)
+// values for special drawing styles and event handling
 #define STYLE_NONE             0
+
+// values used for crumbled graphics
 #define STYLE_ACCURATE_BORDERS (1 << 0)
 #define STYLE_INNER_CORNERS    (1 << 1)
+
+// values used for game panel graphics
 #define STYLE_REVERSE          (1 << 2)
+#define STYLE_LEFTMOST_POSITION        (1 << 3)
 
-// values for special event handling style (used for global animation)
-#define STYLE_BLOCK            (1 << 3)
-#define STYLE_PASSTHROUGH      (1 << 4)
-#define STYLE_MULTIPLE_ACTIONS (1 << 5)
+// values used for global animations
+#define STYLE_BLOCK            (1 << 4)
+#define STYLE_PASSTHROUGH      (1 << 5)
+#define STYLE_MULTIPLE_ACTIONS (1 << 6)
 
 #define STYLE_DEFAULT          STYLE_NONE