added style value for key arrangement on game panel (not used yet)
authorHolger Schemel <info@artsoft.org>
Thu, 17 Dec 2020 16:13:22 +0000 (17:13 +0100)
committerHolger Schemel <info@artsoft.org>
Mon, 21 Dec 2020 22:53:05 +0000 (23:53 +0100)
src/files.c
src/libgame/system.h

index ac928e8f599532dc8837a180c19e37ab35d358c8..271e428395d6a30d2d832fe6f0ff5aaed6c12d1b 100644 (file)
@@ -10455,6 +10455,9 @@ int get_parameter_value(char *value_raw, char *suffix, int type)
     if (string_has_parameter(value, "reverse"))
       result |= STYLE_REVERSE;
 
+    if (string_has_parameter(value, "leftmost_position"))
+      result |= STYLE_LEFTMOST_POSITION;
+
     if (string_has_parameter(value, "block_clicks"))
       result |= STYLE_BLOCK;
 
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