File bin/compile.sh copied from file bin/prepare-resources.sh (similarity 60%) (mode: 100755) (index d16089e..b37654e) |
... |
... |
set -e |
3 |
3 |
BASEDIR=```readlink -f "$(dirname $0)/../"``` |
BASEDIR=```readlink -f "$(dirname $0)/../"``` |
4 |
4 |
BUILDDIR="${BASEDIR}/target" |
BUILDDIR="${BASEDIR}/target" |
5 |
5 |
SRCDIR="${BASEDIR}/src" |
SRCDIR="${BASEDIR}/src" |
|
6 |
|
echo 'bin/compile.sh' |
6 |
7 |
|
|
7 |
|
mkdir -p "${BUILDDIR}/map1" |
|
8 |
|
# TODO Select appropriate translation for the locale |
|
9 |
|
cp "${SRCDIR}/map1/war3map.wts" "${BUILDDIR}/map1/" |
|
10 |
|
m4 --debug=aeqp --include="${SRCDIR}" "${SRCDIR}/map1/map1.m4" > "${BUILDDIR}/map1/war3map.j" |
|
|
8 |
|
# These resources are preprocessed and compiled before being imported. |
|
9 |
|
# Therefore, create separate files for them in the build directory. |
11 |
10 |
|
|
12 |
|
cp "${SRCDIR}/map1/map1.w3x" "${BUILDDIR}/" |
|
|
11 |
|
m4 --debug=aeqp --include="${SRCDIR}" "${SRCDIR}/map1/map1.m4" > "${BUILDDIR}/map1/war3map.j" |
13 |
12 |
|
|
14 |
13 |
sh "${BASEDIR}/bin/pjass.sh" "${BUILDDIR}/map1/war3map.j" |
sh "${BASEDIR}/bin/pjass.sh" "${BUILDDIR}/map1/war3map.j" |
File bin/prepare-resources.sh changed (mode: 100755) (index d16089e..706d441) |
1 |
1 |
#!/bin/sh |
#!/bin/sh |
2 |
|
set -e |
|
|
2 |
|
echo 'bin/prepare-resources.sh' |
3 |
3 |
BASEDIR=```readlink -f "$(dirname $0)/../"``` |
BASEDIR=```readlink -f "$(dirname $0)/../"``` |
4 |
4 |
BUILDDIR="${BASEDIR}/target" |
BUILDDIR="${BASEDIR}/target" |
5 |
5 |
SRCDIR="${BASEDIR}/src" |
SRCDIR="${BASEDIR}/src" |
6 |
6 |
|
|
7 |
7 |
mkdir -p "${BUILDDIR}/map1" |
mkdir -p "${BUILDDIR}/map1" |
|
8 |
|
|
|
9 |
|
# These resources remain unmodified and will be imported like this. Therefore, |
|
10 |
|
# do not copy but only create symbolik links to them in the build directory. |
|
11 |
|
|
|
12 |
|
ln -s "${SRCDIR}/sorcerer/war3campaign.w3u" "${BUILDDIR}/map1/war3map.w3u" |
|
13 |
|
ln -s "${SRCDIR}/sorcerer/war3campaign.w3u" "${BUILDDIR}/war3campaign.w3u" |
8 |
14 |
# TODO Select appropriate translation for the locale |
# TODO Select appropriate translation for the locale |
9 |
|
cp "${SRCDIR}/map1/war3map.wts" "${BUILDDIR}/map1/" |
|
10 |
|
m4 --debug=aeqp --include="${SRCDIR}" "${SRCDIR}/map1/map1.m4" > "${BUILDDIR}/map1/war3map.j" |
|
|
15 |
|
ln -s "${SRCDIR}/map1/war3map.wts" "${BUILDDIR}/map1/war3map.wts" |
11 |
16 |
|
|
|
17 |
|
# These resources will be modified at packaging phase later. Therefore, copy |
|
18 |
|
# them entirely to the build directory. |
|
19 |
|
|
|
20 |
|
set -e |
12 |
21 |
cp "${SRCDIR}/map1/map1.w3x" "${BUILDDIR}/" |
cp "${SRCDIR}/map1/map1.w3x" "${BUILDDIR}/" |
13 |
22 |
|
|
14 |
|
sh "${BASEDIR}/bin/pjass.sh" "${BUILDDIR}/map1/war3map.j" |
|
File src/map1/main.j changed (mode: 100644) (index a3f6666..fb5ffcb) |
2 |
2 |
|
|
3 |
3 |
// divert(1)
|
// divert(1)
|
4 |
4 |
globals
|
globals
|
5 |
|
constant player USER = Player(0)
|
|
6 |
5 |
constant player PLAYER_UNDEAD = Player(1)
|
constant player PLAYER_UNDEAD = Player(1)
|
7 |
6 |
constant player PLAYER_TROLL = Player(2)
|
constant player PLAYER_TROLL = Player(2)
|
8 |
|
constant integer UNIT_TYPE_SORCERER = 'Hblm'
|
|
9 |
|
constant integer QUEST00 = 0
|
|
10 |
|
constant integer QUEST01 = 1
|
|
11 |
7 |
constant integer CONSTRAINT00 = 0
|
constant integer CONSTRAINT00 = 0
|
12 |
8 |
constant integer CONSTRAINT01 = 1
|
constant integer CONSTRAINT01 = 1
|
13 |
9 |
endglobals
|
endglobals
|
|
... |
... |
endfunction |
124 |
120 |
function map1_init takes nothing returns nothing
|
function map1_init takes nothing returns nothing
|
125 |
121 |
local real x = GetStartLocationX(GetPlayerId(USER))
|
local real x = GetStartLocationX(GetPlayerId(USER))
|
126 |
122 |
local real y = GetStartLocationX(GetPlayerId(USER))
|
local real y = GetStartLocationX(GetPlayerId(USER))
|
127 |
|
local unit u = CreateUnit(USER, UNIT_TYPE_SORCERER, x, y, bj_UNIT_FACING)
|
|
|
123 |
|
local unit u = CreateUnit(USER, UID_MARAKANIS, x, y, bj_UNIT_FACING)
|
128 |
124 |
|
|
129 |
125 |
local real x1 = GetStartLocationX(GetPlayerId(PLAYER_TROLL))
|
local real x1 = GetStartLocationX(GetPlayerId(PLAYER_TROLL))
|
130 |
126 |
local real y1 = GetStartLocationX(GetPlayerId(PLAYER_TROLL))
|
local real y1 = GetStartLocationX(GetPlayerId(PLAYER_TROLL))
|
131 |
|
local unit u1 = CreateUnit(PLAYER_TROLL, 'Oshd', x1, y1, bj_UNIT_FACING)
|
|
|
127 |
|
local unit u1 = CreateUnit(PLAYER_TROLL, UID_PTATAKOKWA, x1, y1, bj_UNIT_FACING)
|
132 |
128 |
|
|
133 |
129 |
local timer t = null
|
local timer t = null
|
134 |
130 |
local trigger u_death_trg = null
|
local trigger u_death_trg = null
|
|
... |
... |
function map1_init takes nothing returns nothing |
138 |
134 |
call SelectUnit(u, true)
|
call SelectUnit(u, true)
|
139 |
135 |
endif
|
endif
|
140 |
136 |
|
|
141 |
|
call EnableMinimapFilterButtons(false, false)
|
|
142 |
|
|
|
143 |
|
call quest_create(QUEST00, "Kill Ptatakokwa", "This troll is getting on your nerves.", null, true)
|
|
144 |
|
|
|
145 |
|
call quest_create(QUEST01, "Kill Marakanis", "This elf is getting on your nerves.", null, true)
|
|
|
137 |
|
call cmpgn_quest_init()
|
146 |
138 |
|
|
147 |
139 |
call quest_constraint_unit_survives_create(CONSTRAINT00, USER, u)
|
call quest_constraint_unit_survives_create(CONSTRAINT00, USER, u)
|
148 |
140 |
call quest_constraint_unit_survives_create(CONSTRAINT01, PLAYER_TROLL, u1)
|
call quest_constraint_unit_survives_create(CONSTRAINT01, PLAYER_TROLL, u1)
|
|
... |
... |
function map1_init takes nothing returns nothing |
159 |
151 |
call quest_enable(QUEST01, PLAYER_TROLL)
|
call quest_enable(QUEST01, PLAYER_TROLL)
|
160 |
152 |
|
|
161 |
153 |
set t = CreateTimer()
|
set t = CreateTimer()
|
162 |
|
call TimerStart(t, 36.0, false, function map1_quest_discover)
|
|
|
154 |
|
call TimerStart(t, 4.0, false, function map1_quest_discover)
|
163 |
155 |
endfunction
|
endfunction
|
164 |
156 |
|
|
165 |
157 |
function main takes nothing returns nothing
|
function main takes nothing returns nothing
|
File src/sorcerer/cmpgn.j added (mode: 100644) (index 0000000..d16b8bd) |
|
1 |
|
// src/sorcerer/cmpgn.j |
|
2 |
|
|
|
3 |
|
//divert(1) |
|
4 |
|
globals |
|
5 |
|
constant player USER = Player(0) |
|
6 |
|
|
|
7 |
|
// Unit type identifier constants |
|
8 |
|
constant integer UID_MARAKANIS = 'H000' |
|
9 |
|
constant integer UID_PTATAKOKWA = 'O000' |
|
10 |
|
|
|
11 |
|
// Quests |
|
12 |
|
constant integer QUEST00 = 0 |
|
13 |
|
constant integer QUEST01 = 1 |
|
14 |
|
endglobals |
|
15 |
|
//divert(0) |
|
16 |
|
|
|
17 |
|
//divert(2) |
|
18 |
|
function cmpgn_quest_init takes nothing returns nothing |
|
19 |
|
local string title |
|
20 |
|
local string desc |
|
21 |
|
local string icon |
|
22 |
|
|
|
23 |
|
set title = "Kill Ptatakokwa" |
|
24 |
|
set desc = "This troll is getting on your nerves." |
|
25 |
|
set icon = QUEST_DEFAULT_ICON_PATH |
|
26 |
|
call quest_create(QUEST00, title, desc, icon, QUEST_MAINQUEST_FLAG) |
|
27 |
|
|
|
28 |
|
set title = "Kill Marakanis" |
|
29 |
|
set desc = "This elf is getting on your nerves." |
|
30 |
|
set icon = QUEST_DEFAULT_ICON_PATH |
|
31 |
|
call quest_create(QUEST01, title, desc, icon, QUEST_MAINQUEST_FLAG) |
|
32 |
|
endfunction |
|
33 |
|
|
|
34 |
|
function cmpgn_init takes nothing returns nothing |
|
35 |
|
call cmpgn_quest_init() |
|
36 |
|
|
|
37 |
|
call EnableMinimapFilterButtons(false, false) |
|
38 |
|
endfunction |
|
39 |
|
//divert(0) |