File build.xml changed (mode: 100644) (index 02c67ca..cc8fc2c) |
20 |
20 |
<include name="**/*.j"/> |
<include name="**/*.j"/> |
21 |
21 |
<exclude name="**/*.m4"/> |
<exclude name="**/*.m4"/> |
22 |
22 |
</fileset> |
</fileset> |
23 |
|
<fileset id="project.map1.fileset.jass" dir="src/map1"> |
|
|
23 |
|
<fileset id="project.sorcerer0.fileset.jass" dir="src/sorcerer0"> |
24 |
24 |
<include name="**/*.j"/> |
<include name="**/*.j"/> |
25 |
25 |
<exclude name="**/*.m4"/> |
<exclude name="**/*.m4"/> |
26 |
26 |
</fileset> |
</fileset> |
27 |
|
<path id="project.map1.path.jass"> |
|
|
27 |
|
<path id="project.sorcerer0.path.jass"> |
28 |
28 |
<fileset refid="project.base.fileset.jass" /> |
<fileset refid="project.base.fileset.jass" /> |
29 |
29 |
<fileset refid="project.spellbook.fileset.jass" /> |
<fileset refid="project.spellbook.fileset.jass" /> |
30 |
30 |
<fileset refid="project.sorcerer.fileset.jass" /> |
<fileset refid="project.sorcerer.fileset.jass" /> |
31 |
|
<fileset refid="project.map1.fileset.jass" /> |
|
|
31 |
|
<fileset refid="project.sorcerer0.fileset.jass" /> |
32 |
32 |
</path> |
</path> |
33 |
33 |
<target name="pjass"> |
<target name="pjass"> |
34 |
34 |
<exec executable="${project.executable.pjass}" failonerror="true" failifexecutionfails="true"> |
<exec executable="${project.executable.pjass}" failonerror="true" failifexecutionfails="true"> |
|
46 |
46 |
<arg line="${project.target.pjass.line}"/> |
<arg line="${project.target.pjass.line}"/> |
47 |
47 |
</exec> |
</exec> |
48 |
48 |
</target> |
</target> |
49 |
|
<target name="validate" description="check if the build environment is ready for work"> |
|
50 |
|
<echo>validate:m4</echo> |
|
|
49 |
|
<target name="validate-m4"> |
51 |
50 |
<exec executable="${project.executable.m4}" failonerror="true" failifexecutionfails="true"> |
<exec executable="${project.executable.m4}" failonerror="true" failifexecutionfails="true"> |
52 |
51 |
<arg value="--version"/> |
<arg value="--version"/> |
53 |
52 |
</exec> |
</exec> |
54 |
|
<echo>validate:smpq</echo> |
|
|
53 |
|
</target> |
|
54 |
|
<target name="validate-smpq"> |
55 |
55 |
<exec executable="${project.executable.smpq}" failonerror="true" failifexecutionfails="true"> |
<exec executable="${project.executable.smpq}" failonerror="true" failifexecutionfails="true"> |
56 |
56 |
<arg value="--version"/> |
<arg value="--version"/> |
57 |
57 |
</exec> |
</exec> |
58 |
|
<echo>validate:pjass</echo> |
|
|
58 |
|
</target> |
|
59 |
|
<target name="validate-pjass"> |
59 |
60 |
<antcall target="pjass"> |
<antcall target="pjass"> |
60 |
61 |
<param name="project.target.pjass.line" value=""/> |
<param name="project.target.pjass.line" value=""/> |
61 |
62 |
</antcall> |
</antcall> |
62 |
63 |
</target> |
</target> |
|
64 |
|
<target name="validate" depends="validate-m4,validate-smpq,validate-pjass" description="check if the build environment is ready for work"> |
|
65 |
|
</target> |
63 |
66 |
<target name="process-sources" description="parse all Jass source snippets with pjass"> |
<target name="process-sources" description="parse all Jass source snippets with pjass"> |
64 |
67 |
<!-- Load a colon separated strip of Jass snippet file names, |
<!-- Load a colon separated strip of Jass snippet file names, |
65 |
68 |
then replace the colon with empty space, |
then replace the colon with empty space, |
66 |
69 |
and pass it as a command line argument to pjass. --> |
and pass it as a command line argument to pjass. --> |
67 |
|
<pathconvert refid="project.map1.path.jass" pathsep=" " property="project.map1.path.jass.line"/> |
|
|
70 |
|
<pathconvert refid="project.sorcerer0.path.jass" pathsep=" " property="project.sorcerer0.path.jass.line"/> |
68 |
71 |
<antcall target="pjass"> |
<antcall target="pjass"> |
69 |
|
<param name="project.target.pjass.line" value="${project.map1.path.jass.line}"/> |
|
|
72 |
|
<param name="project.target.pjass.line" value="${project.sorcerer0.path.jass.line}"/> |
70 |
73 |
</antcall> |
</antcall> |
71 |
74 |
</target> |
</target> |
72 |
75 |
<target name="generate-sources" description="generate final war3map.j scripts for all maps with m4"> |
<target name="generate-sources" description="generate final war3map.j scripts for all maps with m4"> |
73 |
76 |
<!-- TODO Use MacroDef or subproject builds to adapt tasks for all individual maps. --> |
<!-- TODO Use MacroDef or subproject builds to adapt tasks for all individual maps. --> |
74 |
|
<mkdir dir="${project.builddir}/map1"/> |
|
75 |
|
<exec executable="${project.executable.m4}" output="${project.builddir}/map1/war3map.j" failonerror="true" failifexecutionfails="true"> |
|
|
77 |
|
<mkdir dir="${project.builddir}/sorcerer0"/> |
|
78 |
|
<exec executable="${project.executable.m4}" output="${project.builddir}/sorcerer0/war3map.j" failonerror="true" failifexecutionfails="true"> |
76 |
79 |
<arg value="--debug=aeqp"/> |
<arg value="--debug=aeqp"/> |
77 |
80 |
<arg value="-I ${basedir}"/> |
<arg value="-I ${basedir}"/> |
78 |
|
<arg value="src/map1/map1.m4"/> |
|
|
81 |
|
<arg value="src/sorcerer0/sorcerer0.m4"/> |
79 |
82 |
</exec> |
</exec> |
80 |
83 |
</target> |
</target> |
81 |
84 |
<target name="compile" depends="process-sources,generate-sources" description="parse Jass scripts that will be packaged with pjass"> |
<target name="compile" depends="process-sources,generate-sources" description="parse Jass scripts that will be packaged with pjass"> |
82 |
85 |
<antcall target="pjass"> |
<antcall target="pjass"> |
83 |
|
<param name="project.target.pjass.line" value="${project.builddir}/map1/war3map.j"/> |
|
|
86 |
|
<param name="project.target.pjass.line" value="${project.builddir}/sorcerer0/war3map.j"/> |
84 |
87 |
</antcall> |
</antcall> |
85 |
88 |
</target> |
</target> |
86 |
89 |
<target name="process-resources"> |
<target name="process-resources"> |
|
90 |
|
<!-- Export unit and ability data from the working campaign archive to sources and later build directory. --> |
|
91 |
|
<!-- TODO Globalize unit and ability descriptions using wts files that contain external strings. --> |
|
92 |
|
<exec executable="${project.executable.smpq}" dir="src/sorcerer" failonerror="true" failifexecutionfails="true"> |
|
93 |
|
<arg value="--extract"/> |
|
94 |
|
<arg value="--overwrite"/> |
|
95 |
|
<arg file="src/sorcerer/sorcererstub.w3n"/> |
|
96 |
|
<arg value="war3campaign.w3a"/> |
|
97 |
|
<arg value="war3campaign.w3u"/> |
|
98 |
|
<arg value="war3campaign.wts"/> |
|
99 |
|
</exec> |
87 |
100 |
</target> |
</target> |
88 |
101 |
<target name="prepare-package" depends="compile,process-resources" description="copy and arrange files before packaging"> |
<target name="prepare-package" depends="compile,process-resources" description="copy and arrange files before packaging"> |
89 |
102 |
<!-- TODO Files *.w3a, *.w3u or *.wts require localization --> |
<!-- TODO Files *.w3a, *.w3u or *.wts require localization --> |
90 |
|
<mkdir dir="${project.builddir}/map1"/> |
|
|
103 |
|
<mkdir dir="${project.builddir}/sorcerer0"/> |
91 |
104 |
<copy file="src/sorcerer/war3campaign.w3a" overwrite="true" todir="${project.builddir}"/> |
<copy file="src/sorcerer/war3campaign.w3a" overwrite="true" todir="${project.builddir}"/> |
92 |
105 |
<copy file="src/sorcerer/war3campaign.w3u" overwrite="true" todir="${project.builddir}"/> |
<copy file="src/sorcerer/war3campaign.w3u" overwrite="true" todir="${project.builddir}"/> |
93 |
106 |
<copy file="src/sorcerer/war3campaign.wts" overwrite="true" todir="${project.builddir}"/> |
<copy file="src/sorcerer/war3campaign.wts" overwrite="true" todir="${project.builddir}"/> |
94 |
107 |
<!-- FIXME It might not be needed to duplicate metadata in both campaign and map. --> |
<!-- FIXME It might not be needed to duplicate metadata in both campaign and map. --> |
95 |
|
<copy file="src/sorcerer/war3campaign.w3a" overwrite="true" tofile="${project.builddir}/map1/war3map.w3a"/> |
|
96 |
|
<copy file="src/sorcerer/war3campaign.w3u" overwrite="true" tofile="${project.builddir}/map1/war3map.w3u"/> |
|
|
108 |
|
<copy file="src/sorcerer/war3campaign.w3a" overwrite="true" tofile="${project.builddir}/sorcerer0/war3map.w3a"/> |
|
109 |
|
<copy file="src/sorcerer/war3campaign.w3u" overwrite="true" tofile="${project.builddir}/sorcerer0/war3map.w3u"/> |
|
110 |
|
<copy file="src/sorcerer/war3campaign.wts" overwrite="true" tofile="${project.builddir}/sorcerer0/war3map.wts"/> |
|
111 |
|
<!-- Export map files to build directory to be patched and later imported back. --> |
|
112 |
|
<exec executable="${project.executable.smpq}" dir="${project.builddir}" failonerror="true" failifexecutionfails="true"> |
|
113 |
|
<arg value="--extract"/> |
|
114 |
|
<arg value="--overwrite"/> |
|
115 |
|
<arg file="src/sorcerer/sorcererstub.w3n"/> |
|
116 |
|
<arg value="sorcerer0.w3x"/> |
|
117 |
|
</exec> |
97 |
118 |
<copy file="src/sorcerer/sorcererstub.w3n" overwrite="true" tofile="${project.builddir}/sorcerer-${project.version}-1.27-en.w3n"/> |
<copy file="src/sorcerer/sorcererstub.w3n" overwrite="true" tofile="${project.builddir}/sorcerer-${project.version}-1.27-en.w3n"/> |
98 |
|
<copy file="src/map1/war3map.wts" overwrite="true" todir="${project.builddir}/map1"/> |
|
99 |
|
<copy file="src/map1/map1.w3x" overwrite="true" todir="${project.builddir}"/> |
|
100 |
119 |
</target> |
</target> |
101 |
120 |
<target name="package" depends="prepare-package" description="produce valid custom campaign MPQ archive (w3n) with smpq"> |
<target name="package" depends="prepare-package" description="produce valid custom campaign MPQ archive (w3n) with smpq"> |
102 |
121 |
<!-- NOTE The path to subject MPQ archive MUST be absolute. --> |
<!-- NOTE The path to subject MPQ archive MUST be absolute. --> |
103 |
122 |
<!-- NOTE The paths to files that are added to the subject MPQ archive MUST be relative. --> |
<!-- NOTE The paths to files that are added to the subject MPQ archive MUST be relative. --> |
104 |
|
<exec executable="${project.executable.smpq}" dir="${project.builddir}/map1" failonerror="true" failifexecutionfails="true"> |
|
|
123 |
|
<exec executable="${project.executable.smpq}" dir="${project.builddir}/sorcerer0" failonerror="true" failifexecutionfails="true"> |
105 |
124 |
<arg value="--add"/> |
<arg value="--add"/> |
106 |
125 |
<arg value="--overwrite"/> |
<arg value="--overwrite"/> |
107 |
126 |
<arg value="--compression"/> |
<arg value="--compression"/> |
108 |
127 |
<arg value="zlib"/> |
<arg value="zlib"/> |
109 |
|
<arg file="${project.builddir}/map1.w3x"/> |
|
|
128 |
|
<arg file="${project.builddir}/sorcerer0.w3x"/> |
110 |
129 |
<arg value="war3map.w3a"/> |
<arg value="war3map.w3a"/> |
111 |
130 |
<arg value="war3map.w3u"/> |
<arg value="war3map.w3u"/> |
112 |
131 |
<arg value="war3map.wts"/> |
<arg value="war3map.wts"/> |
|
129 |
148 |
<arg value="--compression"/> |
<arg value="--compression"/> |
130 |
149 |
<arg value="none"/> |
<arg value="none"/> |
131 |
150 |
<arg file="${project.builddir}/sorcerer-${project.version}-1.27-en.w3n"/> |
<arg file="${project.builddir}/sorcerer-${project.version}-1.27-en.w3n"/> |
132 |
|
<arg value="map1.w3x"/> |
|
|
151 |
|
<arg value="sorcerer0.w3x"/> |
133 |
152 |
</exec> |
</exec> |
134 |
153 |
</target> |
</target> |
135 |
154 |
<target name="verify" description="print final custom campaign MPQ archive information"> |
<target name="verify" description="print final custom campaign MPQ archive information"> |
|
143 |
162 |
</exec> |
</exec> |
144 |
163 |
<exec executable="${project.executable.smpq}" dir="${project.builddir}" failonerror="true" failifexecutionfails="true"> |
<exec executable="${project.executable.smpq}" dir="${project.builddir}" failonerror="true" failifexecutionfails="true"> |
145 |
164 |
<arg value="--info"/> |
<arg value="--info"/> |
146 |
|
<arg file="${project.builddir}/map1.w3x"/> |
|
|
165 |
|
<arg file="${project.builddir}/sorcerer0.w3x"/> |
147 |
166 |
</exec> |
</exec> |
148 |
167 |
<exec executable="${project.executable.smpq}" dir="${project.builddir}" failonerror="true" failifexecutionfails="true"> |
<exec executable="${project.executable.smpq}" dir="${project.builddir}" failonerror="true" failifexecutionfails="true"> |
149 |
168 |
<arg value="--list"/> |
<arg value="--list"/> |
150 |
|
<arg file="${project.builddir}/map1.w3x"/> |
|
|
169 |
|
<arg file="${project.builddir}/sorcerer0.w3x"/> |
151 |
170 |
</exec> |
</exec> |
152 |
171 |
</target> |
</target> |
153 |
172 |
</project> |
</project> |
File src/map1/main.j deleted (index 7deb572..0000000) |
1 |
|
// map1/main.j
|
|
2 |
|
|
|
3 |
|
globals
|
|
4 |
|
constant player PLAYER_UNDEAD = Player(1)
|
|
5 |
|
constant player PLAYER_TROLL = Player(2)
|
|
6 |
|
constant integer CONSTRAINT00 = 0
|
|
7 |
|
constant integer CONSTRAINT01 = 1
|
|
8 |
|
endglobals
|
|
9 |
|
|
|
10 |
|
//***************************************************************************
|
|
11 |
|
//*
|
|
12 |
|
//* Players
|
|
13 |
|
//*
|
|
14 |
|
//***************************************************************************
|
|
15 |
|
|
|
16 |
|
function InitCustomPlayerSlots takes nothing returns nothing
|
|
17 |
|
call SetPlayerStartLocation(USER, 0)
|
|
18 |
|
call SetPlayerColor(USER, PLAYER_COLOR_PINK)
|
|
19 |
|
call SetPlayerRacePreference(USER, RACE_PREF_HUMAN)
|
|
20 |
|
call SetPlayerRaceSelectable(USER, false)
|
|
21 |
|
call SetPlayerController(USER, MAP_CONTROL_USER)
|
|
22 |
|
|
|
23 |
|
call SetPlayerStartLocation(PLAYER_UNDEAD, 1)
|
|
24 |
|
call SetPlayerColor(PLAYER_UNDEAD, PLAYER_COLOR_GREEN)
|
|
25 |
|
call SetPlayerRacePreference(PLAYER_UNDEAD, RACE_PREF_UNDEAD)
|
|
26 |
|
call SetPlayerRaceSelectable(PLAYER_UNDEAD, false)
|
|
27 |
|
call SetPlayerController(PLAYER_UNDEAD, MAP_CONTROL_COMPUTER)
|
|
28 |
|
call SetPlayerName(PLAYER_UNDEAD, "Undead")
|
|
29 |
|
|
|
30 |
|
call SetPlayerStartLocation(PLAYER_TROLL, 2)
|
|
31 |
|
call SetPlayerColor(PLAYER_TROLL, PLAYER_COLOR_YELLOW)
|
|
32 |
|
call SetPlayerRacePreference(PLAYER_TROLL, RACE_PREF_ORC)
|
|
33 |
|
call SetPlayerRaceSelectable(PLAYER_TROLL, false)
|
|
34 |
|
call SetPlayerController(PLAYER_TROLL, MAP_CONTROL_COMPUTER)
|
|
35 |
|
call SetPlayerName(PLAYER_TROLL, "Trolls")
|
|
36 |
|
endfunction
|
|
37 |
|
|
|
38 |
|
function InitCustomTeams takes nothing returns nothing
|
|
39 |
|
call SetPlayerTeam(USER, 0)
|
|
40 |
|
call SetPlayerTeam(PLAYER_UNDEAD, 1)
|
|
41 |
|
call SetPlayerTeam(PLAYER_TROLL, 2)
|
|
42 |
|
endfunction
|
|
43 |
|
|
|
44 |
|
//***************************************************************************
|
|
45 |
|
//*
|
|
46 |
|
//* Main Initialization
|
|
47 |
|
//*
|
|
48 |
|
//***************************************************************************
|
|
49 |
|
|
|
50 |
|
//===========================================================================
|
|
51 |
|
|
|
52 |
|
function map1_finish_if_necessary takes nothing returns nothing
|
|
53 |
|
local boolean v = false
|
|
54 |
|
local boolean d = false
|
|
55 |
|
local timer t
|
|
56 |
|
|
|
57 |
|
set t = GetExpiredTimer()
|
|
58 |
|
if t != null then
|
|
59 |
|
call DestroyTimer(t)
|
|
60 |
|
endif
|
|
61 |
|
|
|
62 |
|
set d = quest_check_defeat(USER)
|
|
63 |
|
if d then
|
|
64 |
|
call CustomDefeatBJ(USER, "Defeat!")
|
|
65 |
|
endif
|
|
66 |
|
|
|
67 |
|
set v = quest_check_victory(USER)
|
|
68 |
|
if v then
|
|
69 |
|
call CustomVictoryBJ(USER, true, true)
|
|
70 |
|
endif
|
|
71 |
|
|
|
72 |
|
set d = quest_check_defeat(PLAYER_TROLL)
|
|
73 |
|
if d then
|
|
74 |
|
call CustomDefeatBJ(PLAYER_TROLL, "Defeat!")
|
|
75 |
|
endif
|
|
76 |
|
|
|
77 |
|
set v = quest_check_victory(PLAYER_TROLL)
|
|
78 |
|
if v then
|
|
79 |
|
call CustomVictoryBJ(PLAYER_TROLL, true, true)
|
|
80 |
|
endif
|
|
81 |
|
endfunction
|
|
82 |
|
|
|
83 |
|
function u_death_trg_action takes nothing returns nothing
|
|
84 |
|
local timer t
|
|
85 |
|
|
|
86 |
|
call quest_complete(QUEST01, PLAYER_TROLL)
|
|
87 |
|
|
|
88 |
|
call DestroyTrigger(GetTriggeringTrigger())
|
|
89 |
|
|
|
90 |
|
set t = CreateTimer()
|
|
91 |
|
call TimerStart(t, 4.0, false, function map1_finish_if_necessary)
|
|
92 |
|
endfunction
|
|
93 |
|
|
|
94 |
|
function u1_death_trg_action takes nothing returns nothing
|
|
95 |
|
local timer t
|
|
96 |
|
|
|
97 |
|
call quest_complete(QUEST00, USER)
|
|
98 |
|
|
|
99 |
|
call DestroyTrigger(GetTriggeringTrigger())
|
|
100 |
|
|
|
101 |
|
set t = CreateTimer()
|
|
102 |
|
call TimerStart(t, 4.0, false, function map1_finish_if_necessary)
|
|
103 |
|
endfunction
|
|
104 |
|
|
|
105 |
|
function map1_quest_discover takes nothing returns nothing
|
|
106 |
|
local timer t
|
|
107 |
|
|
|
108 |
|
set t = GetExpiredTimer()
|
|
109 |
|
if t != null then
|
|
110 |
|
call DestroyTimer(t)
|
|
111 |
|
endif
|
|
112 |
|
|
|
113 |
|
call quest_discover(QUEST00, USER)
|
|
114 |
|
call quest_discover(QUEST01, PLAYER_TROLL)
|
|
115 |
|
endfunction
|
|
116 |
|
|
|
117 |
|
function map1_init takes nothing returns nothing
|
|
118 |
|
local real x = GetStartLocationX(GetPlayerId(USER))
|
|
119 |
|
local real y = GetStartLocationX(GetPlayerId(USER))
|
|
120 |
|
local unit u = CreateUnit(USER, UID_MARAKANIS, x, y, bj_UNIT_FACING)
|
|
121 |
|
|
|
122 |
|
local real x1 = GetStartLocationX(GetPlayerId(PLAYER_TROLL))
|
|
123 |
|
local real y1 = GetStartLocationX(GetPlayerId(PLAYER_TROLL))
|
|
124 |
|
local unit u1 = CreateUnit(PLAYER_TROLL, UID_PTATAKOKWA, x1, y1, bj_UNIT_FACING)
|
|
125 |
|
|
|
126 |
|
local unit n
|
|
127 |
|
|
|
128 |
|
local timer t = null
|
|
129 |
|
local trigger u_death_trg = null
|
|
130 |
|
local trigger u1_death_trg = null
|
|
131 |
|
|
|
132 |
|
call cmpgn_init()
|
|
133 |
|
|
|
134 |
|
set n = CreateUnit(USER, 'edry', x + 128.0, y + 128.0, bj_UNIT_FACING)
|
|
135 |
|
call PauseUnit(n, true)
|
|
136 |
|
set n = CreateUnit(USER, 'hfoo', x + 128.0, y + 128.0, bj_UNIT_FACING)
|
|
137 |
|
call PauseUnit(n, true)
|
|
138 |
|
|
|
139 |
|
set n = CreateUnit(PLAYER_TROLL, 'edry', x - 128.0, y - 128.0, bj_UNIT_FACING)
|
|
140 |
|
call PauseUnit(n, true)
|
|
141 |
|
set n = CreateUnit(PLAYER_TROLL, 'hfoo', x - 128.0, y - 128.0, bj_UNIT_FACING)
|
|
142 |
|
call PauseUnit(n, true)
|
|
143 |
|
|
|
144 |
|
if USER == GetLocalPlayer() then
|
|
145 |
|
call SelectUnit(u, true)
|
|
146 |
|
endif
|
|
147 |
|
call SetHeroLevel(u, 10, false)
|
|
148 |
|
|
|
149 |
|
call quest_constraint_unit_survives_create(CONSTRAINT00, USER, u)
|
|
150 |
|
call quest_constraint_unit_survives_create(CONSTRAINT01, PLAYER_TROLL, u1)
|
|
151 |
|
|
|
152 |
|
set u_death_trg = CreateTrigger()
|
|
153 |
|
call TriggerRegisterUnitEvent(u_death_trg, u, EVENT_UNIT_DEATH)
|
|
154 |
|
call TriggerAddAction(u_death_trg, function u_death_trg_action)
|
|
155 |
|
|
|
156 |
|
set u1_death_trg = CreateTrigger()
|
|
157 |
|
call TriggerRegisterUnitEvent(u1_death_trg, u1, EVENT_UNIT_DEATH)
|
|
158 |
|
call TriggerAddAction(u1_death_trg, function u1_death_trg_action)
|
|
159 |
|
|
|
160 |
|
call quest_enable(QUEST00, USER)
|
|
161 |
|
call quest_enable(QUEST01, PLAYER_TROLL)
|
|
162 |
|
|
|
163 |
|
set t = CreateTimer()
|
|
164 |
|
call TimerStart(t, 4.0, false, function map1_quest_discover)
|
|
165 |
|
endfunction
|
|
166 |
|
|
|
167 |
|
function main takes nothing returns nothing
|
|
168 |
|
call SetCameraBounds( -7424.0 + GetCameraMargin(CAMERA_MARGIN_LEFT), -7680.0 + GetCameraMargin(CAMERA_MARGIN_BOTTOM), 7424.0 - GetCameraMargin(CAMERA_MARGIN_RIGHT), 7168.0 - GetCameraMargin(CAMERA_MARGIN_TOP), -7424.0 + GetCameraMargin(CAMERA_MARGIN_LEFT), 7168.0 - GetCameraMargin(CAMERA_MARGIN_TOP), 7424.0 - GetCameraMargin(CAMERA_MARGIN_RIGHT), -7680.0 + GetCameraMargin(CAMERA_MARGIN_BOTTOM) )
|
|
169 |
|
call SetDayNightModels( "Environment\\DNC\\DNCLordaeron\\DNCLordaeronTerrain\\DNCLordaeronTerrain.mdl", "Environment\\DNC\\DNCLordaeron\\DNCLordaeronUnit\\DNCLordaeronUnit.mdl" )
|
|
170 |
|
call NewSoundEnvironment( "Default" )
|
|
171 |
|
call SetAmbientDaySound( "VillageDay" )
|
|
172 |
|
call SetAmbientNightSound( "VillageNight" )
|
|
173 |
|
call SetMapMusic( "Music", true, 0 )
|
|
174 |
|
call InitBlizzard( )
|
|
175 |
|
call map1_init()
|
|
176 |
|
endfunction
|
|
177 |
|
|
|
178 |
|
//***************************************************************************
|
|
179 |
|
//*
|
|
180 |
|
//* Map Configuration
|
|
181 |
|
//*
|
|
182 |
|
//***************************************************************************
|
|
183 |
|
|
|
184 |
|
function config takes nothing returns nothing
|
|
185 |
|
call SetMapName( "TRIGSTR_001" )
|
|
186 |
|
call SetMapDescription( "TRIGSTR_003" )
|
|
187 |
|
call SetPlayers( 1 )
|
|
188 |
|
call SetTeams( 3 )
|
|
189 |
|
call SetGamePlacement( MAP_PLACEMENT_USE_MAP_SETTINGS )
|
|
190 |
|
|
|
191 |
|
call DefineStartLocation( 0, 0.0, 0.0 )
|
|
192 |
|
call DefineStartLocation( 1, 512.0, 0.0 )
|
|
193 |
|
call DefineStartLocation( 2, 1024.0, 0.0 )
|
|
194 |
|
|
|
195 |
|
// Player setup
|
|
196 |
|
call InitCustomPlayerSlots( )
|
|
197 |
|
call InitCustomTeams( )
|
|
198 |
|
endfunction
|
|
File src/sorcerer0/config.j added (mode: 100644) (index 0000000..0346f22) |
|
1 |
|
// src/sorcerer0/config.j |
|
2 |
|
|
|
3 |
|
globals |
|
4 |
|
constant player PLAYER_UNDEAD = Player(1) |
|
5 |
|
constant player PLAYER_TROLL = Player(2) |
|
6 |
|
constant integer CONSTRAINT00 = 0 |
|
7 |
|
endglobals |
|
8 |
|
|
|
9 |
|
function InitCustomPlayerSlots takes nothing returns nothing |
|
10 |
|
call SetPlayerStartLocation(USER, 0) |
|
11 |
|
call SetPlayerColor(USER, PLAYER_COLOR_PINK) |
|
12 |
|
call SetPlayerRacePreference(USER, RACE_PREF_HUMAN) |
|
13 |
|
call SetPlayerRaceSelectable(USER, false) |
|
14 |
|
call SetPlayerController(USER, MAP_CONTROL_USER) |
|
15 |
|
|
|
16 |
|
call SetPlayerStartLocation(PLAYER_UNDEAD, 1) |
|
17 |
|
call SetPlayerColor(PLAYER_UNDEAD, PLAYER_COLOR_GREEN) |
|
18 |
|
call SetPlayerRacePreference(PLAYER_UNDEAD, RACE_PREF_UNDEAD) |
|
19 |
|
call SetPlayerRaceSelectable(PLAYER_UNDEAD, false) |
|
20 |
|
call SetPlayerController(PLAYER_UNDEAD, MAP_CONTROL_COMPUTER) |
|
21 |
|
call SetPlayerName(PLAYER_UNDEAD, "Undead") |
|
22 |
|
|
|
23 |
|
call SetPlayerStartLocation(PLAYER_TROLL, 2) |
|
24 |
|
call SetPlayerColor(PLAYER_TROLL, PLAYER_COLOR_YELLOW) |
|
25 |
|
call SetPlayerRacePreference(PLAYER_TROLL, RACE_PREF_ORC) |
|
26 |
|
call SetPlayerRaceSelectable(PLAYER_TROLL, false) |
|
27 |
|
call SetPlayerController(PLAYER_TROLL, MAP_CONTROL_COMPUTER) |
|
28 |
|
call SetPlayerName(PLAYER_TROLL, "Trolls") |
|
29 |
|
endfunction |
|
30 |
|
|
|
31 |
|
function InitCustomTeams takes nothing returns nothing |
|
32 |
|
call SetPlayerTeam(USER, 0) |
|
33 |
|
call SetPlayerTeam(PLAYER_UNDEAD, 1) |
|
34 |
|
call SetPlayerTeam(PLAYER_TROLL, 2) |
|
35 |
|
endfunction |
|
36 |
|
|
|
37 |
|
function config takes nothing returns nothing |
|
38 |
|
call SetMapName( "TRIGSTR_001" ) |
|
39 |
|
call SetMapDescription( "TRIGSTR_003" ) |
|
40 |
|
call SetPlayers( 1 ) |
|
41 |
|
call SetTeams( 3 ) |
|
42 |
|
call SetGamePlacement( MAP_PLACEMENT_USE_MAP_SETTINGS ) |
|
43 |
|
|
|
44 |
|
call DefineStartLocation( 0, 0.0, 0.0 ) |
|
45 |
|
call DefineStartLocation( 1, 512.0, 0.0 ) |
|
46 |
|
call DefineStartLocation( 2, 1024.0, 0.0 ) |
|
47 |
|
|
|
48 |
|
// Player setup |
|
49 |
|
call InitCustomPlayerSlots( ) |
|
50 |
|
call InitCustomTeams( ) |
|
51 |
|
endfunction |