blob: fd1545bb45b83189d4f27dd5d0e6dc06e5854637 (
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
|
// Specification: Quake Tools Legacy
// Written by: Ryan Gregg
// Version: N/A
// Created: August 4, 2004
// Last updated: September 13, 2004
// Updated by: Ryan Gregg
// Date: September 13, 2004
// Improved game execution.
Include "Quake Tools.bci"
Include "Batch.bci"
Include "Half-Life.bci"
Include "Steam.bci"
Include "Templates.bci"
Batch
{
Name "Quake Tools Legacy"
Priority "3"
Links "Steam,http://www.steampowered.com/|"_
"Valve,http://www.valvesoftware.com/"
Filter "Supported Files|*.map;*.bsp|MAP Files (*.map)|*.map|BSP Files (*.bsp)|*.bsp"
Stages "CSG|BSP|VIS|RAD|Shared|Batch|HL|Steam"
LogFile "${FilePath}\\${FileName}.log"
Template "@echo off\n"_
"${Splash}"_
"\"${StagePath=CSG}\" ${StageParam=CSG} \"${FilePath}\\${FileName}\"\n"_
"if ERRORLEVEL 1 goto failed\n"_
"\"${StagePath=BSP}\" ${StageParam=BSP} \"${FilePath}\\${FileName}\"\n"_
"if ERRORLEVEL 1 goto failed\n"_
"\"${StagePath=VIS}\" ${StageParam=VIS} \"${FilePath}\\${FileName}\"\n"_
"if ERRORLEVEL 1 goto failed\n"_
"\"${StagePath=RAD}\" ${StageParam=RAD} \"${FilePath}\\${FileName}\"\n"_
"if ERRORLEVEL 1 goto failed\n"_
"${StageCmd=Batch}\n"_
"\"${StagePath=hl}\" ${StageParam=hl}\n"_
"\"${StagePath=Steam}\" ${StageParam=Steam}\n"_
"goto succeeded\n"_
":failed\n"_
"echo.\n"_
"echo There was a problem compiling your map, check your ${FileName}.log file for errors.\n"_
":succeeded\n"_
"echo.\n"_
"${LogViewerRun}\n"
}
|