summaryrefslogtreecommitdiff
path: root/GNUmakefile
blob: a41feebb96bc4c689426c3c9ee60b13985cc2e49 (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
52
.PHONY: all maps conf mobxp mobxp-impl indent indent-items indent-mobs news updates
# Can't be parallel due to the mobxp/indent-mobs conflict
.NOTPARALLEL:
all: maps conf news updates
maps:
	tools/tmx_converter.py client-data/ world/map/

% : | %.example
	cp "$|" "$@"
conf: login/conf/login_local.conf login/conf/ladmin_local.conf login/save/gm_account.txt login/save/account.txt \
world/conf/char_local.conf \
world/map/conf/map_local.conf world/map/conf/battle_local.conf world/map/conf/atcommand_local.conf world/map/db/const-debugflag.txt \
world/map/npc/functions/motd.txt world/map/conf/permissions_local.txt

format:
	find world/map/npc -type f -exec sed -ri \
	-e "s%([^|]+)\|script\|([^|]+)\|-1%\1|script|\2|32767%ig" \
	-e "s/\.gat//g" -e "s/\r\n/\n/g" -e "s/\t/    /g" \
	-e "s%([^|]+)\|script\|([^|]+)\|([0-9]+)(,[0-9]+)?(,[0-9]+)?[^{]*\{%\1|script|\2|\3\4\5\n{%ig" \
	-e "s%function\|script\|([^| {]+)[^{]*\{%function|script|\1\n{%ig" \
	{} \; -exec vi -escwq {} \; -print

mobxp: mobxp-impl indent-mobs
mobxp-impl:
	mv world/map/db/mob_db.txt world/map/db/mob_db.old
	tools/mobxp < world/map/db/mob_db.old > world/map/db/mob_db.txt
	rm world/map/db/mob_db.old
indent: indent-mobs indent-items
indent-items: tools/aligncsv
	tools/aligncsv world/map/db/item_db.txt
indent-mobs: tools/aligncsv
	tools/aligncsv world/map/db/mob_db.txt

world/map/news.txt world/map/news.html world/map/news.rss world/map/news.json: tools/news.py tools/_news_colors.py world/map/news.d/* world/map/news.d/
	tools/news.py world/map/ world/map/news.d/
	chmod a+r world/map/news.txt world/map/news.html world/map/news.rss world/map/news.json

news: world/map/news.txt world/map/news.html world/map/news.rss world/map/news.json
updates:
	cd tools/client/ ; ./make-updates.sh


.PHONY: frob sql stats

frob:
	deno run --allow-read=. --allow-write=world/save tools/server/frob/index.ts -- $(items)

sql:
	deno run --allow-read=. --allow-net tools/server/frob/index.ts -- --dry --sql

stats:
	deno run --allow-read=. --allow-write=log --allow-net=server.themanaworld.org,raw.githubusercontent.com tools/server/frob/index.ts -- --dry --stats