vrtc / sorcererw3n (public) (License: CC0) (since 2022-12-13) (hash sha1)
Custom campaign for WarCraft3-1.27a. It requires complex build tools that are reusable and may serve as an example of dos and donts. Hence, the need for a managed repository.
List of commits:
Subject Hash Author Date (UTC)
feat(build): Export ability and unit resources 6e27cf44d7d599f33feb8017988bb53c47a2552d Vladyslav Bondarenko 2023-07-31 17:56:03
feat: Add Dampening Field spell stub b7132682830c7549014a8727b837bf089116b702 Vladyslav Bondarenko 2023-07-28 23:00:39
feat(build)!: Add first Apache Ant build descriptor d31e56fdf056a8928e45d5778e705f7c0984e49f Vladyslav Bondarenko 2023-01-08 17:23:01
feat(build)!: Create valid custom campaign archive 72cf187d0fc7d5438145a6ddf7ad72e23beec42c Vladyslav Bondarenko 2023-01-07 16:12:47
fix(build): Strip unnecessary empty lines 68582b9b3f03620608dd40730a6e23e42f8b8400 Vladyslav Bondarenko 2022-12-17 22:21:46
feat: Parametrize individual spell00 spellcasts 08560a980369527f3fc962e3da384da1ef97ce6f Vladyslav Bondarenko 2022-12-17 22:15:56
feat(doc): Add article on m4 pitfalls 2d95ed54414b150e45c391bc04b81fa6845c2797 Vladyslav Bondarenko 2022-12-17 13:23:09
fix(build)!: Include scripts for preprocessing b16c534a4018408be9df186870f293620696603b Vladyslav Bondarenko 2022-12-17 13:20:30
feat: Add spell stub and it's required resources d2ddbeca89c691847f79233aba8b47792b35c52c Vladyslav Bondarenko 2022-12-15 05:12:18
feat: Package custom unit data when possible e28d95f180bd6511a2a509b4c07a1932237c2273 Vladyslav Bondarenko 2022-12-14 02:23:42
fix!: Show quest buttons and messages correctly 4f17ffd9e6653d1d8f04587291ec9c95818643ad Vladyslav Bondarenko 2022-12-13 21:52:45
feat!: Initial commit b1de946d39ba2c2927cd283c0cb5164fd71e6fa0 Vladyslav Bondarenko 2022-12-13 08:58:53
Commit 6e27cf44d7d599f33feb8017988bb53c47a2552d - feat(build): Export ability and unit resources
Automatically export unit data, ability data and externalized strings
from the campaign archive to the build directory. This is a developer
convenience.

Ability and unit data contain globalized (externalized) strings. The
strings are localized in a *.wts file that is included in the map or
campaign archive. To localize unit or ability descriptions, the *.wts
file must be modified. However, the *w3a and *w3u files dictate the
layout of the *wts file, making it tricky to author localizations. This
is a problem for a later date.

The ability and unit data are copied for every campaign chapter (map),
to make it easier to play-test individual chapters. For example, to
execute the game from a command line and load selected map.

```
war3.exe -loadfile target/sorcerer0.w3x
```

