aboutsummaryrefslogtreecommitdiff
path: root/files/batch-compiler-spec/Half-Life.bci
blob: 132847bfeea5949440f5bf9f497b8d3bffc15974 (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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// Specification: Half-Life
// Written by: Ryan Gregg
// Version: 1.1.1.0
// Created: August 4, 2004
// Last updated: August 4, 2004

Batch
{
  Name		"HL"
  Priority	"1"
  Links		"Valve,http://www.valvesoftware.com/"
  Stages	"HL"
  Filter	"BSP Files (*.bsp)|*.bsp"
  ShellExecute	"True"
  Template	"\"${StagePath=hl}\" ${StageParam=hl}"
}

//
// HL
//
Stage
{
  Name		"HL"
  Title		"Half-Life"
  Type		"Program"
  Filter	"Half-Life (hl.exe)|hl.exe|Counter-Strike (cstrike.exe)|cstrike.exe"

  CheckBox
  {
    Name	"Run Map"
    Param	"+map ${FileName}"
    Checked	"True"
    Bold	"True"
    Hint	"\tThe map to start Half-Life with."
  }

  CheckBox
  {
    Name	"Enable Console"
    Param	"-console"
    Bold	"True"
    Hint	"\tStart Half-Life with console enabled."
  }

  CheckBox
  {
    Name	"To Console"
    Param	"-toconsole"
    Hint	"\tLoad Half-Life straight to console screen."
  }

  CheckBox
  {
    Name	"Developer"
    Param	"-dev"
    Hint	"\tStart Half-Life in developer mode (cheats)."
  }

  CheckBox
  {
    Name	"Safe Mode"
    Param	"-safe"
    Hint	"\tStart Half-Life in safe mode (no acceleration)."
  }

  CheckBox
  {
    Name	"Numeric Ping"
    Param	"-numericping"
    Hint	"\tDisplay server listing with ping times instead of Green dots."
  }

  CheckBox
  {
    Name	"Minimum Memory"
    Param	"-minmemory"
    Hint	"\tStart Half-Life with minimum memory."
  }

  CheckBox
  {
    Name	"No Intro"
    Param	"-nointro"
    Hint	"\tSkip starting intro."
  }

  CheckBox
  {
    Name	"No Joystick"
    Param	"-nojoy"
    Hint	"\tDisable joystick initialization (saves a bit of memory)."
  }

  Space
  {
    Size	"1"
  }

  TextBox
  {
    Name	"Additional Parameters"
    Type	"String"
    Size	"3"
    Hint	"\tAdd additional parameters here as you would a command line."
  }

  CheckBox
  {
    Name	"No IP"
    Param	"-noip"
    Hint	"\tDon't let Half-Life try to connect to the internet."
  }

  CheckBox
  {
    Name	"No IPX"
    Param	"-noipx"
    Hint	"\tDisable IPX (recommended if you do not use IPX communication)."
  }

  TextBox
  {
    Name	"MOD"
    Param	"-game"
    Bold	"True"
    Type	"String"
    Default	"cstrike"
    Hint	"\tThe MOD to start Half-Life in."
  }

  TextBox
  {
    Name	"Heap Size"
    Param	"-heapsize"
    Type	"Integer"
    Default	"65536"
    Min		"16384"
    Hint	"\tThe amount of memory to allocate for Half-Life."
  }

  TextBox
  {
    Name	"Particles"
    Param	"-particles"
    Type	"Integer"
    Default	"65536"
    Min		"1"
    Hint	"\tThe number of particles to search for leaks with."
  }

  ComboBox
  {
    Name	"Render Mode"
    Default	"Direct 3D"
    Options	"Direct 3D,-d3d|Software,-soft|Open GL,-gl"
    Hint	"\tStart Half-Life in the following rendermode."
  }

  ComboBox
  {
    Name	"Colors"
    Default	"32bit"
    Options	"32bit,-32bpp|16bit,-32bpp"
    Hint	"\tStart Half-Life in 32 or 16 bit colors."
  }

  ComboBox
  {
    Name	"Startup State"
    Default	"Fullscreen"
    Options	"Fullscreen,-full|Windowed,-win"
    Hint	"\tStart Half-Life with the following window state."
  }
}