-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconstants.go
More file actions
77 lines (72 loc) · 3.61 KB
/
constants.go
File metadata and controls
77 lines (72 loc) · 3.61 KB
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
68
69
70
71
72
73
74
75
76
77
package main
const (
APP_NAME = "Steam 2 PCGW Converter"
VERSION = "v0.0.74"
API_LINK = "https://store.steampowered.com/api/appdetails?appids="
LOCALE = "&l=english"
GH_LINK = "https://github.com/phyziyx/steam2pcgw"
)
type GenreId int
const (
Action GenreId = 1 // Action,
Strategy GenreId = 2 // Strategy,
RPG GenreId = 3 // RPG,
Casual GenreId = 4 // Casual,
Racing GenreId = 9 // Racing,
Sports GenreId = 18 // Sports,
Indie GenreId = 23 // Indie,
Adventure GenreId = 25 // Adventure,
Simulation GenreId = 28 // Simulation,
MassivelyMultiplayer GenreId = 29 // Massively Multiplayer,
FreeToPlay GenreId = 37 // Free to Play,
Accounting GenreId = 50 // Accounting,
AnimationAndModeling GenreId = 51 // Animation & Modeling,
AudioProduction GenreId = 52 // Audio Production,
DesignAndIllustration GenreId = 53 // Design & Illustration,
Education GenreId = 54 // Education,
PhotoEditing GenreId = 55 // Photo Editing,
SoftwareTraining GenreId = 56 // Software Training,
Utilities GenreId = 57 // Utilities,
VideoProduction GenreId = 58 // Video Production,
WebPublishing GenreId = 59 // Web Publishing,
GameDevelopment GenreId = 60 // Game Development,
EarlyAccess GenreId = 70 // Early Access,
SexualContent GenreId = 71 // Sexual Content,
Nudity GenreId = 72 // Nudity,
Violent GenreId = 73 // Violent,
Gore GenreId = 74 // Gore,
Documentary GenreId = 81 // Documentary,
Tutorial GenreId = 84 // Tutorial
)
type CategoryId int
const (
Multiplayer CategoryId = 1 // Multi-player,
Singleplayer CategoryId = 2 // Single-player,
HL2Mods CategoryId = 6 // Mods (require HL2),
VAC CategoryId = 8 // Valve Anti-Cheat enabled,
CoOp CategoryId = 9 // Co-op,
Captions CategoryId = 13 // Captions available,
Commentary CategoryId = 14 // Commentary available,
Stats CategoryId = 15 // Stats,
SourceSDK CategoryId = 16 // Includes Source SDK,
LevelEditor CategoryId = 17 // Includes level editor,
PartialControllerSupport CategoryId = 18 // Partial Controller Support,
Mods CategoryId = 19 // Mods,
MMO CategoryId = 20 // MMO,
SteamAchievements CategoryId = 22 // Steam Achievements,
SteamCloud CategoryId = 23 // Steam Cloud,
SharedOrSplitScreen CategoryId = 24 // Shared/Split Screen,
SteamLeaderboards CategoryId = 25 // Steam Leaderboards,
CrossPlatformMultiplayer CategoryId = 27 // Cross-Platform Multiplayer,
FullControllerSupport CategoryId = 28 // Full controller support,
TradingCards CategoryId = 29 // Steam Trading Cards,
Workshop CategoryId = 30 // Steam Workshop,
VRSupport CategoryId = 31 // VR Support,
TurnNotifications CategoryId = 32 // Steam Turn Notifications,
InAppPurchases CategoryId = 35 // In-App Purchases,
OnlineMultiPlayer CategoryId = 36 // Online Multi-Player,
LocalMultiPlayer CategoryId = 37 // Local Multi-Player,
OnlineCoOp CategoryId = 38 // Online Co-op,
LocalCoOp CategoryId = 39 // Local Co-op,
SteamVRCollectibles CategoryId = 40 // SteamVR Collectibles
)