-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
definitions.go
62 lines (52 loc) · 2.06 KB
/
definitions.go
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
package main
//--------------------------
type GPatch int64
const (
GAME_NONE GPatch = iota
GAME_IWAD = 1 << 0 // i.e. for Doom, DooM 2, Heretic, Hexen, HexenDD, Plutonia, TNT, Strife
GAME_SHAREWARE = 1 << 1 // All the Doom 1 sharewares.
GAME_FREEDOOM = 1 << 2 // i.e. for Freedoom Phase 1/2 and FreeDM
GAME_HACX = 1 << 3 // i.e. for HacX 1.0 - 1.2 (no support for 2.0 yet as it's still not released)
GAME_CHEX_QUEST_3 = 1 << 4
GAME_STRIFE_VE = 1 << 5 // i.e. for Strife: Veteran Edition (heard that 1.0/1.1 are still around out there...)
GAME_SIGIL = 1 << 6 // SIGIL by John Romero
GAME_SIGIL_2 = 1 << 7 // SIGIL2 by John Romero
GAME_REKKR = 1 << 8 // REKKR by Revae
GAME_KEXDOOM2024 = 1 << 9 // OdaKEX/KexDoom/Doom + Doom II (2024 re-release)
)
type GStatus int
const (
NOT_FINAL GStatus = iota // is not the final version, so display errors
IS_FINAL // Is final, is fine!
IS_ALPHA // Special case of Alpha WADs.
IS_HIDDEN // Hidden - No need to display it
)
//--------------------------
type CustomData struct {
Name string `json:"name"`
Data []WadInfo `json:"wadinfo"`
}
// WadInfo : all WAD data returned from the program
type WadInfo struct {
MD5Hash string `json:"md5"`
Version string `json:"version"`
Status GStatus `json:"status"`
Game GPatch `json:"game"`
PWADRequires string `json:"requires"` // If the official PWAD requires an IWAD to run
Additional string `json:"additional"` // If I need to display an additionnal message for this IWAD.
}
var (
IWADInfo_Doom []WadInfo
IWADInfo_Doom2 []WadInfo
IWADInfo_FinalDoom []WadInfo
IWADInfo_Heretic []WadInfo
IWADInfo_Hexen []WadInfo
IWADInfo_MasterLevels []WadInfo
IWADInfo_Strife []WadInfo
IWADInfo_SVE []WadInfo
IWADInfo_FreeDoom []WadInfo
IWADInfo_Misc []WadInfo // PWAD and addons
PWADInfo_Custom []WadInfo
// Patching messages
iErrors = 0
)