frame rate
[carveJwlIkooP6JGAAIwe30JlM.git] / vg_config.h
index b1348a0ac7950ab58166bbdda2f41cb744b5975e..08006140c61c2c52b14b69884ab1bc46769c01b1 100644 (file)
@@ -1,7 +1,11 @@
-// Copyright (C) 2021 Harry Godden (hgn) - All Rights Reserved
+/*
+ * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
+ */
+
 #define VG_CONFIG
+#include "vg/vg.h"
 
-static struct button_binding vg_button_binds[] = 
+VG_STATIC struct button_binding vg_button_binds[] = 
 {
        { .name = "primary", .bind = GLFW_MOUSE_BUTTON_LEFT },
        { .name = "secondary", .bind = GLFW_MOUSE_BUTTON_RIGHT },
@@ -10,17 +14,35 @@ static struct button_binding vg_button_binds[] =
    { .name = "forward", .bind = GLFW_KEY_W },
    { .name = "back", .bind = GLFW_KEY_S },
    { .name = "up", .bind = GLFW_KEY_R },
+   { .name = "reset", .bind = GLFW_KEY_R },
    { .name = "down", .bind = GLFW_KEY_F },
    { .name = "yawl", .bind = GLFW_KEY_Q },
    { .name = "yawr", .bind = GLFW_KEY_E },
+   { .name = "jump", .bind = GLFW_KEY_SPACE },
+   { .name = "kbdwalk/push", .bind = GLFW_KEY_LEFT_SHIFT },
+   { .name = "switchmode", .bind = GLFW_KEY_E },
+   { .name = "menu", .bind = GLFW_KEY_ESCAPE }
+};
+
+VG_STATIC struct button_binding vg_controller_binds[] = 
+{
+   { "jump",         GLFW_GAMEPAD_BUTTON_A },
+   { "break",        GLFW_GAMEPAD_BUTTON_B },
+   { "switchmode",   GLFW_GAMEPAD_BUTTON_Y },
+   { "reset",        GLFW_GAMEPAD_BUTTON_LEFT_BUMPER },
+   { "menu",         GLFW_GAMEPAD_BUTTON_BACK }
 };
 
-static struct axis_binding vg_axis_binds[] = 
+VG_STATIC struct axis_binding vg_axis_binds[] = 
 {
-       { .name = "horizontal", .axis = GLFW_GAMEPAD_AXIS_LEFT_X },
-       { .name = "vertical",   .axis = GLFW_GAMEPAD_AXIS_LEFT_Y }
+       { .name = "lookh",         .axis = GLFW_GAMEPAD_AXIS_LEFT_X },
+       { .name = "lookv",         .axis = GLFW_GAMEPAD_AXIS_LEFT_Y },
+   { .name = "grabh",      .axis = GLFW_GAMEPAD_AXIS_RIGHT_X },
+   { .name = "grabv",      .axis = GLFW_GAMEPAD_AXIS_RIGHT_Y },
+   { .name = "walk/push",  .axis = GLFW_GAMEPAD_AXIS_LEFT_TRIGGER },
+   { .name = "grab",       .axis = GLFW_GAMEPAD_AXIS_RIGHT_TRIGGER },
 };
 
-static struct vg_achievement vg_achievements[] =
+VG_STATIC struct vg_achievement vg_achievements[] =
 {
 };