diff options
Diffstat (limited to 'res/scripts')
-rw-r--r-- | res/scripts/common.lua | 25 | ||||
-rw-r--r-- | res/scripts/map1_off_right.lua | 8 | ||||
-rw-r--r-- | res/scripts/map2_off_left.lua | 3 |
3 files changed, 29 insertions, 7 deletions
diff --git a/res/scripts/common.lua b/res/scripts/common.lua index e7af1cf..f43b2e0 100644 --- a/res/scripts/common.lua +++ b/res/scripts/common.lua | |||
@@ -38,3 +38,28 @@ end | |||
38 | function StopSound(soundId) | 38 | function StopSound(soundId) |
39 | mixer():stopChannel(soundId) | 39 | mixer():stopChannel(soundId) |
40 | end | 40 | end |
41 | |||
42 | function FadeToBlack(length) | ||
43 | local progress = 0.0 | ||
44 | while progress < length do | ||
45 | progress = progress + coroutine.yield() | ||
46 | setFadeoutProgress(progress / length) | ||
47 | end | ||
48 | setFadeoutProgress(1.0) | ||
49 | end | ||
50 | |||
51 | function RemoveFadeout(length) | ||
52 | local progress = length | ||
53 | while progress > 0 do | ||
54 | progress = progress - coroutine.yield() | ||
55 | setFadeoutProgress(progress / length) | ||
56 | end | ||
57 | setFadeoutProgress(0.0) | ||
58 | end | ||
59 | |||
60 | function ChangeMap(map, warp) | ||
61 | FadeToBlack(150) | ||
62 | loadMap("../res/maps/" .. map .. ".tmx", warp) | ||
63 | coroutine.yield() | ||
64 | RemoveFadeout(150) | ||
65 | end | ||
diff --git a/res/scripts/map1_off_right.lua b/res/scripts/map1_off_right.lua index 026c32e..7dd0113 100644 --- a/res/scripts/map1_off_right.lua +++ b/res/scripts/map1_off_right.lua | |||
@@ -1,9 +1,3 @@ | |||
1 | function map1_off_right() | 1 | function map1_off_right() |
2 | -- Because this script gets triggered within the CharacterSystem's tick method, | 2 | ChangeMap("map2", "fromLeft") |
3 | -- if we immediately cleared out the entities from the old map, we might end up | ||
4 | -- returning there and processing stale data. This yield here ensures that we | ||
5 | -- are no longer in the CharacterSystem, because processing gets picked back up | ||
6 | -- in the ScriptSystem. | ||
7 | coroutine.yield() | ||
8 | loadMap("../res/maps/map2.tmx", "fromLeft") | ||
9 | end | 3 | end |
diff --git a/res/scripts/map2_off_left.lua b/res/scripts/map2_off_left.lua new file mode 100644 index 0000000..d4d9ce4 --- /dev/null +++ b/res/scripts/map2_off_left.lua | |||
@@ -0,0 +1,3 @@ | |||
1 | function map2_off_left() | ||
2 | ChangeMap("map1", "fromRight") | ||
3 | end | ||