junglejourney
changeset 34:125080c5c19b
Added new sprites.
| author | David Boddie <david@boddie.org.uk> |
|---|---|
| date | Sun Aug 21 01:25:03 2011 +0200 |
| parents | 5414e8e0e9fe |
| children | dfc945305302 |
| files | build.py makesprites.py |
| diffstat | 2 files changed, 13 insertions(+), 14 deletions(-) [+] |
line diff
1.1 --- a/build.py Sun Aug 21 01:24:55 2011 +0200 1.2 +++ b/build.py Sun Aug 21 01:25:03 2011 +0200 1.3 @@ -98,9 +98,9 @@ 1.4 # 1.5 # 4600 space 1.6 # 4700 plot buffer (alternate unplot/plot entries terminating in 255) 1.7 - # n,n+1 address 1.8 - # n+2,n+3 source address 1.9 - # n+4,n+5 destination address 1.10 + # n type 1.11 + # n+1,n+2 source address 1.12 + # n+3,n+4 destination address 1.13 # 1.14 # 4700 and every 12 bytes is unplot entries 1.15 # 4706 and every 12 bytes is plot entries
2.1 --- a/makesprites.py Sun Aug 21 01:24:55 2011 +0200 2.2 +++ b/makesprites.py Sun Aug 21 01:25:03 2011 +0200 2.3 @@ -47,7 +47,7 @@ 2.4 read_xpm("images/leaf2.xpm"), 2.5 read_xpm("images/flowers2.xpm", [(".", "0"), ("#", "1"), ("+", "2"), ("@", "3")]), 2.6 read_xpm("images/leaf3.xpm", [(".", "0"), ("@", "3"), ("+", "2")]), 2.7 - read_xpm("images/rock2.xpm", [(" ", "0"), ("#", "1"), ("@", "2"), ("+", "3")]), 2.8 + read_xpm("images/leaf4.xpm", [(".", "0"), ("+", "1"), ("#", "2"), ("@", "3")]), 2.9 read_xpm("images/bricks.xpm", [(".", "0"), ("#", "1"), ("+", "2"), ("@", "3")]), 2.10 read_xpm("images/wall1.xpm"), 2.11 read_xpm("images/wall2.xpm")] 2.12 @@ -91,15 +91,14 @@ 2.13 read_xpm("images/birdrd1.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.14 read_xpm("images/birdrd2.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.15 2.16 - # placeholder enemy sprites 2.17 - read_xpm("images/birdlu1.xpm", [(".", "0"), ("+", "2"), ("@", "3")]), 2.18 - read_xpm("images/birdlu2.xpm", [(".", "0"), ("+", "2"), ("@", "3")]), 2.19 - read_xpm("images/birdru1.xpm", [(".", "0"), ("+", "2"), ("@", "3")]), 2.20 - read_xpm("images/birdru2.xpm", [(".", "0"), ("+", "2"), ("@", "3")]), 2.21 - read_xpm("images/birdld1.xpm", [(".", "0"), ("+", "2"), ("@", "3")]), 2.22 - read_xpm("images/birdld2.xpm", [(".", "0"), ("+", "2"), ("@", "3")]), 2.23 - read_xpm("images/birdrd1.xpm", [(".", "0"), ("+", "2"), ("@", "3")]), 2.24 - read_xpm("images/birdrd2.xpm", [(".", "0"), ("+", "2"), ("@", "3")]), 2.25 + read_xpm("images/wasplu1.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.26 + read_xpm("images/wasplu2.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.27 + read_xpm("images/waspru1.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.28 + read_xpm("images/waspru2.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.29 + read_xpm("images/waspld1.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.30 + read_xpm("images/waspld2.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.31 + read_xpm("images/wasprd1.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.32 + read_xpm("images/wasprd2.xpm", [(".", "0"), ("+", "1"), ("@", "3")]), 2.33 2.34 # placeholder enemy sprites 2.35 read_xpm("images/birdlu1.xpm", [(".", "0"), ("+", "3"), ("@", "3")]), 2.36 @@ -133,7 +132,7 @@ 2.37 2.38 # placeholder enemy appear 2.39 read_xpm("images/emerge1.xpm", [(".", "0"), ("+", "1"), ("#", "2"), ("@", "3")]), 2.40 - read_xpm("images/emerge2.xpm", [(".", "0"), ("+", "1"), ("#", "2"), ("@", "3")]), 2.41 + read_xpm("images/emerge2.xpm", [(".", "0"), ("+", "1"), ("#", "3"), ("@", "2")]), 2.42 read_xpm("images/emerge3.xpm", [(".", "0"), ("+", "1"), ("#", "2"), ("@", "3")]), 2.43 read_xpm("images/emerge4.xpm", [(".", "0"), ("+", "1"), ("#", "2"), ("@", "3")]), 2.44
