aboutsummaryrefslogtreecommitdiffstats
path: root/src/settings.h
blob: 5a37ab931c148d8a0cf47d109d6a8d0011989085 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "utils.h"

#ifndef SETTINGS_H
#define SETTINGS_H

typedef struct {
  // Window.
  int windowWidth;
  int windowHeight;

  // Screen (render texture for pixellyness).
  int screenWidth;
  int screenHeight;

  // Render.
  float fov;

  // Edge detection.
  float edgeDetectionWidth;
  float edgeDetectionHeight;
  float edgeDetectionFactor;

  // Color.
  float gamma;
  float colorCount;

  // Update.
  float maxUpdateDistance;

  // UI.
  float nonEditWindowAlpha; // Alpha for windows in non-editable mode.
  float crossHairSize;
  float crossHairThickness;
  Color crossHairColor;

  // Controls.
  float mouseSpeed;
  KeyboardKey forwardKey;
  KeyboardKey backwardKey;
  KeyboardKey rightKey;
  KeyboardKey leftKey;
  KeyboardKey toggleCursorKey;
  KeyboardKey interactKey;
} Settings;

Settings defaultSettings();
// Bite my shiny metal ass!

#endif