Gbp-Dch: Ignore
Author: Vladyslav Bondarenko
Author date (UTC): 2023-07-31 17:56
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2023-07-31 18:12
Parent(s): b7132682830c7549014a8727b837bf089116b702
Signer:
Signing key: EFF9624877D25D02
Signing status: E
Tree: de8ad6c1b523f6d055c55d22a684be6e362757af
File Lines added Lines deleted
.gitignore 3 0
build.xml 42 23
src/map1/main.j 0 198
src/map1/map1.w3x 0 0
src/map1/war3map.wts 0 30
src/sorcerer/sorcererstub.w3n 0 0
src/sorcerer/war3campaign.w3a 0 0
src/sorcerer/war3campaign.w3u 0 0
src/sorcerer/war3campaign.wts 0 30
src/sorcerer0/config.j 51 0
src/sorcerer0/main.j 27 0
src/sorcerer0/sorcerer0.m4 2 1
File .gitignore changed (mode: 100644) (index dc8bf97..34b55d5)
1 1 *.swp *.swp
2 *.w3a
3 *.w3u
4 *.wts
2 5 *~ *~
3 6 local.properties local.properties
4 7 target/ target/
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/map1/map1.w3x deleted (index 0fe2b86..0000000)
File src/map1/war3map.wts deleted (index 5a9ac8c..0000000)
1 STRING 1
2 {
3 sorcerer-map1
4 }
5
6 STRING 2
7 {
8 1
9 }
10
11 STRING 3
12 {
13 Nondescript
14 }
15
16 STRING 4
17 {
18 Hatepoem
19 }
20
21 STRING 6
22 {
23 Force 1
24 }
25
26 STRING 7
27 {
28 User
29 }
30
File src/sorcerer/sorcererstub.w3n changed (mode: 100644) (index e8df16a..2c86aa1)
File src/sorcerer/war3campaign.w3a deleted (index 4cdf1df..0000000)
File src/sorcerer/war3campaign.w3u deleted (index ea6bfbf..0000000)
File src/sorcerer/war3campaign.wts deleted (index b6e2b49..0000000)
1 STRING 1
2 {
3 Sorcerous Heritage
4 }
5
6 STRING 2
7 {
8 Normal
9 }
10
11 STRING 3
12 {
13 Nondescript
14 }
15
16 STRING 5
17 {
18 vladyslavbond@protonmail.com
19 }
20
21 STRING 6
22 {
23 Chapter One
24 }
25
26 STRING 7
27 {
28 Untitled Button
29 }
30
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
File src/sorcerer0/main.j added (mode: 100644) (index 0000000..8c91e55)
1 // src/sorcerer0/main.j
2
3 function sorcerer0_init takes nothing returns nothing
4 local real x = GetStartLocationX(GetPlayerId(USER))
5 local real y = GetStartLocationX(GetPlayerId(USER))
6 local unit u = CreateUnit(USER, UID_MARAKANIS, x, y, bj_UNIT_FACING)
7
8 call cmpgn_init()
9
10 if USER == GetLocalPlayer() then
11 call SelectUnit(u, true)
12 endif
13 call SetHeroLevel(u, 10, false)
14
15 call quest_constraint_unit_survives_create(CONSTRAINT00, USER, u)
16 endfunction
17
18 function main takes nothing returns nothing
19 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) )
20 call SetDayNightModels( "Environment\\DNC\\DNCLordaeron\\DNCLordaeronTerrain\\DNCLordaeronTerrain.mdl", "Environment\\DNC\\DNCLordaeron\\DNCLordaeronUnit\\DNCLordaeronUnit.mdl" )
21 call NewSoundEnvironment( "Default" )
22 call SetAmbientDaySound( "VillageDay" )
23 call SetAmbientNightSound( "VillageNight" )
24 call SetMapMusic( "Music", true, 0 )
25 call InitBlizzard( )
26 call sorcerer0_init()
27 endfunction
File src/sorcerer0/sorcerer0.m4 renamed from src/map1/map1.m4 (similarity 88%) (mode: 100644) (index b96cd6f..94b105a)
... ... include(`src/base/quest.j')dnl
7 7 include(`src/spellbook/spell00.j')dnl include(`src/spellbook/spell00.j')dnl
8 8 include(`src/spellbook/spell01.j')dnl include(`src/spellbook/spell01.j')dnl
9 9 include(`src/sorcerer/cmpgn.j')dnl include(`src/sorcerer/cmpgn.j')dnl
10 include(`src/map1/main.j')dnl
10 include(`src/sorcerer0/config.j')dnl
11 include(`src/sorcerer0/main.j')dnl
11 12 divert(0)dnl divert(0)dnl
12 13 undefine(`globals')dnl # Leave 'globals' token as it is undefine(`globals')dnl # Leave 'globals' token as it is
13 14 undefine(`endglobals')dnl # Leave 'endglobals' token as it is undefine(`endglobals')dnl # Leave 'endglobals' token as it is
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/sorcererw3n

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/sorcererw3n

Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/sorcererw3n

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main