-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
67 lines (61 loc) · 1.52 KB
/
types.ts
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
export enum Direction {
ArrowUp = "ArrowUp",
ArrowDown = "ArrowDown",
ArrowLeft = "ArrowLeft",
ArrowRight = "ArrowRight",
}
export type Coordinate = { x: number; y: number };
type SettingEnum = {
type: "enum";
settingOptions: string[];
settingValue: number | string;
};
type SettingNumeric = {
type: "numeric";
incDecs: number[];
maxSettingValue: number;
minSettingValue: number;
settingValue: number | string;
};
export type Setting = SettingEnum | SettingNumeric;
export type Context = {
crashflashCount: number;
direction: Direction;
food: Coordinate;
highScore: number;
lastDirectionMoved: Direction | undefined;
marqueeMessages: {
desktop: string[];
gamepad: string[];
};
newHighScore: number;
settings: Map<string, Setting>;
settingsActiveIndex: number;
snake: Coordinate[];
};
export interface ArrowKeyPressEvent {
type: "arrow key";
arrowDirection: Direction;
}
export interface SettingsIncreaseDecreaseEvent {
type: "increase/decrease";
settingValueIncDecAmount: number;
settingValueKey: string;
}
export interface SettingsChooseEnumEvent {
type: "choose enum";
chosenOption: string;
settingValueKey: string;
}
export interface SettingCycleEvent {
type: "cycle through settings";
cycleDirection: "forward" | "backward";
}
export type MyEvents =
| ArrowKeyPressEvent
| SettingsIncreaseDecreaseEvent
| SettingsChooseEnumEvent
| SettingCycleEvent
| { type: "spacebar" }
| { type: "toggle menu" };
export type cxProp = (string | { [key: string]: boolean })[];