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!: Add first room for first chapter f0ee739c1ae24ccc768f016cb6e6c0a13bcbcfd5 Vladyslav Bondarenko 2023-07-31 22:10:56
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 f0ee739c1ae24ccc768f016cb6e6c0a13bcbcfd5 - feat!: Add first room for first chapter
Author: Vladyslav Bondarenko
Author date (UTC): 2023-07-31 22:10
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2023-07-31 22:10
Parent(s): 6e27cf44d7d599f33feb8017988bb53c47a2552d
Signer:
Signing key: EFF9624877D25D02
Signing status: E
Tree: 1b246f4553d25a8606e42338f01432f7ac8fe77a
File Lines added Lines deleted
src/base/base.j 6 0
src/sorcerer/cmpgn.j 2 0
src/sorcerer/sorcererstub.w3n 0 0
src/sorcerer0/main.j 0 27
src/sorcerer0/s00config.j 18 16
src/sorcerer0/s01room100.j 73 0
src/sorcerer0/s02main.j 94 0
src/sorcerer0/sorcerer0.m4 4 2
File src/base/base.j added (mode: 100644) (index 0000000..e35e500)
1 // src/base/base.j
2
3 globals
4 // OrderId attack
5 constant integer BASE_ORDER_ATTACK = 851983
6 endglobals
File src/sorcerer/cmpgn.j changed (mode: 100644) (index a1cedfe..c7efc8a)
... ... function cmpgn_init takes nothing returns nothing
38 38 call cmpgn_quest_init() call cmpgn_quest_init()
39 39
40 40 call EnableMinimapFilterButtons(false, false) call EnableMinimapFilterButtons(false, false)
41 call SetPlayerHandicapXP(USER, 0.25)
42 call FogMaskEnable(true)
41 43 endfunction endfunction
File src/sorcerer/sorcererstub.w3n changed (mode: 100644) (index 2c86aa1..9a3a802)
File src/sorcerer0/main.j deleted (index 8c91e55..0000000)
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/s00config.j renamed from src/sorcerer0/config.j (similarity 68%) (mode: 100644) (index 0346f22..d9cccef)
... ... globals
7 7 endglobals endglobals
8 8
9 9 function InitCustomPlayerSlots takes nothing returns nothing function InitCustomPlayerSlots takes nothing returns nothing
10 call SetPlayerStartLocation(USER, 0)
10 call ForcePlayerStartLocation(USER, 0)
11 11 call SetPlayerColor(USER, PLAYER_COLOR_PINK) call SetPlayerColor(USER, PLAYER_COLOR_PINK)
12 12 call SetPlayerRacePreference(USER, RACE_PREF_HUMAN) call SetPlayerRacePreference(USER, RACE_PREF_HUMAN)
13 13 call SetPlayerRaceSelectable(USER, false) call SetPlayerRaceSelectable(USER, false)
14 14 call SetPlayerController(USER, MAP_CONTROL_USER) call SetPlayerController(USER, MAP_CONTROL_USER)
15 15
16 call SetPlayerStartLocation(PLAYER_UNDEAD, 1)
16 call ForcePlayerStartLocation(PLAYER_UNDEAD, 1)
17 17 call SetPlayerColor(PLAYER_UNDEAD, PLAYER_COLOR_GREEN) call SetPlayerColor(PLAYER_UNDEAD, PLAYER_COLOR_GREEN)
18 18 call SetPlayerRacePreference(PLAYER_UNDEAD, RACE_PREF_UNDEAD) call SetPlayerRacePreference(PLAYER_UNDEAD, RACE_PREF_UNDEAD)
19 19 call SetPlayerRaceSelectable(PLAYER_UNDEAD, false) call SetPlayerRaceSelectable(PLAYER_UNDEAD, false)
20 20 call SetPlayerController(PLAYER_UNDEAD, MAP_CONTROL_COMPUTER) call SetPlayerController(PLAYER_UNDEAD, MAP_CONTROL_COMPUTER)
21 21 call SetPlayerName(PLAYER_UNDEAD, "Undead") call SetPlayerName(PLAYER_UNDEAD, "Undead")
22 22
23 call SetPlayerStartLocation(PLAYER_TROLL, 2)
23 call ForcePlayerStartLocation(PLAYER_TROLL, 2)
24 24 call SetPlayerColor(PLAYER_TROLL, PLAYER_COLOR_YELLOW) call SetPlayerColor(PLAYER_TROLL, PLAYER_COLOR_YELLOW)
25 25 call SetPlayerRacePreference(PLAYER_TROLL, RACE_PREF_ORC) call SetPlayerRacePreference(PLAYER_TROLL, RACE_PREF_ORC)
26 26 call SetPlayerRaceSelectable(PLAYER_TROLL, false) call SetPlayerRaceSelectable(PLAYER_TROLL, false)
 
