Mercurial > touhou
annotate data/ST/Makefile @ 316:f0be7ea62330
Fix a bug with ECL instruction 96, and fix overall ECL handling.
The issue with instruction 96 was about death callbacks,
being executed on the caller of instruction 96 instead of the dying enemies.
This was introduced by changeset 5930b33a0370.
Additionnaly, ECL processes are now an attribute of the Enemy,
and death/timeout conditions are checked right after the ECL frame,
even if the ECL script has already ended, just like in the original game.
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Thu, 29 Mar 2012 21:18:35 +0200 |
parents | 1bc0ad774ed4 |
children | b0b8825296d0 |
rev | line source |
---|---|
121
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
1 all: stg1bg.png stg1bg.anm stage1.std face03a.anm face03b.anm face42.png eff01.png eff01.anm stg1enm2.anm ecldata1.ecl stg1enm.png stg1enm.anm stg1enm2.anm msg1.dat etama3.anm etama3.png etama4.anm etama4.png |
115 | 2 |
3 face42.png: face.svg | |
4 inkscape -e face42.png face.svg | |
5 | |
6 | |
7 stg1bg.png: stg1bg.svg | |
8 inkscape -e stg1bg.png stg1bg.svg | |
9 | |
10 | |
11 stg1enm.png: stg1enm.svg | |
12 inkscape -e stg1enm.png stg1enm.svg | |
13 | |
14 | |
15 eff01.png: eff01.svg | |
16 inkscape -e eff01.png eff01.svg | |
17 | |
18 | |
19 stg1bg.anm: stg1bg.script | |
20 thanm c stg1bg.anm stg1bg.script | |
21 | |
22 | |
23 stg1enm.anm: stg1enm.script | |
24 thanm c stg1enm.anm stg1enm.script | |
25 | |
26 | |
27 face03a.anm: face03a.script | |
28 thanm c face03a.anm face03a.script | |
29 | |
30 | |
31 face03b.anm: face03a.script | |
32 thanm c face03b.anm face03a.script | |
33 | |
34 | |
35 eff01.anm: eff01.script | |
36 thanm c eff01.anm eff01.script | |
37 | |
38 | |
116
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
39 etama3.anm: etama3.script |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
40 thanm c etama3.anm etama3.script |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
41 |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
42 |
121
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
43 etama4.anm: etama4.script |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
44 thanm c etama4.anm etama4.script |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
45 |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
46 |
116
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
47 etama3.png: etama3.svg |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
48 inkscape -e etama3.png etama3.svg |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
49 |
0fa6bef94095
Welcome self-sufficient data!
Thibaut Girka <thib@sitedethib.com>
parents:
115
diff
changeset
|
50 |
121
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
51 etama4.png: etama4.svg |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
52 inkscape -e etama4.png etama4.svg |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
53 |
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
54 |
115 | 55 stg1enm2.anm: stg1enm2.script |
56 thanm c stg1enm2.anm stg1enm2.script | |
57 | |
58 | |
59 ecldata1.ecl: make_ecl.py | |
60 PYTHONPATH=../../ python make_ecl.py | |
61 | |
62 | |
63 stage1.std: make_stage.py | |
64 PYTHONPATH=../../ python make_stage.py | |
65 | |
66 | |
67 msg1.dat: msg1.script | |
68 thmsg c6 msg1.script msg1.dat | |
69 | |
70 | |
71 clean: | |
121
1bc0ad774ed4
More impressive data, use a wider range of things, and document things!
Thibaut Girka <thib@sitedethib.com>
parents:
116
diff
changeset
|
72 rm -f stg1bg.png stg1bg.anm stage1.std face03a.anm face03b.anm face42.png eff01.png eff01.anm stg1enm2.anm ecldata1.ecl stg1enm.png stg1enm.anm stg1enm2.anm msg1.dat etama3.anm etama3.png etama4.anm etama4.png |
115 | 73 |
74 .PHONY: all clean |