... ... function InitCustomTeams takes nothing returns nothing
35 35 endfunction endfunction
36 36
37 37 function config takes nothing returns nothing 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( )
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, -4000.0, -5300.0)
45 call DefineStartLocation(1, 512.0, 0.0)
46 call DefineStartLocation(2, 1024.0, 0.0)
47
48 call SetMapFlag(MAP_FOG_HIDE_TERRAIN, true)
49
50 // Player setup
51 call InitCustomPlayerSlots()
52 call InitCustomTeams()
51 53 endfunction endfunction
File src/sorcerer0/s01room100.j added (mode: 100644) (index 0000000..febf2ef)
1 globals
2 group room100_group1 = null
3 group room100_group2 = null
4 endglobals
5
6 function room100_action takes nothing returns nothing
7 local group g = room100_group1
8 local group p = room100_group2
9 local real x = -2300.0
10 local real y = -1850.0
11 local region r = GetTriggeringRegion()
12 local trigger t = GetTriggeringTrigger()
13 local unit u = GetEnteringUnit()
14
15 if USER != GetOwningPlayer(u) then
16 return
17 endif
18
19 call GroupPointOrderById(g, BASE_ORDER_ATTACK, x, y)
20 call GroupPointOrderById(p, BASE_ORDER_ATTACK, x, y)
21
22 call DestroyGroup(g)
23 call DestroyTrigger(t)
24 call RemoveRegion(r)
25 endfunction
26
27 function room100_init takes nothing returns nothing
28 local group g = CreateGroup()
29 local group p = CreateGroup()
30 local real a1 = -2500.0
31 local real a2 = 0
32 local real b1 = -2000.0
33 local real b2 = -3500.0
34 local rect q = Rect(-3500.0, -2500.0, -2000.0, -1000.0)
35 local region r = CreateRegion()
36 local trigger t = CreateTrigger()
37 local unit u = null
38
39 call RegionAddRect(r, q)
40 call RemoveRect(q)
41
42 set u = CreateUnit(PLAYER_UNDEAD, 'ugho', a1 + 64.0, a2 - 64.0, 225.0)
43 call GroupAddUnit(g, u)
44 set u = CreateUnit(PLAYER_UNDEAD, 'ugho', a1 - 64.0, a2 - 64.0, 225.0)
45 call GroupAddUnit(g, u)
46 set u = CreateUnit(PLAYER_UNDEAD, 'ugho', a1 + 64.0, a2 + 64.0, 225.0)
47 call GroupAddUnit(g, u)
48 set u = CreateUnit(PLAYER_UNDEAD, 'ugho', a1 - 64.0, a2 + 64.0, 225.0)
49 call GroupAddUnit(g, u)
50 set u = CreateUnit(PLAYER_UNDEAD, 'ucry', a1 + 64.0, a2 - 64.0, 225.0)
51 call GroupAddUnit(g, u)
52 set u = CreateUnit(PLAYER_UNDEAD, 'ucry', a1 - 64.0, a2 - 64.0, 225.0)
53 call GroupAddUnit(g, u)
54
55 set u = CreateUnit(PLAYER_UNDEAD, 'ugho', b1 + 64.0, b2 - 64.0, 225.0)
56 call GroupAddUnit(p, u)
57 set u = CreateUnit(PLAYER_UNDEAD, 'ugho', b1 - 64.0, b2 - 64.0, 225.0)
58 call GroupAddUnit(p, u)
59 set u = CreateUnit(PLAYER_UNDEAD, 'ugho', b1 + 64.0, b2 + 64.0, 225.0)
60 call GroupAddUnit(p, u)
61 set u = CreateUnit(PLAYER_UNDEAD, 'ugho', b1 - 64.0, b2 + 64.0, 225.0)
62 call GroupAddUnit(p, u)
63 set u = CreateUnit(PLAYER_UNDEAD, 'ucry', b1 + 64.0, b2 - 64.0, 225.0)
64 call GroupAddUnit(p, u)
65 set u = CreateUnit(PLAYER_UNDEAD, 'ucry', b1 - 64.0, b2 - 64.0, 225.0)
66 call GroupAddUnit(p, u)
67
68 set room100_group1 = g
69 set room100_group2 = p
70
71 call TriggerRegisterEnterRegion(t, r, null)
72 call TriggerAddAction(t, function room100_action)
73 endfunction
File src/sorcerer0/s02main.j added (mode: 100644) (index 0000000..114be54)
1 // src/sorcerer0/main.j
2
3 function sorcerer0_tech_init takes nothing returns nothing
4 call SetPlayerTechResearched(USER, 'Rhpt', 2)
5 call SetPlayerTechResearched(USER, 'Rhst', 2)
6 call SetPlayerTechResearched(USER, 'Rhss', 1)
7
8 call SetPlayerTechResearched(USER, 'Resm', 1)
9 call SetPlayerTechResearched(USER, 'Rhar', 1)
10 call SetPlayerTechResearched(USER, 'Rhde', 1)
11 call SetPlayerTechResearched(USER, 'Rhla', 1)
12 call SetPlayerTechResearched(USER, 'Rhme', 1)
13 call SetPlayerTechResearched(USER, 'Rhra', 1)
14
15 call SetPlayerTechResearched(PLAYER_UNDEAD, 'Ruba', 2)
16 call SetPlayerTechResearched(PLAYER_UNDEAD, 'Rune', 2)
17 call SetPlayerTechResearched(PLAYER_UNDEAD, 'Rusl', 1)
18 call SetPlayerTechResearched(PLAYER_UNDEAD, 'Rusm', 1)
19
20 call SetPlayerTechResearched(PLAYER_UNDEAD, 'Ruac', 1)
21 call SetPlayerTechResearched(PLAYER_UNDEAD, 'Rubu', 1)
22 call SetPlayerTechResearched(PLAYER_UNDEAD, 'Ruwb', 1)
23 endfunction
24
25 function sorcerer0_user_init takes nothing returns nothing
26 local unit t = null
27 local unit u = null
28
29 set u = CreateUnit(USER, UID_MARAKANIS, -4033.0, -5426.0, 240.0)
30 call SetUnitState(u, UNIT_STATE_MANA, GetUnitState(u, UNIT_STATE_MAX_MANA))
31
32 if USER == GetLocalPlayer() then
33 call SelectUnit(u, true)
34 endif
35 call SetHeroLevel(u, 0, false)
36 call SelectHeroSkill(u, SPELL00_ABILITY_ID)
37
38 call quest_constraint_unit_survives_create(CONSTRAINT00, USER, u)
39
40 call CreateUnit(USER, 'hhes', -4426.0, -4924.0, 300.0)
41 call CreateUnit(USER, 'hhes', -4302.0, -4766.0, 290)
42 call CreateUnit(USER, 'hhes', -4374.0, -5921.0, 45.0)
43 call CreateUnit(USER, 'hhes', -3250.0, -5843.0, 150.0)
44
45 set t = CreateUnit(USER, 'hspt', -4120.0, -5400.0, 250.0)
46 call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
47 set t = CreateUnit(USER, 'hspt', -3941.0, -5518.0, 230.0)
48 call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
49
50 set t = CreateUnit(USER, 'hmpr', -4750.0, -5400, 345.0)
51 call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
52 set t = CreateUnit(USER, 'hmpr', -4700.0, -5450, 0.0)
53 call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
54 set t = CreateUnit(USER, 'hmpr', -4750.0, -5500, 15.0)
55 call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
56
57 set t = CreateUnit(USER, 'hsor', -3900.0, -6015.0, 30.0)
58 call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
59 set t = CreateUnit(USER, 'hsor', -3700.0, -5971.0, 200.0)
60 call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
61 endfunction
62
63 function sorcerer0_undead_init takes nothing returns nothing
64 local real ox = GetStartLocationX(GetPlayerId(PLAYER_UNDEAD))
65 local real oy = GetStartLocationX(GetPlayerId(PLAYER_UNDEAD))
66
67 local unit u = null
68
69 set u = CreateUnit(PLAYER_UNDEAD, 'uabo', ox + 128.0, oy + 128.0, bj_UNIT_FACING)
70 set u = CreateUnit(PLAYER_UNDEAD, 'uabo', ox - 128.0, oy + 128.0, bj_UNIT_FACING)
71 set u = CreateUnit(PLAYER_UNDEAD, 'uabo', ox - 128.0, oy - 128.0, bj_UNIT_FACING)
72 set u = CreateUnit(PLAYER_UNDEAD, 'uban', ox, oy, bj_UNIT_FACING)
73 call SetUnitState(u, UNIT_STATE_MANA, GetUnitState(u, UNIT_STATE_MAX_MANA))
74 endfunction
75
76 function sorcerer0_init takes nothing returns nothing
77 call sorcerer0_tech_init()
78 call sorcerer0_user_init()
79 call sorcerer0_undead_init()
80
81 call room100_init()
82 endfunction
83
84 function main takes nothing returns nothing
85 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) )
86 call SetDayNightModels( "Environment\\DNC\\DNCLordaeron\\DNCLordaeronTerrain\\DNCLordaeronTerrain.mdl", "Environment\\DNC\\DNCLordaeron\\DNCLordaeronUnit\\DNCLordaeronUnit.mdl" )
87 call NewSoundEnvironment( "Default" )
88 call SetAmbientDaySound( "VillageDay" )
89 call SetAmbientNightSound( "VillageNight" )
90 call SetMapMusic( "Music", true, 0 )
91 call InitBlizzard( )
92 call cmpgn_init()
93 call sorcerer0_init()
94 endfunction
File src/sorcerer0/sorcerer0.m4 changed (mode: 100644) (index 94b105a..90d477a)
... ... define(endglobals, `divert(0)divert(2)')dnl
3 3 divert(2)dnl divert(2)dnl
4 4 dnl # WARNING: included files must never contain the tilde glyph, dnl # WARNING: included files must never contain the tilde glyph,
5 5 dnl # otherwise this m4 script produces malformed *.j snippet dnl # otherwise this m4 script produces malformed *.j snippet
6 include(`src/base/base.j')dnl
6 7 include(`src/base/quest.j')dnl include(`src/base/quest.j')dnl
7 8 include(`src/spellbook/spell00.j')dnl include(`src/spellbook/spell00.j')dnl
8 9 include(`src/spellbook/spell01.j')dnl include(`src/spellbook/spell01.j')dnl
9 10 include(`src/sorcerer/cmpgn.j')dnl include(`src/sorcerer/cmpgn.j')dnl
10 include(`src/sorcerer0/config.j')dnl
11 include(`src/sorcerer0/main.j')dnl
11 include(`src/sorcerer0/s00config.j')dnl
12 include(`src/sorcerer0/s01room100.j')dnl
13 include(`src/sorcerer0/s02main.j')dnl
12 14 divert(0)dnl divert(0)dnl
13 15 undefine(`globals')dnl # Leave 'globals' token as it is undefine(`globals')dnl # Leave 'globals' token as it is
14 16 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