Compare commits
30 Commits
db2f988de7
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 7767e81c88 | |||
| ed5acc7f50 | |||
| 5f05f6e568 | |||
| 447f5bfdb7 | |||
| 214cf3aa05 | |||
| eff070d61e | |||
| 99f3648d08 | |||
| 145d5b09d4 | |||
| 9930dcac54 | |||
| e285bcd4fd | |||
| c2f7b470bf | |||
| 28f9851f00 | |||
| b15da3338e | |||
| 56109ec776 | |||
| ce8c39bd78 | |||
| 9b6a8fab07 | |||
| 2dd36562da | |||
| f6ea65a822 | |||
| d41566e393 | |||
| 297662de6f | |||
| 6332fa6d25 | |||
| 042e071ef2 | |||
| d3fe7feff4 | |||
| 3de87f046e | |||
| d5a886987d | |||
| 00423dfd73 | |||
| d82a61bd4c | |||
| 8008588db4 | |||
| 2a4d7ada8f | |||
| 05ebc097d6 |
BIN
data/actor-bag.gif
Normal file
|
After Width: | Height: | Size: 199 B |
BIN
data/actor-base.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
data/actor-brows.gif
Normal file
|
After Width: | Height: | Size: 145 B |
BIN
data/actor-chin.gif
Normal file
|
After Width: | Height: | Size: 279 B |
BIN
data/actor-eyes.gif
Normal file
|
After Width: | Height: | Size: 163 B |
BIN
data/actor-hair.gif
Normal file
|
After Width: | Height: | Size: 1007 B |
BIN
data/actor-nose.gif
Normal file
|
After Width: | Height: | Size: 211 B |
@@ -2,14 +2,28 @@ actors={
|
|||||||
list={},
|
list={},
|
||||||
updating=false,
|
updating=false,
|
||||||
main={},
|
main={},
|
||||||
|
under_cursor="",
|
||||||
|
surface=0,
|
||||||
|
should_free_surf=false,
|
||||||
|
|
||||||
init=function()
|
init=function()
|
||||||
|
for i,actor in ipairs(actors.list) do
|
||||||
|
if actor.should_free_surf then
|
||||||
|
surf.free(actor.surface)
|
||||||
|
end
|
||||||
|
end
|
||||||
actors.list={}
|
actors.list={}
|
||||||
actors.updating=false
|
actors.updating=false
|
||||||
end,
|
end,
|
||||||
|
|
||||||
add=function(actor)
|
add=function(actor)
|
||||||
actor.dx,actor.dy=0,0
|
actor.dx,actor.dy=0,0
|
||||||
|
if actor.jailmoji then
|
||||||
|
actor.surface=jailmoji.get(actor.jailmoji)
|
||||||
|
actor.gfx={x=0,y=0}
|
||||||
|
else
|
||||||
|
actor.surface=surf.load("sprites.gif")
|
||||||
|
end
|
||||||
table.insert(actors.list, actor)
|
table.insert(actors.list, actor)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
@@ -44,21 +58,35 @@ actors={
|
|||||||
actors.search(name).o = o
|
actors.search(name).o = o
|
||||||
end,
|
end,
|
||||||
|
|
||||||
draw=function()
|
display=function()
|
||||||
|
actors.under_cursor=""
|
||||||
for i,v in ipairs(actors.list) do
|
for i,v in ipairs(actors.list) do
|
||||||
|
if v.o=='' then goto continue end
|
||||||
local frame=((v.dx+v.dy)%2)*16
|
local frame=((v.dx+v.dy)%2)*16
|
||||||
local x,y = v.x, v.y
|
local x,y = v.x, v.y
|
||||||
if v.ox then x = x + v.ox end
|
if v.ox then x = x + v.ox end
|
||||||
if v.oy then y = y + v.oy end
|
if v.oy then y = y + v.oy end
|
||||||
if v.o=='u' then
|
local mousex,mousey=mouse.pos()
|
||||||
sspr(v.gfx.x+frame,v.gfx.y+16,16,16,x*8+v.dx*2,y*8-12+v.dy*2,16,16,v.dy>1)
|
local mx = math.floor((mousex+game.cam.x)/8)
|
||||||
elseif v.o=='d' then
|
local my = math.floor((mousey+game.cam.y)/8)
|
||||||
sspr(v.gfx.x+frame,v.gfx.y,16,16,x*8+v.dx*2,y*8-12+v.dy*2,16,16,-v.dy>2)
|
if (mx==x or mx==x+1) and (my==y or my==y-1) then
|
||||||
elseif v.o=='l' then
|
actors.under_cursor=v.name
|
||||||
sspr(v.gfx.x+frame,v.gfx.y+32,16,16,x*8+v.dx*2,y*8-12+v.dy*2,16,16)
|
pal.subpal(1,16,8)
|
||||||
elseif v.o=='r' then
|
|
||||||
sspr(v.gfx.x+frame,v.gfx.y+32,16,16,x*8+v.dx*2,y*8-12+v.dy*2,16,16,true)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
surf.source(v.surface)
|
||||||
|
if v.o=='u' then
|
||||||
|
draw.surf(v.gfx.x+frame,v.gfx.y+16,16,16,x*8+v.dx*2,y*8-12+v.dy*2,16,16,v.dy>1)
|
||||||
|
elseif v.o=='d' then
|
||||||
|
draw.surf(v.gfx.x+frame,v.gfx.y,16,16,x*8+v.dx*2,y*8-12+v.dy*2,16,16,-v.dy>2)
|
||||||
|
elseif v.o=='l' then
|
||||||
|
draw.surf(v.gfx.x+frame,v.gfx.y+32,16,16,x*8+v.dx*2,y*8-12+v.dy*2,16,16)
|
||||||
|
elseif v.o=='r' then
|
||||||
|
draw.surf(v.gfx.x+frame,v.gfx.y+32,16,16,x*8+v.dx*2,y*8-12+v.dy*2,16,16,true)
|
||||||
|
end
|
||||||
|
|
||||||
|
if not key.down(key.LSHIFT) then pal.subpal() end
|
||||||
|
::continue::
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
@@ -91,6 +119,19 @@ actors={
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
moveto=function(name,dx,dy)
|
||||||
|
local actor = actors.search(name)
|
||||||
|
if actor.x==dx and actor.y==dy then
|
||||||
|
actor.path=nil
|
||||||
|
return
|
||||||
|
end
|
||||||
|
actor.path={pos=0,route=""}
|
||||||
|
if (actor.x<dx) then for i=1,dx-actor.x do actor.path.route=actor.path.route.."r" end end
|
||||||
|
if (actor.x>dx) then for i=1,actor.x-dx do actor.path.route=actor.path.route.."l" end end
|
||||||
|
if (actor.y<dy) then for i=1,dy-actor.y do actor.path.route=actor.path.route.."d" end end
|
||||||
|
if (actor.y>dy) then for i=1,actor.y-dy do actor.path.route=actor.path.route.."u" end end
|
||||||
|
end,
|
||||||
|
|
||||||
update=function()
|
update=function()
|
||||||
if actors.updating then return end
|
if actors.updating then return end
|
||||||
actors.updating=true
|
actors.updating=true
|
||||||
@@ -104,7 +145,6 @@ actors={
|
|||||||
v.path=nil
|
v.path=nil
|
||||||
game.update()
|
game.update()
|
||||||
if in_scene then scene.cont() end
|
if in_scene then scene.cont() end
|
||||||
v.keys=nil
|
|
||||||
if v.name == actors.main.name then
|
if v.name == actors.main.name then
|
||||||
local switch = switches.search(v.x,v.y)
|
local switch = switches.search(v.x,v.y)
|
||||||
if switch then
|
if switch then
|
||||||
|
|||||||
32
data/arq.map
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
73
|
||||||
|
29
|
||||||
|
1
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,117,137,153,153,153,153,153,153,137,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,152,195,33,33,33,33,195,138,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,39,40,39,40,39,40,35,36,37,38,39,40,39,40,39,40,39,40,39,40,39,40,39,40,152,211,12,12,12,12,211,138,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,55,56,55,56,55,56,51,52,91,92,95,56,55,56,55,56,57,58,55,56,123,124,93,94,152,227,5,2,5,2,227,138,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,63,72,73,74,75,72,67,68,107,108,71,72,73,74,75,72,71,72,63,72,139,140,109,110,5,2,5,2,5,2,5,2,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,79,2,7,8,9,2,5,2,5,2,5,2,7,8,9,2,5,2,79,2,155,156,125,126,5,2,5,2,5,2,5,2,34,
|
||||||
|
116,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,117,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
|
44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
|
39,40,39,40,35,36,37,38,39,40,35,36,37,38,39,40,39,40,39,40,35,36,37,38,39,40,39,40,39,40,39,40,35,36,37,38,39,40,39,40,5,2,5,2,5,2,5,2,100,102,102,102,102,102,102,102,102,102,102,102,102,102,102,101,5,2,5,2,5,2,5,2,34,
|
||||||
|
55,56,55,56,51,52,53,54,95,56,51,52,53,54,95,56,55,56,57,58,51,52,91,92,95,56,55,56,55,56,57,58,51,52,53,54,95,56,55,56,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
71,72,73,74,75,68,69,70,71,72,67,68,69,70,71,72,63,72,71,72,67,68,107,108,71,72,73,74,75,63,71,72,67,68,69,70,71,72,63,72,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
5,2,7,8,9,2,5,2,5,2,5,2,5,2,5,2,79,2,5,2,5,2,5,2,5,2,7,8,9,79,5,2,5,2,5,2,5,2,79,2,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
100,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,101,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,5,2,5,2,5,2,5,2,34,
|
||||||
|
116,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,117,5,2,5,2,5,2,5,2,116,42,42,42,42,42,42,42,42,42,42,42,42,42,42,117,5,2,5,2,5,2,5,2,34,
|
||||||
|
44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,5,2,5,2,5,2,5,2,44,45,44,45,44,45,44,45,44,45,44,45,44,45,44,45,5,2,5,2,5,2,5,2,34,
|
||||||
|
39,40,39,40,39,40,35,36,37,38,39,40,39,40,39,40,39,40,35,36,37,38,39,40,39,40,39,40,39,40,35,36,37,38,39,40,39,40,39,40,5,2,5,2,5,2,5,2,39,40,39,40,39,40,35,36,37,38,39,40,39,40,39,40,5,2,5,2,5,2,5,2,34,
|
||||||
|
55,56,55,56,57,58,51,52,91,92,95,56,55,56,55,56,55,56,51,52,91,92,95,56,57,58,55,56,55,56,51,52,91,92,95,56,57,58,55,56,5,2,5,2,5,2,5,2,55,56,55,56,57,58,51,52,91,92,95,56,55,56,55,56,5,2,5,2,5,2,5,2,34,
|
||||||
|
71,72,71,72,71,72,67,68,107,108,71,72,63,72,73,74,75,72,67,68,107,108,71,72,71,72,73,74,75,72,67,68,107,108,71,72,71,72,63,72,5,2,5,2,5,2,5,2,73,74,75,72,71,72,63,68,107,108,71,72,73,74,75,72,5,2,5,2,5,2,5,2,34,
|
||||||
|
5,2,5,2,5,2,5,2,5,2,5,2,79,2,7,8,9,2,5,2,5,2,5,2,5,2,7,8,9,2,5,2,5,2,5,2,5,2,79,2,5,2,5,2,5,2,5,2,7,8,9,2,5,2,79,2,5,2,5,2,7,8,9,2,5,2,5,2,5,2,5,2,34,
|
||||||
|
5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
|
5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
|
49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,50,
|
||||||
@@ -38,36 +38,36 @@ balloon={
|
|||||||
if below==nil or below==false then
|
if below==nil or below==false then
|
||||||
balloon.rect.y=balloon.rect.y-balloon.rect.h-16
|
balloon.rect.y=balloon.rect.y-balloon.rect.h-16
|
||||||
local x,y,w,h=balloon.rect.x,balloon.rect.y,balloon.rect.w,balloon.rect.h
|
local x,y,w,h=balloon.rect.x,balloon.rect.y,balloon.rect.w,balloon.rect.h
|
||||||
rectfill(x+1,y+1,x+w+1,y+h+1,5)
|
draw.rectf(x+1,y+1,w+1,h+1,5)
|
||||||
rectfill(x,y,x+w,y+h,8)
|
draw.rectf(x,y,w+1,h+1,8)
|
||||||
rect(x,y,x+w,y+h,6)
|
draw.rect(x,y,w+1,h+1,6)
|
||||||
|
|
||||||
if pos<80 then
|
if pos<80 then
|
||||||
for i=0,4 do rect(pos,y+h+(4-i),pos+i,y+h+(4-i),8) end
|
for i=0,4 do draw.rect(pos,y+h+(4-i),i+1,2,8) end
|
||||||
line(pos-1,y+h+1,pos-1,y+h+6,6)
|
draw.line(pos-1,y+h+1,pos-1,y+h+6,6)
|
||||||
line(pos+4,y+h+1,pos-1,y+h+6,6)
|
draw.line(pos+4,y+h+1,pos-1,y+h+6,6)
|
||||||
else
|
else
|
||||||
pos=pos-5
|
pos=pos-5
|
||||||
for i=0,4 do rect(pos+i,y+h+i,pos+4,y+h+i,8) end
|
for i=0,4 do draw.rect(pos+i,y+h+i,5-i,2,8) end
|
||||||
line(pos+5,y+h+1,pos+5,y+h+6,6)
|
draw.line(pos+5,y+h+1,pos+5,y+h+6,6)
|
||||||
line(pos,y+h+1,pos+5,y+h+6,6)
|
draw.line(pos,y+h+1,pos+5,y+h+6,6)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
balloon.rect.y=balloon.rect.y+16
|
balloon.rect.y=balloon.rect.y+16
|
||||||
local x,y,w,h=balloon.rect.x,balloon.rect.y,balloon.rect.w,balloon.rect.h
|
local x,y,w,h=balloon.rect.x,balloon.rect.y,balloon.rect.w,balloon.rect.h
|
||||||
rectfill(x+1,y+1,x+w+1,y+h+1,5)
|
draw.rectf(x+1,y+1,w+1,h+1,5)
|
||||||
rectfill(x,y,x+w,y+h,8)
|
draw.rectf(x,y,w+1,h+1,8)
|
||||||
rect(x,y,x+w,y+h,6)
|
draw.rect(x,y,w+1,h+1,6)
|
||||||
|
|
||||||
if pos<80 then
|
if pos<80 then
|
||||||
for i=0,4 do rect(pos,y-(4-i),pos+i,y-(4-i),8) end
|
for i=0,4 do draw.rect(pos,y-(4-i),i+1,2,8) end
|
||||||
line(pos-1,y,pos-1,y-6,6)
|
draw.line(pos-1,y,pos-1,y-6,6)
|
||||||
line(pos+5,y,pos-1,y-6,6)
|
draw.line(pos+5,y,pos-1,y-6,6)
|
||||||
else
|
else
|
||||||
pos=pos-5
|
pos=pos-5
|
||||||
for i=0,4 do rect(pos+i,y-i,pos+4,y-i,8) end
|
for i=0,4 do draw.rect(pos+i,y-i,5-i,2,8) end
|
||||||
line(pos+5,y,pos+5,y-6,6)
|
draw.line(pos+5,y,pos+5,y-6,6)
|
||||||
line(pos-1,y,pos+5,y-6,6)
|
draw.line(pos-1,y,pos+5,y-6,6)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -87,15 +87,15 @@ balloon={
|
|||||||
update=balloon.update
|
update=balloon.update
|
||||||
|
|
||||||
local x,y,w,h=balloon.rect.x,balloon.rect.y,balloon.rect.w,balloon.rect.h
|
local x,y,w,h=balloon.rect.x,balloon.rect.y,balloon.rect.w,balloon.rect.h
|
||||||
rectfill(x+1,y+1,x+w+1,y+h+1,5)
|
draw.rectf(x+1,y+1,w+1,h+1,5)
|
||||||
rectfill(x,y,x+w,y+h,15)
|
draw.rectf(x,y,w+1,h+1,15)
|
||||||
rect(x,y,x+w,y+h,6)
|
draw.rect(x,y,w+1,h+1,6)
|
||||||
|
|
||||||
balloon.cursor={x=balloon.rect.x+12,y=balloon.rect.y+11}
|
balloon.cursor={x=balloon.rect.x+12,y=balloon.rect.y+11}
|
||||||
end,
|
end,
|
||||||
|
|
||||||
update=function()
|
update=function()
|
||||||
if anykey() then
|
if key.any() then
|
||||||
if balloon.pos<0 then
|
if balloon.pos<0 then
|
||||||
update=balloon.old_update
|
update=balloon.old_update
|
||||||
update()
|
update()
|
||||||
@@ -105,20 +105,20 @@ balloon={
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if not beat() and not balloon.quick then return end
|
if not sys.beat() and not balloon.quick then return end
|
||||||
|
|
||||||
if balloon.pos<0 then
|
if balloon.pos<0 then
|
||||||
if balloon.obj then
|
if balloon.obj then
|
||||||
setsource(objectes)
|
surf.source(objectes)
|
||||||
sspr(balloon.obj.x,balloon.obj.y,16,16,balloon.rect.x+balloon.rect.w-28,balloon.rect.y+10)
|
draw.surf(balloon.obj.x,balloon.obj.y,16,16,balloon.rect.x+balloon.rect.w-28,balloon.rect.y+10)
|
||||||
end
|
end
|
||||||
local col=8
|
local col=8
|
||||||
if flr(time()*4)%2==0 then col=10 end
|
if math.floor(sys.time()*4)%2==0 then col=10 end
|
||||||
local x,y=balloon.rect.x+balloon.rect.w-8, balloon.rect.y+balloon.rect.h-6
|
local x,y=balloon.rect.x+balloon.rect.w-8, balloon.rect.y+balloon.rect.h-6
|
||||||
line(x,y,x+4,y,col)
|
draw.line(x,y,x+4,y,col)
|
||||||
line(x+1,y+1,x+3,y+1,col)
|
draw.line(x+1,y+1,x+3,y+1,col)
|
||||||
line(x+2,y+2,x+2,y+2,col)
|
draw.line(x+2,y+2,x+2,y+2,col)
|
||||||
if btnp(KEY_SPACE) then
|
if key.press(key.SPACE) then
|
||||||
update=balloon.old_update
|
update=balloon.old_update
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|||||||
34
data/brymode.lua
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
brymode = {
|
||||||
|
old_update=nil,
|
||||||
|
return_function=nil,
|
||||||
|
|
||||||
|
show=function(retfun)
|
||||||
|
brymode.old_update=update
|
||||||
|
update=brymode.update
|
||||||
|
brymode.return_function=retfun
|
||||||
|
|
||||||
|
surf.cls(0)
|
||||||
|
draw.text("#include <stdio.h>",1,1,8)
|
||||||
|
draw.text("int main(int argc, char *argv[])",1,1+6*2,8)
|
||||||
|
draw.text("{",1,1+6*3,8)
|
||||||
|
draw.text("SDL_Init(SDL_INIT_EVERYTHING);",21,1+6*4,8)
|
||||||
|
draw.text("SDL_Window *win=",21,1+6*6,8)
|
||||||
|
draw.text("SDL_CreateWindow('Title',320,240);",29,1+6*7,8)
|
||||||
|
draw.text("SDL_Renderer *ren =",21,1+6*9,8)
|
||||||
|
draw.text("SDL_CreateRenderer(win,-1,0);",29,1+6*10,8)
|
||||||
|
draw.text("SDL_Quit();",21,1+6*12,8)
|
||||||
|
draw.text("return 0;",21,1+6*13,8)
|
||||||
|
draw.text("}",1,1+6*14,8)
|
||||||
|
end,
|
||||||
|
|
||||||
|
update=function()
|
||||||
|
--cls(0)
|
||||||
|
|
||||||
|
if key.press(key.ESCAPE) then
|
||||||
|
if brymode.return_function then
|
||||||
|
update=brymode.old_update
|
||||||
|
brymode.return_function()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
}
|
||||||
184
data/editor.lua
@@ -1,6 +1,7 @@
|
|||||||
require "menu"
|
require "menu"
|
||||||
require "mapa"
|
require "mapa"
|
||||||
require "textbox"
|
require "textbox"
|
||||||
|
require "fileselect"
|
||||||
|
|
||||||
editor={
|
editor={
|
||||||
paused=true,
|
paused=true,
|
||||||
@@ -8,6 +9,8 @@ editor={
|
|||||||
--selected_tile=3,
|
--selected_tile=3,
|
||||||
brush={w=1,h=1,tiles={3}},
|
brush={w=1,h=1,tiles={3}},
|
||||||
selection=nil,
|
selection=nil,
|
||||||
|
cx=0,
|
||||||
|
cy=0,
|
||||||
|
|
||||||
init=function()
|
init=function()
|
||||||
set_update(editor.update)
|
set_update(editor.update)
|
||||||
@@ -15,42 +18,62 @@ editor={
|
|||||||
editor.new()
|
editor.new()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
editfrom=function()
|
||||||
|
game.paused = nil
|
||||||
|
set_update(editor.update)
|
||||||
|
--editor.show_menu()
|
||||||
|
editor.load(game.level .. ".map")
|
||||||
|
editor.cam.x = game.cam.x
|
||||||
|
editor.cam.y = game.cam.y
|
||||||
|
end,
|
||||||
|
|
||||||
show_menu=function()
|
show_menu=function()
|
||||||
menu.show({ {"NEW MAP", editor.new},
|
menu.show({ {"NEW MAP", editor.new},
|
||||||
{"LOAD MAP", function() textbox.show("FILENAME TO LOAD:",editor.load, mapa.name) end},
|
{"LOAD MAP", function() fileselect.show("FILE TO LOAD:",editor.load, ".map") end},
|
||||||
{"SAVE MAP", function() if mapa.name~=nil then editor.save(mapa.name) else textbox.show("FILENAME TO SAVE:",editor.save, mapa.name) end end},
|
{"SAVE MAP", function() if mapa.name~=nil then editor.save(mapa.name) else textbox.show("FILENAME TO SAVE:",editor.save, mapa.name) end end},
|
||||||
{mapa.front_layer and "DISABLE FRONT LAYER" or "ENABLE FRONT LAYER", editor.toggle_front_layer},
|
{editor.editing_front_layer and "DISABLE FRONT LAYER" or "ENABLE FRONT LAYER", editor.toggle_front_layer},
|
||||||
{"RESIZE MAP", editor.resize},
|
{"RESIZE MAP", editor.resize},
|
||||||
{"RELOAD TEXTURES", editor.reload_textures},
|
{"RELOAD TEXTURES", editor.reload_textures},
|
||||||
|
{"PLAY FROM HERE", editor.playfromhere},
|
||||||
{"EXIT", main_init},
|
{"EXIT", main_init},
|
||||||
}, function()editor.paused=false end)
|
}, function()editor.paused=false end)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
playfromhere=function()
|
||||||
|
game.startfromeditor(string.sub(mapa.name,1,-5), editor.cx, editor.cy)
|
||||||
|
end,
|
||||||
|
|
||||||
reload_textures=function()
|
reload_textures=function()
|
||||||
freesurf(sprites)
|
surf.free(sprites)
|
||||||
freesurf(objectes)
|
surf.free(objectes)
|
||||||
freesurf(tiles)
|
surf.free(tiles)
|
||||||
sprites=loadsurf("sprites.gif")
|
sprites=surf.load("sprites.gif")
|
||||||
objectes=loadsurf("objects.gif")
|
objectes=surf.load("objects.gif")
|
||||||
tiles=loadsurf("tiles.gif")
|
tiles=surf.load("tiles.gif")
|
||||||
setsource(tiles)
|
surf.source(tiles)
|
||||||
local pal=loadpal("tiles.gif")
|
local p=pal.load("tiles.gif")
|
||||||
setpal(pal)
|
pal.set(p)
|
||||||
editor.paused=false
|
editor.paused=false
|
||||||
end,
|
end,
|
||||||
|
|
||||||
toggle_front_layer=function()
|
toggle_front_layer=function()
|
||||||
if not mapa.front_layer then
|
if editor.editing_front_layer then
|
||||||
mapa.front_layer=newsurf(mapa.w,mapa.h)
|
map.surf(mapa.surface)
|
||||||
editor.editing_front_layer=true
|
editor.editing_front_layer=false;
|
||||||
setmap(mapa.front_layer)
|
|
||||||
for y=0,mapa.h-1 do
|
|
||||||
for x=0,mapa.w-1 do
|
|
||||||
mset(x,y,0)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
else
|
||||||
mapa.front_layer=nil
|
if not mapa.front_layer then
|
||||||
|
mapa.front_layer=surf.new(mapa.w,mapa.h)
|
||||||
|
editor.editing_front_layer=true
|
||||||
|
map.surf(mapa.front_layer)
|
||||||
|
for y=0,mapa.h-1 do
|
||||||
|
for x=0,mapa.w-1 do
|
||||||
|
map.tile(x,y,0)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
editor.editing_front_layer=true
|
||||||
|
map.surf(mapa.front_layer)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
editor.paused=false
|
editor.paused=false
|
||||||
end,
|
end,
|
||||||
@@ -69,27 +92,27 @@ editor={
|
|||||||
local old_surface= mapa.surface
|
local old_surface= mapa.surface
|
||||||
mapa.w=tonumber(editor.new_w)
|
mapa.w=tonumber(editor.new_w)
|
||||||
mapa.h=tonumber(editor.new_h)
|
mapa.h=tonumber(editor.new_h)
|
||||||
mapa.surface=newsurf(mapa.w,mapa.h)
|
mapa.surface=surf.new(mapa.w,mapa.h)
|
||||||
for y=0,mapa.h-1 do
|
for y=0,mapa.h-1 do
|
||||||
for x=0,mapa.w-1 do
|
for x=0,mapa.w-1 do
|
||||||
setmap(old_surface)
|
map.surf(old_surface)
|
||||||
local value=mget(x,y)
|
local value=map.tile(x,y)
|
||||||
setmap(mapa.surface)
|
map.surf(mapa.surface)
|
||||||
mset(x,y,value)
|
map.tile(x,y,value)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
freesurf(old_surface)
|
surf.free(old_surface)
|
||||||
setmap(mapa.surface)
|
map.surf(mapa.surface)
|
||||||
editor.paused=false
|
editor.paused=false
|
||||||
end,
|
end,
|
||||||
|
|
||||||
floodfill=function(x,y,tile)
|
floodfill=function(x,y,tile)
|
||||||
local t=mget(x,y)
|
local t=map.tile(x,y)
|
||||||
mset(x,y,tile)
|
map.tile(x,y,tile)
|
||||||
if x<mapa.w-1 and mget(x+1,y)==t then editor.floodfill(x+1,y,tile) end
|
if x<mapa.w-1 and map.tile(x+1,y)==t then editor.floodfill(x+1,y,tile) end
|
||||||
if x>0 and mget(x-1,y)==t then editor.floodfill(x-1,y,tile) end
|
if x>0 and map.tile(x-1,y)==t then editor.floodfill(x-1,y,tile) end
|
||||||
if y<mapa.h-1 and mget(x,y+1)==t then editor.floodfill(x,y+1,tile) end
|
if y<mapa.h-1 and map.tile(x,y+1)==t then editor.floodfill(x,y+1,tile) end
|
||||||
if y>0 and mget(x,y-1)==t then editor.floodfill(x,y-1,tile) end
|
if y>0 and map.tile(x,y-1)==t then editor.floodfill(x,y-1,tile) end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
create_stamp=function()
|
create_stamp=function()
|
||||||
@@ -102,8 +125,8 @@ editor={
|
|||||||
local p=1
|
local p=1
|
||||||
for y=1,h do
|
for y=1,h do
|
||||||
for x=1,w do
|
for x=1,w do
|
||||||
editor.brush.tiles[p]=mget(tx1+x-1,ty1+y-1)
|
editor.brush.tiles[p]=map.tile(tx1+x-1,ty1+y-1)
|
||||||
--mset(tx+x-1,ty+y-1,editor.brush.tiles[p])
|
--map.tile(tx+x-1,ty+y-1,editor.brush.tiles[p])
|
||||||
p=p+1
|
p=p+1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -115,7 +138,7 @@ editor={
|
|||||||
local p=1
|
local p=1
|
||||||
for y=1,h do
|
for y=1,h do
|
||||||
for x=1,w do
|
for x=1,w do
|
||||||
mset(tx+x-1,ty+y-1,editor.brush.tiles[p])
|
map.tile(tx+x-1,ty+y-1,editor.brush.tiles[p])
|
||||||
p=p+1
|
p=p+1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -126,57 +149,58 @@ editor={
|
|||||||
if dx>0 then
|
if dx>0 then
|
||||||
for y=0,h-1 do
|
for y=0,h-1 do
|
||||||
for x=w-1,1,-1 do
|
for x=w-1,1,-1 do
|
||||||
mset(x,y,mget(x-1,y))
|
map.tile(x,y,map.tile(x-1,y))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
elseif dx<0 then
|
elseif dx<0 then
|
||||||
for y=0,h-1 do
|
for y=0,h-1 do
|
||||||
for x=0,w-2 do
|
for x=0,w-2 do
|
||||||
mset(x,y,mget(x+1,y))
|
map.tile(x,y,map.tile(x+1,y))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
elseif dy>0 then
|
elseif dy>0 then
|
||||||
for y=h-1,1,-1 do
|
for y=h-1,1,-1 do
|
||||||
for x=0,w-1 do
|
for x=0,w-1 do
|
||||||
mset(x,y,mget(x,y-1))
|
map.tile(x,y,map.tile(x,y-1))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
elseif dy<0 then
|
elseif dy<0 then
|
||||||
for y=0,h-2 do
|
for y=0,h-2 do
|
||||||
for x=0,w-1 do
|
for x=0,w-1 do
|
||||||
mset(x,y,mget(x,y+1))
|
map.tile(x,y,map.tile(x,y+1))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
update=function()
|
update=function()
|
||||||
cls()
|
surf.cls()
|
||||||
camera(editor.cam.x, editor.cam.y)
|
view.origin(-editor.cam.x, -editor.cam.y)
|
||||||
setsource(tiles)
|
surf.source(tiles)
|
||||||
setmap(mapa.surface)
|
map.surf(mapa.surface)
|
||||||
map(0,0,0,0,mapa.w, mapa.h)
|
map.draw() --map(0,0,0,0,mapa.w, mapa.h)
|
||||||
if mapa.front_layer then
|
if mapa.front_layer then
|
||||||
setmap(mapa.front_layer)
|
map.surf(mapa.front_layer)
|
||||||
map(0,0,0,0,mapa.w, mapa.h)
|
map.draw() --map(0,0,0,0,mapa.w, mapa.h)
|
||||||
end
|
end
|
||||||
if editor.editing_front_layer then
|
if editor.editing_front_layer then
|
||||||
setmap(mapa.front_layer)
|
map.surf(mapa.front_layer)
|
||||||
text("EDITING FRONT LAYER",12,2,10)
|
text("EDITING FRONT LAYER",12,2,10)
|
||||||
else
|
else
|
||||||
setmap(mapa.surface)
|
map.surf(mapa.surface)
|
||||||
end
|
end
|
||||||
local mx,my=mousex()+editor.cam.x,mousey()+editor.cam.y
|
local mx,my=mouse.pos()
|
||||||
local tx,ty=mx>>3,my>>3
|
local tx,ty=(mx+editor.cam.x)>>3,(my+editor.cam.y)>>3
|
||||||
|
editor.cx, editor.cy = tx, ty
|
||||||
local rx,ry=tx<<3,ty<<3
|
local rx,ry=tx<<3,ty<<3
|
||||||
rect(rx-1, ry-1, rx+8, ry+8, 10)
|
draw.rect(rx-1, ry-1, 10, 10, 10)
|
||||||
if editor.selection then
|
if editor.selection then
|
||||||
local rx1,ry1,rx2,ry2=editor.selection.x1<<3,editor.selection.y1<<3,editor.selection.x2<<3,editor.selection.y2<<3
|
local rx1,ry1,rx2,ry2=editor.selection.x1<<3,editor.selection.y1<<3,editor.selection.x2<<3,editor.selection.y2<<3
|
||||||
if rx1>rx2 then rx1,rx2=rx2,rx1 end
|
if rx1>rx2 then rx1,rx2=rx2,rx1 end
|
||||||
if ry1>ry2 then ry1,ry2=ry2,ry1 end
|
if ry1>ry2 then ry1,ry2=ry2,ry1 end
|
||||||
rect(rx1-1, ry1-1, rx2+8, ry2+8, 8)
|
draw.rect(rx1-1, ry1-1, rx2-rx1+10, ry2-ry1+10, 8)
|
||||||
end
|
end
|
||||||
camera(0,0)
|
view.origin(0,0)
|
||||||
if tx>=0 and
|
if tx>=0 and
|
||||||
ty>=0 and
|
ty>=0 and
|
||||||
tx<mapa.w and
|
tx<mapa.w and
|
||||||
@@ -184,11 +208,11 @@ editor={
|
|||||||
text(tx..","..ty,2,2,8)
|
text(tx..","..ty,2,2,8)
|
||||||
end
|
end
|
||||||
if not editor.paused then
|
if not editor.paused then
|
||||||
if mbtn(1) then
|
if mouse.down(mouse.LEFT) then
|
||||||
editor.stamp(tx,ty)
|
editor.stamp(tx,ty)
|
||||||
--mset(tx,ty,editor.brush.tiles[1])
|
--map.tile(tx,ty,editor.brush.tiles[1])
|
||||||
end
|
end
|
||||||
if mbtn(3) then
|
if mouse.down(mouse.RIGHT) then
|
||||||
if editor.selection then
|
if editor.selection then
|
||||||
editor.selection.x2=tx
|
editor.selection.x2=tx
|
||||||
editor.selection.y2=ty
|
editor.selection.y2=ty
|
||||||
@@ -206,55 +230,55 @@ editor={
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if btn(KEY_LSHIFT) then
|
if key.down(key.LSHIFT) then
|
||||||
if btnp(KEY_RIGHT) then editor.displace(1,0) end
|
if key.press(key.RIGHT) then editor.displace(1,0) end
|
||||||
if btnp(KEY_LEFT) then editor.displace(-1,0) end
|
if key.press(key.LEFT) then editor.displace(-1,0) end
|
||||||
if btnp(KEY_UP) then editor.displace(0,-1) end
|
if key.press(key.UP) then editor.displace(0,-1) end
|
||||||
if btnp(KEY_DOWN) then editor.displace(0,1) end
|
if key.press(key.DOWN) then editor.displace(0,1) end
|
||||||
else
|
else
|
||||||
if btnp(KEY_RIGHT) then editor.cam.x=editor.cam.x+8 end
|
if key.press(key.RIGHT) then editor.cam.x=editor.cam.x+8 end
|
||||||
if btnp(KEY_LEFT) then editor.cam.x=editor.cam.x-8 end
|
if key.press(key.LEFT) then editor.cam.x=editor.cam.x-8 end
|
||||||
if btnp(KEY_UP) then editor.cam.y=editor.cam.y-8 end
|
if key.press(key.UP) then editor.cam.y=editor.cam.y-8 end
|
||||||
if btnp(KEY_DOWN) then editor.cam.y=editor.cam.y+8 end
|
if key.press(key.DOWN) then editor.cam.y=editor.cam.y+8 end
|
||||||
end
|
end
|
||||||
|
|
||||||
if btnp(KEY_F) then
|
if key.press(key.F) then
|
||||||
editor.floodfill(tx,ty,editor.brush.tiles[1])
|
editor.floodfill(tx,ty,editor.brush.tiles[1])
|
||||||
end
|
end
|
||||||
if btnp(KEY_1) then
|
if key.press(key.N1) then
|
||||||
if editor.editing_front_layer then
|
if editor.editing_front_layer then
|
||||||
editor.editing_front_layer=nil
|
editor.editing_front_layer=nil
|
||||||
else
|
else
|
||||||
editor.editing_front_layer=true
|
editor.editing_front_layer=true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if btnp(KEY_RETURN) then
|
if key.press(key.RETURN) then
|
||||||
editor.brush.tiles[1]=mget(tx,ty)
|
editor.brush.tiles[1]=map.tile(tx,ty)
|
||||||
end
|
end
|
||||||
if btnp(KEY_ESCAPE) then
|
if key.press(key.ESCAPE) then
|
||||||
editor.paused=true
|
editor.paused=true
|
||||||
editor.show_menu()
|
editor.show_menu()
|
||||||
end
|
end
|
||||||
if btnp(KEY_TAB) then
|
if key.press(key.TAB) then
|
||||||
update=editor.update_tileset
|
update=editor.update_tileset
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
update_tileset=function()
|
update_tileset=function()
|
||||||
cls()
|
surf.cls()
|
||||||
sspr(0,0,128,128,0,0)
|
draw.surf(0,0,128,128,0,0)
|
||||||
|
|
||||||
local mx,my=mousex(),mousey()
|
local mx,my=mouse.pos()
|
||||||
local tx,ty=mx>>3,my>>3
|
local tx,ty=mx>>3,my>>3
|
||||||
local rx,ry=tx<<3,ty<<3
|
local rx,ry=tx<<3,ty<<3
|
||||||
rect(rx-1, ry-1, rx+8, ry+8, 10)
|
draw.rect(rx-1, ry-1, 10, 10, 10)
|
||||||
|
|
||||||
if btnp(KEY_TAB) or btnp(KEY_ESCAPE) then
|
if key.press(key.TAB) or key.press(key.ESCAPE) then
|
||||||
update=editor.update
|
update=editor.update
|
||||||
end
|
end
|
||||||
|
|
||||||
if mbtnp(1) then
|
if mouse.press(mouse.LEFT) then
|
||||||
if tx<16 and ty<16 then
|
if tx<16 and ty<16 then
|
||||||
editor.brush.w=1
|
editor.brush.w=1
|
||||||
editor.brush.h=1
|
editor.brush.h=1
|
||||||
@@ -280,5 +304,7 @@ editor={
|
|||||||
mapa.load(filename)
|
mapa.load(filename)
|
||||||
editor.editing_front_layer=nil
|
editor.editing_front_layer=nil
|
||||||
editor.paused=false
|
editor.paused=false
|
||||||
|
editor.cam.x=0
|
||||||
|
editor.cam.y=0
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|||||||
45
data/eui.map
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
86
|
||||||
|
42
|
||||||
|
1
|
||||||
|
41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,43,
|
||||||
|
32,144,144,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,144,144,34,
|
||||||
|
32,137,137,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,137,137,34,
|
||||||
|
32,192,137,137,137,137,179,180,137,137,181,193,194,137,137,137,137,137,192,137,181,161,162,137,137,137,137,137,137,137,181,161,162,137,137,137,137,137,179,180,137,181,161,162,137,137,137,137,137,137,137,137,137,161,162,181,137,137,137,137,192,137,137,161,162,181,137,137,137,137,137,137,137,161,162,181,137,179,180,137,137,137,137,137,192,34,
|
||||||
|
32,208,141,143,142,153,153,153,153,153,153,209,210,153,153,73,74,75,208,153,153,177,178,153,153,73,74,75,153,153,153,177,178,153,153,73,74,75,153,153,153,153,177,178,153,153,153,73,74,75,153,153,153,177,178,153,153,73,74,75,208,153,153,177,178,153,153,73,74,75,153,153,153,177,178,153,153,153,153,153,141,143,142,153,208,34,
|
||||||
|
32,224,174,159,175,16,16,16,16,16,16,16,16,16,16,19,20,21,224,16,16,16,16,16,16,19,20,21,16,16,16,16,16,16,16,19,20,21,16,16,16,16,16,16,16,16,16,19,20,21,16,16,16,16,16,16,16,19,20,21,224,16,16,16,16,16,16,19,20,21,16,16,16,16,16,16,16,16,16,16,174,159,175,16,224,34,
|
||||||
|
32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,
|
||||||
|
32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,
|
||||||
|
32,246,16,16,16,16,245,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,246,16,16,16,16,245,34,
|
||||||
|
32,196,17,17,17,17,196,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,196,17,17,17,17,196,34,
|
||||||
|
32,196,17,17,17,17,196,100,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,101,196,17,17,17,17,196,34,
|
||||||
|
32,196,17,17,17,17,196,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,196,17,17,17,17,196,34,
|
||||||
|
32,196,18,18,18,18,196,116,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,117,196,18,18,18,18,196,34,
|
||||||
|
32,196,18,18,18,18,196,144,144,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,144,144,196,18,18,18,18,196,34,
|
||||||
|
32,196,17,17,17,17,196,137,137,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,137,137,196,17,17,17,17,196,34,
|
||||||
|
32,198,17,17,17,17,198,137,137,137,137,137,137,137,137,137,137,161,162,181,137,137,137,137,137,137,137,179,180,161,162,181,137,137,137,137,137,137,137,225,226,192,137,137,192,241,242,137,137,111,124,137,137,137,181,161,162,137,137,137,137,137,137,192,137,137,181,161,162,179,180,137,137,137,137,137,137,137,137,198,17,17,17,17,198,34,
|
||||||
|
32,214,17,17,17,17,214,153,153,73,74,75,153,153,153,160,153,177,178,153,153,153,153,73,74,75,153,153,153,177,178,153,153,153,153,153,153,153,153,177,178,208,153,153,208,177,178,153,153,127,140,160,153,153,153,177,178,153,153,153,73,74,75,208,153,153,153,177,178,153,153,153,73,74,75,153,153,153,153,214,17,17,17,17,214,34,
|
||||||
|
32,230,16,16,16,16,230,16,16,19,20,21,16,16,16,176,16,16,16,16,16,16,16,19,20,21,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,224,16,16,224,16,16,16,16,189,190,176,16,16,16,16,16,16,16,16,19,20,21,224,16,16,16,16,16,16,16,16,19,20,21,16,16,16,16,230,16,16,16,16,230,34,
|
||||||
|
32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,
|
||||||
|
32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,
|
||||||
|
32,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,246,16,16,16,16,245,246,16,16,16,16,245,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,244,244,244,228,34,
|
||||||
|
32,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,196,17,17,17,17,196,196,17,17,17,17,196,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,213,213,213,229,34,
|
||||||
|
148,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,196,17,17,17,17,196,196,17,17,17,17,196,100,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,149,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,196,17,17,17,17,196,196,17,17,17,17,196,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,196,18,18,18,18,196,196,18,18,18,18,196,116,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,43,
|
||||||
|
32,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,183,184,144,144,196,18,18,18,18,196,196,18,18,18,18,196,183,184,183,184,183,184,144,144,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,183,184,144,144,144,144,144,144,144,144,34,
|
||||||
|
32,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,145,146,137,137,196,17,17,17,17,196,196,17,17,17,17,196,145,146,145,146,145,146,137,137,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,145,146,137,137,137,137,137,137,137,137,34,
|
||||||
|
32,192,137,137,137,137,137,137,137,161,162,181,137,137,137,137,179,180,137,161,162,181,137,137,137,137,137,137,137,241,242,137,137,225,226,137,137,198,17,17,17,17,197,197,17,17,17,17,198,185,186,187,188,185,186,179,180,137,137,137,137,137,137,137,181,161,162,137,137,137,137,137,137,137,181,161,162,179,180,137,137,137,137,137,192,34,
|
||||||
|
32,208,73,74,75,153,153,153,160,177,178,153,153,73,74,75,153,153,153,177,178,153,153,73,74,75,153,153,153,177,178,153,160,177,178,153,153,214,17,17,17,17,213,213,17,17,17,17,214,153,153,153,153,153,153,153,153,153,73,74,75,153,153,153,153,177,178,153,153,73,74,75,153,153,153,177,178,153,153,73,74,75,153,153,208,34,
|
||||||
|
32,224,19,20,21,16,16,16,176,16,16,16,16,19,20,21,16,16,16,16,16,16,16,19,20,21,16,16,16,16,16,16,176,16,16,16,16,230,16,16,16,16,16,16,16,16,16,16,230,16,16,16,16,16,16,16,16,16,19,20,21,16,16,16,16,16,16,16,16,19,20,21,16,16,16,16,16,16,16,19,20,21,16,16,224,34,
|
||||||
|
32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,
|
||||||
|
32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,
|
||||||
|
148,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,101,16,16,16,16,29,30,16,16,16,16,29,30,16,16,16,16,100,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,149,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,16,16,16,16,132,133,16,16,16,16,132,133,16,16,16,16,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,16,16,16,16,132,133,16,16,16,16,132,133,16,16,16,16,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,16,16,16,16,132,133,16,16,16,16,132,133,16,16,16,16,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,16,16,16,16,132,133,16,16,16,16,132,133,16,16,16,16,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,16,16,16,16,174,175,16,16,16,16,174,175,16,16,16,16,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,48,49,49,49,49,64,16,16,16,16,16,16,65,49,49,49,49,50,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
56
data/exterior.map
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
63
|
||||||
|
53
|
||||||
|
1
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,43,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,232,233,196,232,233,232,233,232,233,232,233,196,232,233,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,117,49,49,196,49,49,49,49,49,49,49,49,196,49,49,116,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,43,33,
|
||||||
|
32,137,137,196,137,137,137,137,137,137,196,137,137,137,137,137,137,196,137,137,137,137,137,152,232,233,196,232,233,232,233,232,233,232,233,196,232,233,138,137,137,137,137,137,196,137,137,137,137,137,137,196,137,137,137,137,137,137,196,137,137,34,33,
|
||||||
|
32,137,137,196,137,137,137,137,137,137,196,137,137,137,137,137,137,196,137,137,137,137,137,152,231,231,196,231,231,231,0,0,231,231,231,196,231,231,138,137,137,137,137,137,196,137,137,137,137,137,137,196,137,137,137,137,137,137,196,137,137,34,33,
|
||||||
|
32,137,137,196,137,137,231,231,137,137,196,137,137,231,231,137,137,196,137,137,231,231,137,152,247,247,196,247,247,247,0,0,247,247,247,196,247,247,138,137,231,231,137,137,196,137,137,231,231,137,137,196,137,137,231,231,137,137,196,137,137,34,33,
|
||||||
|
32,137,137,196,137,137,247,247,137,137,196,137,137,247,247,137,137,196,137,137,247,247,137,152,22,22,22,22,22,22,22,22,22,22,22,22,22,22,138,137,247,247,137,137,196,137,137,247,247,137,137,196,137,137,247,247,137,137,196,137,137,34,33,
|
||||||
|
32,213,213,196,213,213,213,213,213,213,196,213,213,213,213,213,213,196,213,213,213,213,213,213,22,22,22,22,22,22,22,22,22,22,22,22,22,22,213,213,213,213,213,213,196,213,213,213,213,213,213,196,213,213,213,213,213,213,196,213,213,34,33,
|
||||||
|
32,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,22,22,22,22,22,22,252,253,22,22,22,22,239,22,239,22,239,22,252,253,22,22,22,22,22,22,22,22,252,253,22,239,22,239,22,239,22,22,22,22,252,253,22,22,22,22,22,22,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,22,22,22,22,22,22,222,223,22,22,22,22,255,22,255,22,255,22,222,223,22,22,22,22,22,22,22,22,222,223,22,255,22,255,22,255,22,22,22,22,222,223,22,22,22,22,22,22,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,27,28,22,22,23,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,23,22,22,27,28,22,22,34,33,
|
||||||
|
32,22,22,236,237,22,22,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,22,22,236,237,22,22,34,33,
|
||||||
|
32,22,22,252,253,22,22,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,22,22,252,253,22,22,34,33,
|
||||||
|
32,22,22,222,223,22,22,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,22,22,222,223,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,27,28,22,22,23,24,24,24,24,24,24,24,24,23,22,22,27,28,22,22,100,102,102,102,102,102,102,102,102,102,102,102,102,102,102,101,22,22,27,28,22,22,23,24,24,24,24,24,24,24,24,23,22,22,27,28,22,22,34,33,
|
||||||
|
32,22,22,236,237,22,22,23,24,24,24,24,24,24,24,24,23,22,22,236,237,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,236,237,22,22,23,24,24,24,24,24,24,24,24,23,22,22,236,237,22,22,34,33,
|
||||||
|
32,22,22,252,253,22,22,23,24,24,24,24,24,24,24,24,23,22,22,252,253,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,252,253,22,22,23,24,24,24,24,24,24,24,24,23,22,22,252,253,22,22,34,33,
|
||||||
|
32,22,22,222,223,22,22,23,24,24,24,24,24,24,24,24,23,22,22,222,223,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,222,223,22,22,23,24,24,24,24,24,24,24,24,23,22,22,222,223,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,27,28,22,22,23,24,24,24,24,24,24,24,24,23,22,22,27,28,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,27,28,22,22,23,24,24,24,24,24,24,24,24,23,22,22,27,28,22,22,34,33,
|
||||||
|
32,22,22,236,237,22,22,23,24,24,24,24,24,24,24,24,23,22,22,236,237,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,236,237,22,22,23,24,24,24,24,24,24,24,24,23,22,22,236,237,22,22,34,33,
|
||||||
|
32,22,22,252,253,22,22,23,24,24,24,24,24,24,24,24,23,22,22,252,253,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,252,253,22,22,23,24,24,24,24,24,24,24,24,23,22,22,252,253,22,22,34,33,
|
||||||
|
32,22,22,222,223,22,22,23,24,24,24,24,24,24,24,24,23,22,22,222,223,22,22,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,22,22,222,223,22,22,23,24,24,24,24,24,24,24,24,23,22,22,222,223,22,22,116,42,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,116,42,42,42,42,42,42,42,42,42,42,42,42,42,42,117,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,55,56,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,196,232,233,232,233,232,233,232,233,232,233,232,233,232,233,196,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,55,56,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,196,232,233,232,233,232,233,232,233,232,233,232,233,232,233,196,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,55,56,
|
||||||
|
32,22,22,27,28,22,22,23,24,24,24,24,24,24,24,24,23,22,22,27,28,22,22,196,213,213,229,213,213,229,213,213,229,213,213,229,213,213,196,22,22,27,28,22,22,23,24,24,24,24,24,24,24,24,23,22,22,27,28,22,22,71,72,
|
||||||
|
32,22,22,236,237,22,22,23,24,24,24,24,24,24,24,24,23,22,22,236,237,22,22,196,213,213,229,213,213,231,0,0,231,213,213,229,213,213,196,22,22,236,237,22,22,23,24,24,24,24,24,24,24,24,23,22,22,236,237,22,22,22,22,
|
||||||
|
32,22,22,252,253,22,22,23,24,24,24,24,24,24,24,24,23,22,22,252,253,22,22,196,182,182,182,182,182,247,0,0,247,182,182,182,182,182,196,22,22,252,253,22,22,23,24,24,24,24,24,24,24,24,23,22,22,252,253,22,22,22,22,
|
||||||
|
32,22,22,222,223,22,22,23,24,24,24,24,24,24,24,24,23,22,22,222,223,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,222,223,22,22,23,24,24,24,24,24,24,24,24,23,22,22,222,223,22,22,22,22,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,100,102,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,239,22,239,22,239,22,239,22,22,22,22,22,22,22,22,22,22,22,22,22,22,239,22,239,22,239,22,239,23,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,23,255,22,255,22,255,22,255,22,22,22,22,22,22,22,22,22,22,22,22,22,22,255,22,255,22,255,22,255,23,24,24,24,24,24,24,24,24,23,239,22,22,22,22,22,34,33,
|
||||||
|
32,22,22,27,28,22,22,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24,24,24,24,24,24,24,24,23,255,22,27,28,22,22,34,33,
|
||||||
|
32,22,22,236,237,22,22,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,22,22,236,237,22,22,34,33,
|
||||||
|
32,22,22,252,253,22,22,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,239,22,252,253,22,22,34,33,
|
||||||
|
32,22,22,222,223,22,22,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,255,22,222,223,22,22,116,42,
|
||||||
|
32,22,22,22,22,22,22,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,22,22,22,22,22,22,55,56,
|
||||||
|
32,22,22,22,22,22,22,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,22,22,22,22,22,55,56,
|
||||||
|
32,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,22,22,27,28,22,22,22,22,22,22,22,55,56,
|
||||||
|
32,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,22,22,236,237,22,22,22,22,22,22,22,71,72,
|
||||||
|
32,22,22,22,22,22,22,22,252,253,22,22,22,22,22,22,22,22,22,252,253,22,22,22,22,22,22,22,22,22,252,253,22,22,22,22,22,22,22,22,22,252,253,22,22,22,22,22,22,22,22,22,252,253,22,22,22,22,22,22,22,22,22,
|
||||||
|
32,22,22,22,22,22,22,22,222,223,22,22,22,22,22,22,22,22,22,222,223,22,22,22,22,22,22,22,22,22,222,223,22,22,22,22,22,22,22,22,22,222,223,22,22,22,22,22,22,22,22,22,222,223,22,22,22,22,22,22,22,22,22,
|
||||||
|
32,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,
|
||||||
|
148,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,
|
||||||
@@ -9,7 +9,7 @@ fade={
|
|||||||
|
|
||||||
init = function()
|
init = function()
|
||||||
for i=1,16 do
|
for i=1,16 do
|
||||||
local r,g,b=getcolor(i)
|
local r,g,b=pal.color(i)
|
||||||
fade.pal[i]={r,g,b}
|
fade.pal[i]={r,g,b}
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
@@ -38,13 +38,13 @@ fade={
|
|||||||
end,
|
end,
|
||||||
|
|
||||||
update_fadeout=function()
|
update_fadeout=function()
|
||||||
if beat() then
|
if sys.beat() then
|
||||||
for i=1,16 do
|
for i=1,16 do
|
||||||
local v=fade.getstep(i,fade.step)
|
local v=fade.getstep(i,fade.step)
|
||||||
if v==0 then
|
if v==0 then
|
||||||
setcolor(i,0,0,0)
|
pal.color(i,0,0,0)
|
||||||
else
|
else
|
||||||
setcolor(i,fade.pal[v][1],fade.pal[v][2],fade.pal[v][3])
|
pal.color(i,fade.pal[v][1],fade.pal[v][2],fade.pal[v][3])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
fade.step=fade.step+1
|
fade.step=fade.step+1
|
||||||
@@ -66,19 +66,19 @@ fade={
|
|||||||
fade.old_update=update
|
fade.old_update=update
|
||||||
update=fade.update_fadein
|
update=fade.update_fadein
|
||||||
fade.step=6
|
fade.step=6
|
||||||
for i=1,16 do setcolor(i,0,0,0) end
|
for i=1,16 do pal.color(i,0,0,0) end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
update_fadein=function()
|
update_fadein=function()
|
||||||
fade.old_update()
|
fade.old_update()
|
||||||
|
|
||||||
if beat() then
|
if sys.beat() then
|
||||||
for i=1,16 do
|
for i=1,16 do
|
||||||
local v=fade.getstep(i,fade.step)
|
local v=fade.getstep(i,fade.step)
|
||||||
if v==0 then
|
if v==0 then
|
||||||
setcolor(i,0,0,0)
|
pal.color(i,0,0,0)
|
||||||
else
|
else
|
||||||
setcolor(i,fade.pal[v][1],fade.pal[v][2],fade.pal[v][3])
|
pal.color(i,fade.pal[v][1],fade.pal[v][2],fade.pal[v][3])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
fade.step=fade.step-1
|
fade.step=fade.step-1
|
||||||
|
|||||||
78
data/fileselect.lua
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
fileselect={
|
||||||
|
file_list={},
|
||||||
|
selected=1,
|
||||||
|
title=nil,
|
||||||
|
old_update=nil,
|
||||||
|
return_function=nil,
|
||||||
|
old_mx=-1, old_my=-1,
|
||||||
|
|
||||||
|
show=function(title, retfun, extension)
|
||||||
|
fileselect.file_list = {}
|
||||||
|
for dir in io.popen([[ls data | grep ]] .. extension):lines() do
|
||||||
|
fileselect.file_list[#fileselect.file_list+1] = dir
|
||||||
|
end
|
||||||
|
fileselect.selected=1
|
||||||
|
fileselect.title=title
|
||||||
|
fileselect.old_update=update
|
||||||
|
update=fileselect.update
|
||||||
|
fileselect.return_function=retfun
|
||||||
|
if fileselect.value==nil then fileselect.value="" end
|
||||||
|
end,
|
||||||
|
|
||||||
|
update=function()
|
||||||
|
draw.rectf(10,10, 140, 120,5)
|
||||||
|
draw.rect(10,10, 140, 120,8)
|
||||||
|
if fileselect.title then draw.text(fileselect.title,20,13,8) end
|
||||||
|
draw.rectf(20,20, 120, 100,6)
|
||||||
|
local i = 22
|
||||||
|
for k,dir in pairs(fileselect.file_list) do
|
||||||
|
local color=8
|
||||||
|
if k==fileselect.selected then
|
||||||
|
draw.rectf(20,i-1, 120, 8,11)
|
||||||
|
color=15
|
||||||
|
end
|
||||||
|
draw.text(dir, 23, i, color)
|
||||||
|
i=i+7
|
||||||
|
end
|
||||||
|
draw.rect(20,20, 120, 100,8)
|
||||||
|
|
||||||
|
local mx,my=mouse.pos()
|
||||||
|
if (mx~=fileselect.old_mx or my~=fileselect.old_my) then
|
||||||
|
fileselect.old_mx,fileselect.old_my=mx,my
|
||||||
|
if mx>20 and mx<140 and my>20 and my<120 then
|
||||||
|
local y = math.floor((my-21)/7)+1
|
||||||
|
if (y<=#fileselect.file_list) then
|
||||||
|
fileselect.selected = y
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if mouse.press(mouse.LEFT) then
|
||||||
|
if mx>20 and mx<140 and my>20 and my<120 then
|
||||||
|
local y = math.floor((my-21)/7)+1
|
||||||
|
if (y<=#fileselect.file_list) then
|
||||||
|
fileselect.selected = y
|
||||||
|
update=fileselect.old_update
|
||||||
|
fileselect.return_function(fileselect.file_list[fileselect.selected])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
-- if textbox.value then
|
||||||
|
-- draw.text(textbox.value,43,73)
|
||||||
|
-- if (math.floor(time()*4)%2)==0 then
|
||||||
|
-- draw.text("_",43+#textbox.value*4,73)
|
||||||
|
-- end
|
||||||
|
-- end
|
||||||
|
--
|
||||||
|
local tecla=key.press()
|
||||||
|
if tecla==key.DOWN then
|
||||||
|
if fileselect.selected < #fileselect.file_list then fileselect.selected = fileselect.selected + 1 end
|
||||||
|
elseif tecla==key.UP then
|
||||||
|
if fileselect.selected > 1 then fileselect.selected = fileselect.selected - 1 end
|
||||||
|
-- elseif tecla==KEY_BACKSPACE then
|
||||||
|
-- textbox.value=string.sub(textbox.value,1,-2)
|
||||||
|
elseif tecla==key.RETURN then
|
||||||
|
update=fileselect.old_update
|
||||||
|
fileselect.return_function(fileselect.file_list[fileselect.selected])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
}
|
||||||
@@ -3,4 +3,3 @@ config=ja2
|
|||||||
width=160
|
width=160
|
||||||
height=144
|
height=144
|
||||||
zoom=4
|
zoom=4
|
||||||
files=fade.lua,objects.lua,wait.lua,switches.lua,scene.lua,balloon.lua,actors.lua,game.lua,mapa.lua,editor.lua,textbox.lua,menu.lua,m_arq.lua,m_prac3.lua,m_prac2.lua,m_prac1.lua,m_jail1.lua,main.lua
|
|
||||||
|
|||||||
124
data/game.lua
@@ -4,6 +4,7 @@ require "objects"
|
|||||||
require "scene"
|
require "scene"
|
||||||
require "wait"
|
require "wait"
|
||||||
require "switches"
|
require "switches"
|
||||||
|
require "brymode"
|
||||||
|
|
||||||
levels={}
|
levels={}
|
||||||
|
|
||||||
@@ -13,14 +14,29 @@ require "m_prac1"
|
|||||||
require "m_prac2"
|
require "m_prac2"
|
||||||
require "m_prac3"
|
require "m_prac3"
|
||||||
require "m_repro"
|
require "m_repro"
|
||||||
|
require "m_vella"
|
||||||
|
require "m_exterior"
|
||||||
|
require "m_eui"
|
||||||
|
|
||||||
game={
|
game={
|
||||||
cam={x=0,y=0},
|
cam={x=0,y=0},
|
||||||
|
|
||||||
restart=function()
|
restart=function()
|
||||||
flags={}
|
flags={}
|
||||||
objects.list={}
|
objects.list={}
|
||||||
actors.main={name="jailer",x=9,y=14,o="u",gfx={x=32,y=0},level="repro"}
|
--actors.main={name="jailer",x=43,y=25,o="u",gfx={x=32,y=0},level="vella"}
|
||||||
game.init("repro")
|
--game.init("vella")
|
||||||
|
actors.main={name="jailer",x=12,y=12,o="r",jailmoji="AHDJONAAAAFAACFBBO",level="arq"}
|
||||||
|
game.init("arq")
|
||||||
|
end,
|
||||||
|
|
||||||
|
startfromeditor=function(s_level, s_x, s_y)
|
||||||
|
flags={}
|
||||||
|
objects.list={}
|
||||||
|
actors.main={name="jailer",x=s_x,y=s_y,o="d",jailmoji="AHDJONAAAAFAACFBBO",level=s_level}
|
||||||
|
game.init(s_level)
|
||||||
|
--actors.main={name="jailer",x=8,y=12,o="l",gfx={x=32,y=0},level="arq"}
|
||||||
|
--game.init("arq")
|
||||||
end,
|
end,
|
||||||
|
|
||||||
init=function(levelname,f,objs)
|
init=function(levelname,f,objs)
|
||||||
@@ -30,32 +46,47 @@ game={
|
|||||||
|
|
||||||
game.level=levelname
|
game.level=levelname
|
||||||
actors.init()
|
actors.init()
|
||||||
|
switches.reset()
|
||||||
if actors.main.level==levelname then
|
if actors.main.level==levelname then
|
||||||
actors.add({name=actors.main.name,x=actors.main.x,y=actors.main.y,o=actors.main.o,gfx=actors.main.gfx})
|
actors.add({name=actors.main.name,x=actors.main.x,y=actors.main.y,o=actors.main.o,jailmoji=actors.main.jailmoji})
|
||||||
end
|
end
|
||||||
|
|
||||||
levels[game.level].load()
|
levels[game.level].load()
|
||||||
|
|
||||||
if game.paused then
|
if not game.paused then
|
||||||
game.resume()
|
|
||||||
else
|
|
||||||
update=game.update
|
update=game.update
|
||||||
end
|
end
|
||||||
|
game.resume()
|
||||||
actors.sort()
|
actors.sort()
|
||||||
|
if levels[game.level].init_scene then
|
||||||
|
if not flags.escena_inicial then
|
||||||
|
game.update()
|
||||||
|
levels[game.level].init_scene()
|
||||||
|
end
|
||||||
|
end
|
||||||
fade.fadein()
|
fade.fadein()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
show_menu=function()
|
show_menu=function()
|
||||||
game.pause()
|
game.pause()
|
||||||
|
--brymode.show(game.resume)
|
||||||
menu.show({ {"GUARDAR PARTIDA", game.save},
|
menu.show({ {"GUARDAR PARTIDA", game.save},
|
||||||
{"CARREGAR PARTIDA", game.load},
|
{"CARREGAR PARTIDA", game.load},
|
||||||
{"EIXIR", main_init},
|
{"EIXIR", main_init},
|
||||||
}, game.resume)
|
}, game.resume)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
show_debug_menu=function()
|
||||||
|
game.pause()
|
||||||
|
menu.show({ {"EDIT FROM HERE", editor.editfrom},
|
||||||
|
{"CARREGAR PARTIDA", game.load},
|
||||||
|
{"EIXIR", main_init},
|
||||||
|
}, game.resume)
|
||||||
|
end,
|
||||||
|
|
||||||
save=function()
|
save=function()
|
||||||
local i=1
|
local i=1
|
||||||
file = io.open(configfolder().."slot"..i..".txt", "w")
|
file = io.open(config.folder().."slot"..i..".txt", "w")
|
||||||
if file then
|
if file then
|
||||||
io.output(file)
|
io.output(file)
|
||||||
io.write("level="..game.level.."\n")
|
io.write("level="..game.level.."\n")
|
||||||
@@ -78,7 +109,7 @@ game={
|
|||||||
|
|
||||||
load=function()
|
load=function()
|
||||||
local i=1
|
local i=1
|
||||||
file = io.open(configfolder().."slot"..i..".txt", "r")
|
file = io.open(config.folder().."slot"..i..".txt", "r")
|
||||||
local level_name = ""
|
local level_name = ""
|
||||||
local new_flags={}
|
local new_flags={}
|
||||||
local new_objects={}
|
local new_objects={}
|
||||||
@@ -89,7 +120,7 @@ game={
|
|||||||
local k,v=getkeyval(io.read()) actors.main.x=tonumber(v)
|
local k,v=getkeyval(io.read()) actors.main.x=tonumber(v)
|
||||||
local k,v=getkeyval(io.read()) actors.main.y=tonumber(v)
|
local k,v=getkeyval(io.read()) actors.main.y=tonumber(v)
|
||||||
local k,v=getkeyval(io.read()) actors.main.o=v
|
local k,v=getkeyval(io.read()) actors.main.o=v
|
||||||
io.read() -- ignore "[FLAGS]" line
|
local ignore = io.read() -- ignore "[FLAGS]" line
|
||||||
local line = io.read()
|
local line = io.read()
|
||||||
while line ~= "[OBJECTS]" do
|
while line ~= "[OBJECTS]" do
|
||||||
local k,v=getkeyval(line)
|
local k,v=getkeyval(line)
|
||||||
@@ -111,6 +142,36 @@ game={
|
|||||||
game.init(level_name,new_flags,new_objects)
|
game.init(level_name,new_flags,new_objects)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
draw=function()
|
||||||
|
surf.cls(6)
|
||||||
|
view.origin(-game.cam.x, -game.cam.y)
|
||||||
|
surf.source(tiles)
|
||||||
|
map.surf(mapa.surface)
|
||||||
|
map.draw()--map(0,0,0,0,mapa.w, mapa.h)
|
||||||
|
switches.draw();
|
||||||
|
surf.source(sprites)
|
||||||
|
if key.down(key.LSHIFT) then pal.subpal(1,16,8) end
|
||||||
|
actors.display()
|
||||||
|
pal.subpal()
|
||||||
|
local mx,my=mouse.pos()
|
||||||
|
if actors.under_cursor~="" then
|
||||||
|
if (mx<=80) then
|
||||||
|
text(actors.under_cursor,mx+game.cam.x+4,my+game.cam.y+4,9)
|
||||||
|
else
|
||||||
|
local size = #actors.under_cursor
|
||||||
|
text(actors.under_cursor,mx+game.cam.x-size*4,my+game.cam.y+4,9)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if mapa.front_layer then
|
||||||
|
surf.source(tiles)
|
||||||
|
map.surf(mapa.front_layer)
|
||||||
|
map.draw() -- map(0,0,0,0,mapa.w, mapa.h)
|
||||||
|
end
|
||||||
|
map.surf(mapa.surface)
|
||||||
|
view.origin(0,0)
|
||||||
|
for i=0,15 do draw.rectf(20+i*4,0,4,4,i) end
|
||||||
|
end,
|
||||||
|
|
||||||
update=function()
|
update=function()
|
||||||
if game.paused then return end
|
if game.paused then return end
|
||||||
|
|
||||||
@@ -123,20 +184,11 @@ game={
|
|||||||
if game.cam.y+144 > mapa.h*8 then game.cam.y = mapa.h*8-144 end
|
if game.cam.y+144 > mapa.h*8 then game.cam.y = mapa.h*8-144 end
|
||||||
if game.cam.y < 0 then game.cam.y=0 end
|
if game.cam.y < 0 then game.cam.y=0 end
|
||||||
end
|
end
|
||||||
cls(6)
|
|
||||||
camera(game.cam.x, game.cam.y)
|
game.draw()
|
||||||
setsource(tiles)
|
|
||||||
setmap(mapa.surface)
|
local mx,my=mouse.pos()
|
||||||
map(0,0,0,0,mapa.w, mapa.h)
|
text(math.floor((mx+game.cam.x)/8)..","..math.floor((my+game.cam.y)/8),1,19,8)
|
||||||
setsource(sprites)
|
|
||||||
actors.draw()
|
|
||||||
if mapa.front_layer then
|
|
||||||
setsource(tiles)
|
|
||||||
setmap(mapa.front_layer)
|
|
||||||
map(0,0,0,0,mapa.w, mapa.h)
|
|
||||||
end
|
|
||||||
setmap(mapa.surface)
|
|
||||||
camera(0,0)
|
|
||||||
|
|
||||||
text(game.cam.x..","..game.cam.y,1,1,8)
|
text(game.cam.x..","..game.cam.y,1,1,8)
|
||||||
if hero then
|
if hero then
|
||||||
@@ -145,37 +197,39 @@ game={
|
|||||||
text(game.level,1,13,8)
|
text(game.level,1,13,8)
|
||||||
|
|
||||||
if not scene.script and hero and not hero.path and hero.dx+hero.dy==0 then
|
if not scene.script and hero and not hero.path and hero.dx+hero.dy==0 then
|
||||||
if btn(KEY_DOWN) then
|
if key.down(key.DOWN) then
|
||||||
hero.path={pos=0,route='d',keys=true}
|
hero.path={pos=0,route='d',keys=true}
|
||||||
elseif btn(KEY_UP) then
|
elseif key.down(key.UP) then
|
||||||
hero.path={pos=0,route='u',keys=true}
|
hero.path={pos=0,route='u',keys=true}
|
||||||
elseif btn(KEY_LEFT) then
|
elseif key.down(key.LEFT) then
|
||||||
hero.path={pos=0,route='l',keys=true}
|
hero.path={pos=0,route='l',keys=true}
|
||||||
elseif btn(KEY_RIGHT) then
|
elseif key.down(key.RIGHT) then
|
||||||
hero.path={pos=0,route='r',keys=true}
|
hero.path={pos=0,route='r',keys=true}
|
||||||
elseif btnp(KEY_SPACE) then
|
elseif key.press(key.SPACE) then
|
||||||
actors.interact(hero.x,hero.y,hero.o)
|
actors.interact(hero.x,hero.y,hero.o)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if btnp(KEY_ESCAPE) then
|
if key.press(key.ESCAPE) then
|
||||||
game.show_menu()
|
game.show_menu()
|
||||||
|
elseif key.press(key.TAB) then
|
||||||
|
game.show_debug_menu()
|
||||||
end
|
end
|
||||||
|
|
||||||
if beat() then actors.update() end
|
if sys.beat() then actors.update() end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
pause=function()
|
pause=function()
|
||||||
game.paused = true
|
game.paused = true
|
||||||
rectfill(9,84, 150, 128,6)
|
draw.rectf(9,84, 141, 44,6)
|
||||||
rect(9,84, 150, 128,8)
|
draw.rect(9,84, 141, 44,8)
|
||||||
rect(8,83, 151, 129,6)
|
draw.rect(8,83, 143, 46,6)
|
||||||
text("OBJECTES:",14,82,8)
|
text("OBJECTES:",14,82,8)
|
||||||
setsource(objectes)
|
surf.source(objectes)
|
||||||
|
|
||||||
local x,y=15,90
|
local x,y=15,90
|
||||||
for i,name in ipairs(objects.list) do
|
for i,name in ipairs(objects.list) do
|
||||||
local obj = object[name]
|
local obj = object[name]
|
||||||
sspr(obj.x,obj.y,16,16,x,y)
|
draw.surf(obj.x,obj.y,16,16,x,y)
|
||||||
x=x+19
|
x=x+19
|
||||||
if x==148 then x,y=15,y+19 end
|
if x==148 then x,y=15,y+19 end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
30
|
30
|
||||||
18
|
18
|
||||||
1
|
1
|
||||||
17,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,
|
33,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,43,
|
||||||
17,16,23,24,23,24,23,24,23,24,23,24,23,24,23,24,23,24,30,23,24,23,24,23,24,23,24,23,24,18,
|
33,32,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,46,39,40,39,40,39,40,39,40,39,40,34,
|
||||||
17,16,39,40,39,40,39,40,39,40,39,40,39,40,39,40,39,40,46,39,40,39,40,39,40,39,40,39,40,18,
|
33,32,55,56,55,56,55,56,55,56,55,56,55,56,55,56,55,56,62,55,56,55,56,55,56,55,56,55,56,34,
|
||||||
17,16,55,56,55,56,55,56,55,56,55,56,55,56,55,56,55,56,62,55,56,55,56,55,56,55,56,55,56,18,
|
33,32,71,72,71,72,71,72,71,72,71,72,71,72,71,72,71,72,78,71,72,71,72,71,72,71,72,71,72,34,
|
||||||
17,16,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,60,5,2,5,2,5,2,5,2,5,2,18,
|
33,32,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,76,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
17,16,87,88,89,90,5,2,87,88,89,90,5,2,87,88,89,90,60,87,88,89,90,5,2,87,88,89,90,18,
|
33,32,103,104,105,106,5,2,103,104,105,106,5,2,103,104,105,106,76,103,104,105,106,5,2,103,104,105,106,34,
|
||||||
17,16,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,60,5,2,5,2,5,2,5,2,5,2,18,
|
33,32,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,76,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
17,16,87,88,89,90,5,2,87,88,89,90,5,2,64,65,66,65,67,87,88,89,90,5,2,87,88,89,90,18,
|
33,32,103,104,105,106,5,2,103,104,105,106,5,2,80,81,82,81,83,103,104,105,106,5,2,103,104,105,106,34,
|
||||||
17,16,5,2,5,2,5,2,5,2,5,2,5,2,80,81,82,81,83,5,2,5,2,5,2,5,2,5,2,18,
|
33,32,5,2,5,2,5,2,5,2,5,2,5,2,96,97,98,97,99,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
17,16,87,88,89,90,5,2,87,88,89,90,5,2,112,68,69,70,113,87,88,89,90,5,2,87,88,89,90,18,
|
33,32,103,104,105,106,5,2,103,104,105,106,5,2,128,84,85,86,129,103,104,105,106,5,2,103,104,105,106,34,
|
||||||
17,16,5,2,5,2,5,2,5,2,5,2,5,2,96,87,89,90,96,5,2,5,2,5,2,5,2,5,2,18,
|
33,32,5,2,5,2,5,2,5,2,5,2,5,2,112,103,105,106,112,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
17,16,87,88,89,90,5,2,87,88,89,90,5,2,5,2,5,2,5,5,2,5,2,5,2,87,88,89,90,18,
|
33,32,103,104,105,106,5,2,103,104,105,106,5,2,5,2,5,2,5,5,2,5,2,5,2,103,104,105,106,34,
|
||||||
17,16,5,2,5,2,5,2,5,2,5,2,5,2,61,2,5,2,61,5,2,5,2,5,2,5,2,5,2,18,
|
33,32,5,2,5,2,5,2,5,2,5,2,5,2,77,2,5,2,77,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
17,16,87,88,89,90,5,2,87,88,89,90,5,2,60,2,5,2,60,5,2,5,2,5,2,87,88,89,90,18,
|
33,32,103,104,105,106,5,2,103,104,105,106,5,2,76,2,5,2,76,5,2,5,2,5,2,103,104,105,106,34,
|
||||||
17,16,5,2,5,2,5,2,5,2,5,2,5,2,60,2,5,2,60,5,2,5,2,5,2,5,2,5,2,18,
|
33,32,5,2,5,2,5,2,5,2,5,2,5,2,76,2,5,2,76,5,2,5,2,5,2,5,2,5,2,34,
|
||||||
17,32,33,33,33,48,5,2,49,33,33,48,5,2,49,33,33,33,33,33,48,5,2,49,33,33,33,33,33,34,
|
33,48,49,49,49,64,5,2,65,49,49,64,5,2,65,49,49,49,49,49,64,5,2,65,49,49,49,49,49,50,
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
|||||||
327
data/jailmoji.lua
Normal file
@@ -0,0 +1,327 @@
|
|||||||
|
jailmoji={
|
||||||
|
MAX_COLOR=16,
|
||||||
|
MAX_BASE=3,
|
||||||
|
MAX_CHIN=8,
|
||||||
|
MAX_NOSE=9,
|
||||||
|
MAX_EARS=1,
|
||||||
|
MAX_EYES=7,
|
||||||
|
MAX_BROWS=4,
|
||||||
|
MAX_HAIR=11,
|
||||||
|
MAX_BAG=3,
|
||||||
|
|
||||||
|
surface=-1,
|
||||||
|
gendata={},
|
||||||
|
|
||||||
|
generate=function(genstring)
|
||||||
|
if genstring then
|
||||||
|
for i=1,#genstring do jailmoji.gendata[i]=genstring:byte(i)-65 end
|
||||||
|
end
|
||||||
|
|
||||||
|
local surf_base = surf.load("actor-base.gif")
|
||||||
|
local surf_hair = surf.load("actor-hair.gif")
|
||||||
|
local surf_chin = surf.load("actor-chin.gif")
|
||||||
|
local surf_nose = surf.load("actor-nose.gif")
|
||||||
|
local surf_eyes = surf.load("actor-eyes.gif")
|
||||||
|
local surf_brows = surf.load("actor-brows.gif")
|
||||||
|
local surf_bag = surf.load("actor-bag.gif")
|
||||||
|
if jailmoji.surface ~= -1 then surf.free(jailmoji.surface) end
|
||||||
|
|
||||||
|
jailmoji.surface = surf.new(32,48)
|
||||||
|
surf.target(jailmoji.surface)
|
||||||
|
|
||||||
|
pal.subpal(20,jailmoji.gendata[2]+1) -- vestit1
|
||||||
|
pal.subpal(21,jailmoji.gendata[3]+1) -- vestit2
|
||||||
|
pal.subpal(22,jailmoji.gendata[4]+1) -- sabates
|
||||||
|
pal.subpal(24,jailmoji.gendata[5]+1) -- pell1
|
||||||
|
pal.subpal(25,jailmoji.gendata[6]+1) -- pell2
|
||||||
|
pal.subpal(23,jailmoji.gendata[15]+1) -- monyo
|
||||||
|
pal.subpal(26,jailmoji.gendata[11]+1) -- ulls
|
||||||
|
pal.subpal(27,jailmoji.gendata[13]+1) -- celles
|
||||||
|
pal.subpal(28,jailmoji.gendata[17]+1) -- motxilla1
|
||||||
|
pal.subpal(29,jailmoji.gendata[18]+1) -- motxilla2
|
||||||
|
|
||||||
|
surf.source(surf_base)
|
||||||
|
local dx=jailmoji.gendata[1]*32
|
||||||
|
draw.surf(dx,0,32,48,0,0)
|
||||||
|
|
||||||
|
surf.source(surf_bag)
|
||||||
|
local dx=jailmoji.gendata[16]*6
|
||||||
|
draw.surf(dx,0,6,5,5,25)
|
||||||
|
draw.surf(dx,0,6,5,21,26)
|
||||||
|
draw.surf(dx,5,6,5,8,41)
|
||||||
|
draw.surf(dx+3,5,2,2,27,42)
|
||||||
|
|
||||||
|
surf.source(surf_hair)
|
||||||
|
local dx=jailmoji.gendata[14]*16
|
||||||
|
draw.surf(dx,0,16,48,0,0)
|
||||||
|
draw.surf(dx,0,16,48,16,1)
|
||||||
|
|
||||||
|
surf.source(surf_eyes)
|
||||||
|
local dx=jailmoji.gendata[10]*4
|
||||||
|
draw.surf(dx,0,4,2,4,7,4,2,true)
|
||||||
|
draw.surf(dx,0,4,2,8,7)
|
||||||
|
draw.surf(dx,0,4,2,20,8,4,2,true)
|
||||||
|
draw.surf(dx,0,4,2,24,8)
|
||||||
|
draw.surf(dx,0,4,2,4,38)
|
||||||
|
draw.surf(dx,0,4,2,20,39)
|
||||||
|
|
||||||
|
surf.source(surf_brows)
|
||||||
|
local dx=jailmoji.gendata[12]*2
|
||||||
|
draw.surf(dx,0,2,2,5,6,2,2,true)
|
||||||
|
draw.surf(dx,0,2,2,9,6)
|
||||||
|
draw.surf(dx,0,2,2,21,7,2,2,true)
|
||||||
|
draw.surf(dx,0,2,2,25,7)
|
||||||
|
draw.surf(dx,0,2,2,5,37)
|
||||||
|
draw.surf(dx,0,2,2,21,38)
|
||||||
|
|
||||||
|
surf.source(surf_chin)
|
||||||
|
local dx=jailmoji.gendata[7]*8
|
||||||
|
draw.surf(dx,0,8,4,4,9)
|
||||||
|
draw.surf(dx,0,8,4,20,10)
|
||||||
|
draw.surf(dx,4,8,4,1,40)
|
||||||
|
draw.surf(dx,4,8,4,17,41)
|
||||||
|
|
||||||
|
surf.source(surf_nose)
|
||||||
|
local dx=jailmoji.gendata[8]*4
|
||||||
|
draw.surf(dx,4,4,4,6,7)
|
||||||
|
draw.surf(dx,4,4,4,22,8)
|
||||||
|
draw.surf(dx,0,4,4,0,37)
|
||||||
|
draw.surf(dx,0,4,4,16,38)
|
||||||
|
|
||||||
|
pal.subpal()
|
||||||
|
|
||||||
|
surf.target(0)
|
||||||
|
end,
|
||||||
|
|
||||||
|
get=function(genstring)
|
||||||
|
jailmoji.generate(genstring)
|
||||||
|
local surf = jailmoji.surface
|
||||||
|
jailmoji.surface = -1
|
||||||
|
return surf
|
||||||
|
end,
|
||||||
|
|
||||||
|
update_text=function()
|
||||||
|
jailmoji.editor.str=""
|
||||||
|
for i=1,#jailmoji.gendata do jailmoji.editor.str = jailmoji.editor.str .. string.char(jailmoji.gendata[i]+65) end
|
||||||
|
end,
|
||||||
|
|
||||||
|
random=function()
|
||||||
|
local str=""
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_BASE+1)+64)
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
|
||||||
|
--str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
--str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
local pell = {{"O","N"}, {"N","J"}, {"J","J"}} local r = math.random(#pell)
|
||||||
|
str = str .. pell[r][1] .. pell[r][2]
|
||||||
|
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_CHIN+1)+64)
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_NOSE+1)+64)
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_EARS+1)+64)
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_EYES+1)+64)
|
||||||
|
--str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
local ulls = {"B","C","D","E","F","G","I","K","L"} r = math.random(#ulls)
|
||||||
|
str = str .. ulls[r]
|
||||||
|
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_BROWS+1)+64)
|
||||||
|
--str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
local celles = {"E","F","G","H","J"} r = math.random(#celles)
|
||||||
|
str = str .. celles[r]
|
||||||
|
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_HAIR+1)+64)
|
||||||
|
--str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
local monyo = {"D","E","F","G","H","J","N","O"} r = math.random(#monyo)
|
||||||
|
str = str .. monyo[r]
|
||||||
|
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_BAG+1)+64)
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
str = str .. string.char(math.random(jailmoji.MAX_COLOR+1)+64)
|
||||||
|
jailmoji.generate(str)
|
||||||
|
|
||||||
|
jailmoji.update_text()
|
||||||
|
end,
|
||||||
|
|
||||||
|
editor={
|
||||||
|
old_update=nil,
|
||||||
|
view=0,
|
||||||
|
animated=false,
|
||||||
|
changed=false,
|
||||||
|
str="",
|
||||||
|
|
||||||
|
show=function()
|
||||||
|
jailmoji.editor.old_update=update
|
||||||
|
update=jailmoji.editor.update
|
||||||
|
--jailmoji.surface = surf.load("actor-base.gif")
|
||||||
|
jailmoji.generate("AABJONAAAAEAAAEAAB")
|
||||||
|
end,
|
||||||
|
|
||||||
|
text_button=function(x, y, label, current_value, own_value)
|
||||||
|
local rect,color = draw.rect, 8
|
||||||
|
local mx,my = mouse.pos()
|
||||||
|
|
||||||
|
if current_value==own_value then rect,color = draw.rectf, 5 else rect,color = draw.rect, 8 end
|
||||||
|
rect(x,y,9,9,8)
|
||||||
|
draw.text(label,x+3,y+2,color)
|
||||||
|
if mx>=x and mx<x+9 and my>=y and my<y+9 and mouse.press(mouse.LEFT) then return own_value end
|
||||||
|
return current_value
|
||||||
|
end,
|
||||||
|
|
||||||
|
spin_button=function(x, y, current_value, max_value)
|
||||||
|
local rect,color = draw.rect, 8
|
||||||
|
local mx,my = mouse.pos() --mx,my = view.tolocal(mx,my)
|
||||||
|
local hover = mx>=x and mx<x+9 and my>=y and my<y+9
|
||||||
|
local clicked = hover and mouse.down(mouse.LEFT)
|
||||||
|
local label = string.char(current_value + 65)
|
||||||
|
if clicked then rect,color = draw.rectf, 5 else rect,color = draw.rect, 8 end
|
||||||
|
rect(x,y,9,9,8)
|
||||||
|
draw.text(label,x+3,y+2,color)
|
||||||
|
if hover then
|
||||||
|
if mouse.press(mouse.LEFT) then
|
||||||
|
jailmoji.editor.changed = true
|
||||||
|
if current_value+1 > max_value then
|
||||||
|
return 0
|
||||||
|
else
|
||||||
|
return current_value+1
|
||||||
|
end
|
||||||
|
elseif mouse.press(mouse.RIGHT) then
|
||||||
|
jailmoji.editor.changed = true
|
||||||
|
if current_value == 0 then
|
||||||
|
return max_value
|
||||||
|
else
|
||||||
|
return current_value-1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return current_value
|
||||||
|
end,
|
||||||
|
|
||||||
|
color_button=function(x, y, current_value)
|
||||||
|
local c1,c2,c3 = current_value+1,6,8
|
||||||
|
local mx,my = mouse.pos() --mx,my = view.tolocal(mx,my)
|
||||||
|
local hover = mx>=x and mx<x+9 and my>=y and my<y+9
|
||||||
|
local clicked = hover and mouse.down(mouse.LEFT)
|
||||||
|
if clicked then c1,c2,c3 = 6,6,8 end
|
||||||
|
draw.rectf(x,y,9,9,c1) draw.rect(x+1,y+1,7,7,c2) draw.rect(x,y,9,9,c3)
|
||||||
|
if hover then
|
||||||
|
if mouse.press(mouse.LEFT) then
|
||||||
|
jailmoji.editor.changed = true
|
||||||
|
if current_value+1 > 15 then
|
||||||
|
return 0
|
||||||
|
else
|
||||||
|
return current_value+1
|
||||||
|
end
|
||||||
|
elseif mouse.press(mouse.RIGHT) then
|
||||||
|
jailmoji.editor.changed = true
|
||||||
|
if current_value == 0 then
|
||||||
|
return 15
|
||||||
|
else
|
||||||
|
return current_value-1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return current_value
|
||||||
|
end,
|
||||||
|
|
||||||
|
update=function()
|
||||||
|
local self = jailmoji.editor
|
||||||
|
draw.rectf(10,10, 140, 100,5)
|
||||||
|
draw.rectf(10,10, 140, 10,9)
|
||||||
|
draw.rect(10,10, 140, 100,8)
|
||||||
|
draw.text("JAILMOJI EDITOR",14,13,8)
|
||||||
|
draw.rectf(19,23, 50, 50,7)
|
||||||
|
draw.rect(19,23, 50, 50,8)
|
||||||
|
surf.source(jailmoji.surface)
|
||||||
|
|
||||||
|
local vx = 0 if self.animated then vx = 16 end
|
||||||
|
local vy = self.view * 16
|
||||||
|
draw.surf(vx,vy,16,16,28,32,32,32)
|
||||||
|
|
||||||
|
local rect,color = draw.rect, 8
|
||||||
|
local mx,my = mouse.pos()
|
||||||
|
|
||||||
|
self.view=self.text_button(19,74,"F",self.view, 0)
|
||||||
|
self.view=self.text_button(29,74,"B",self.view, 1)
|
||||||
|
self.view=self.text_button(39,74,"S",self.view, 2)
|
||||||
|
self.animated=self.text_button(60,74,"A",self.animated, not self.animated)
|
||||||
|
|
||||||
|
view.origin(70,23)
|
||||||
|
draw.text("Vestit:",1,2,8)
|
||||||
|
|
||||||
|
jailmoji.gendata[1] = self.spin_button(28,0,jailmoji.gendata[1],jailmoji.MAX_BASE)
|
||||||
|
jailmoji.gendata[2] = self.color_button(38,0,jailmoji.gendata[2])
|
||||||
|
jailmoji.gendata[3] = self.color_button(48,0,jailmoji.gendata[3])
|
||||||
|
jailmoji.gendata[4] = self.color_button(58,0,jailmoji.gendata[4])
|
||||||
|
|
||||||
|
draw.text("Pell:",1,12,8)
|
||||||
|
jailmoji.gendata[5] = self.color_button(28,10,jailmoji.gendata[5])
|
||||||
|
jailmoji.gendata[6] = self.color_button(38,10,jailmoji.gendata[6])
|
||||||
|
|
||||||
|
draw.text("Cara:",1,22,8)
|
||||||
|
jailmoji.gendata[7] = self.spin_button(28,20,jailmoji.gendata[7],jailmoji.MAX_CHIN)
|
||||||
|
jailmoji.gendata[8] = self.spin_button(38,20,jailmoji.gendata[8],jailmoji.MAX_NOSE)
|
||||||
|
jailmoji.gendata[9] = self.spin_button(48,20,jailmoji.gendata[9],jailmoji.MAX_EARS)
|
||||||
|
|
||||||
|
draw.text("Ulls:",1,32,8)
|
||||||
|
jailmoji.gendata[10] = self.spin_button(28,30,jailmoji.gendata[10],jailmoji.MAX_EYES)
|
||||||
|
jailmoji.gendata[11] = self.color_button(38,30,jailmoji.gendata[11])
|
||||||
|
jailmoji.gendata[12] = self.spin_button(48,30,jailmoji.gendata[12],jailmoji.MAX_BROWS)
|
||||||
|
jailmoji.gendata[13] = self.color_button(58,30,jailmoji.gendata[13])
|
||||||
|
|
||||||
|
draw.text("Monyo:",1,42,8)
|
||||||
|
jailmoji.gendata[14] = self.spin_button(28,40,jailmoji.gendata[14],jailmoji.MAX_HAIR)
|
||||||
|
jailmoji.gendata[15] = self.color_button(38,40,jailmoji.gendata[15])
|
||||||
|
|
||||||
|
draw.text("Motxilla:",1,52,8)
|
||||||
|
jailmoji.gendata[16] = self.spin_button(38,50,jailmoji.gendata[16],jailmoji.MAX_BAG)
|
||||||
|
jailmoji.gendata[17] = self.color_button(48,50,jailmoji.gendata[17])
|
||||||
|
jailmoji.gendata[18] = self.color_button(58,50,jailmoji.gendata[18])
|
||||||
|
|
||||||
|
view.origin(0,0)
|
||||||
|
|
||||||
|
if jailmoji.editor.changed then
|
||||||
|
jailmoji.editor.changed = false
|
||||||
|
jailmoji.generate()
|
||||||
|
jailmoji.update_text()
|
||||||
|
--self.str=""
|
||||||
|
--for i=1,#jailmoji.gendata do self.str = self.str .. string.char(jailmoji.gendata[i]+65) end
|
||||||
|
end
|
||||||
|
draw.rectf(19,88, 122, 9,7)
|
||||||
|
draw.rect(19,88, 122, 9,8)
|
||||||
|
draw.text(self.str,21,90,8)
|
||||||
|
|
||||||
|
--local mx,my = mouse.pos() --mx,my = view.tolocal(mx,my)
|
||||||
|
|
||||||
|
-- 'COPY' button
|
||||||
|
draw.rectf(19,98, 24, 9,9)
|
||||||
|
draw.rect(19,98, 24, 9,8)
|
||||||
|
draw.text("COPY",23,100,8)
|
||||||
|
if mx>=19 and mx<19+24 and my>=98 and my<98+9 and mouse.press(mouse.LEFT) then
|
||||||
|
sys.clipboard(self.str)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- 'RANDOM' button
|
||||||
|
draw.rectf(65,98, 31, 9,2)
|
||||||
|
draw.rect(65,98, 31, 9,8)
|
||||||
|
draw.text("RANDOM",69,100,8)
|
||||||
|
if mx>=65 and mx<65+32 and my>=98 and my<98+9 and mouse.press(mouse.LEFT) then
|
||||||
|
jailmoji.random()
|
||||||
|
end
|
||||||
|
|
||||||
|
-- 'EXIT' button
|
||||||
|
draw.rectf(116,98, 25, 9,10)
|
||||||
|
draw.rect(116,98, 25, 9,8)
|
||||||
|
draw.text("EIXIR",119,100,8)
|
||||||
|
if mx>=116 and mx<116+25 and my>=98 and my<98+9 and mouse.press(mouse.LEFT) then
|
||||||
|
if self.old_update then
|
||||||
|
update = self.old_update
|
||||||
|
else
|
||||||
|
surf.source(0)
|
||||||
|
surf.cls(0)
|
||||||
|
show_main_menu()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
||||||
282
data/m_arq.lua
@@ -1,9 +1,81 @@
|
|||||||
levels["arq"]={
|
levels["arq"]={
|
||||||
load=function()
|
load=function()
|
||||||
mapa.load("test.map")
|
mapa.load("arq.map")
|
||||||
|
|
||||||
|
actors.add({name="prohibit1",x=6,y=10,o="d",gfx={x=192,y=48},action=levels.arq.prohibit_action})
|
||||||
|
actors.add({name="prohibit2",x=12,y=10,o="d",gfx={x=192,y=48},action=levels.arq.prohibit_action})
|
||||||
|
|
||||||
|
--actors.add({name="tallat1",x=0,y=11,o="d",gfx={x=208,y=48},action=levels.arq.tallat_action})
|
||||||
|
--actors.add({name="tallat2",x=0,y=12,o="d",gfx={x=208,y=48},action=levels.arq.tallat_action})
|
||||||
|
--actors.add({name="tallat3",x=0,y=13,o="d",gfx={x=208,y=48},action=levels.arq.tallat_action})
|
||||||
|
|
||||||
actors.add({name="estudiant1",x=18,y=11,o="r",gfx={x=0,y=48},action=levels.arq.estudiant1_action})
|
actors.add({name="estudiant1",x=18,y=11,o="r",gfx={x=0,y=48},action=levels.arq.estudiant1_action})
|
||||||
actors.add({name="estudiant2",x=16,y=12,o="l",gfx={x=128,y=0}})
|
actors.add({name="estudiant2",x=14,y=12,o="l",gfx={x=128,y=0},action=levels.arq.estudiant2_action})
|
||||||
|
actors.add({name="estudiant3",x=34,y=25,o="r",gfx={x=128,y=48},action=levels.arq.estudiant3_action})
|
||||||
|
actors.add({name="estudiant4",x=27,y=25,o="d",gfx={x=0,y=64},action=levels.arq.estudiant4_action})
|
||||||
|
|
||||||
|
actors.add({name="cartel_jail1_a",x=8,y=10,o="",action=levels.arq.cartel_jail1_action})
|
||||||
|
actors.add({name="cartel_jail1_b",x=14,y=10,o="",action=levels.arq.cartel_jail1_action})
|
||||||
|
actors.add({name="cartel_jail2",x=24,y=10,o="",action=levels.arq.cartel_jail2_action})
|
||||||
|
actors.add({name="cartel_docjail",x=36,y=10,o="",action=levels.arq.cartel_docjail_action})
|
||||||
|
|
||||||
|
actors.add({name="cartel_aula3",x=10,y=24,o="",action=levels.arq.cartel_aula3_action})
|
||||||
|
actors.add({name="cartel_aula2",x=22,y=24,o="",action=levels.arq.cartel_aula2_action})
|
||||||
|
actors.add({name="cartel_aula1",x=34,y=24,o="",action=levels.arq.cartel_aula1_action})
|
||||||
|
actors.add({name="cartel_repro",x=58,y=24,o="",action=levels.arq.cartel_repro_action})
|
||||||
|
|
||||||
|
actors.add({name="tablo_aula2",x=36,y=24,o="",action=levels.arq.tablo_aula1_action})
|
||||||
|
actors.add({name="tablo_aula2",x=24,y=24,o="",action=levels.arq.tablo_aula2_action})
|
||||||
|
actors.add({name="tablo_aula3",x=4,y=24,o="",action=levels.arq.tablo_aula3_action})
|
||||||
|
|
||||||
|
actors.add({name="maquina_cafe",x=62,y=5,o="",action=levels.arq.maquina_cafe_action})
|
||||||
|
actors.add({name="maquina_exp",x=60,y=5,o="",action=levels.arq.maquina_exp_action})
|
||||||
|
|
||||||
|
if not flags.prac3 or not flags.prac2 or not flags.prac1 then
|
||||||
|
actors.add({name="alutablo1",x=3,y=25,o="d",gfx={x=32,y=64}})
|
||||||
|
actors.add({name="alutablo2",x=5,y=25,o="d",gfx={x=16,y=96},action=levels.arq.alutablo_action})
|
||||||
|
actors.add({name="alutablo3",x=4,y=26,o="d",gfx={x=48,y=96}})
|
||||||
|
actors.add({name="alutablo4",x=6,y=26,o="d",gfx={x=64,y=80},action=levels.arq.alutablo_action})
|
||||||
|
actors.add({name="alutablo5",x=5,y=27,o="d",gfx={x=96,y=80},action=levels.arq.alutablo_action})
|
||||||
|
actors.add({name="alutablo6",x=2,y=26,o="r",gfx={x=128,y=48}})
|
||||||
|
actors.add({name="alutablo7",x=3,y=27,o="d",gfx={x=0,y=96}})
|
||||||
|
end
|
||||||
|
|
||||||
|
switches.add({x=0,y=11,w=1,h=3,action=
|
||||||
|
function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
if hero.o=="l" then
|
||||||
|
game.paused = true
|
||||||
|
fade.fadeout()
|
||||||
|
actors.main.x=61
|
||||||
|
actors.main.y=36
|
||||||
|
actors.main.o="l"
|
||||||
|
actors.main.level="exterior"
|
||||||
|
game.init("exterior")
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
switches.add({x=0,y=25,w=1,h=3,action=
|
||||||
|
function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
if hero.o=="l" then
|
||||||
|
game.paused = true
|
||||||
|
fade.fadeout()
|
||||||
|
actors.main.x=61
|
||||||
|
actors.main.y=50
|
||||||
|
actors.main.o="l"
|
||||||
|
actors.main.level="exterior"
|
||||||
|
game.init("exterior")
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
switches.add({x=32,y=25,w=1,h=1,action=
|
switches.add({x=32,y=25,w=1,h=1,action=
|
||||||
function()
|
function()
|
||||||
@@ -95,15 +167,207 @@ levels["arq"]={
|
|||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
end,
|
switches.add({x=66,y=3,w=4,h=1,action=
|
||||||
|
function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
if hero.o=="u" then
|
||||||
|
game.paused = true
|
||||||
|
fade.fadeout()
|
||||||
|
actors.main.x=6
|
||||||
|
actors.main.y=33
|
||||||
|
actors.main.o="u"
|
||||||
|
actors.main.level="vella"
|
||||||
|
game.init("vella")
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
estudiant1_action=function()
|
switches.add({x=6,y=25,w=1,h=3,action=
|
||||||
local hero = actors.search(actors.main.name)
|
function()
|
||||||
--if hero.o~="d" then return end
|
if not flags.prac3 or flags.prac3<2 then
|
||||||
scene.start({
|
flags.prac3=2
|
||||||
--function() actors.face("estudiant1", "jailer") scene.cont() end,
|
scene.start({
|
||||||
function() balloon.show("ME MOLA MIRAR LA\nBARRA DE PROGRÉS...",12,"estudiant1",false,{x=1,w=12,h=2}) end
|
function() balloon.show("MIRA, JA\nS'HA DESPEJAT...",2,"jailer",false,{x=5,w=10,h=2}) end,
|
||||||
|
})
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
init_scene=function()
|
||||||
|
flags.escena_inicial=1
|
||||||
|
scene.start({
|
||||||
|
function() wait.start(1) end,
|
||||||
|
function() actors.face("estudiant2", "jailer") scene.cont() end,
|
||||||
|
function() balloon.show("QUE GANES DE SEGUIR\nAMB EL JAILGAME!",2,"jailer",false,{x=4,w=12,h=2}) end,
|
||||||
|
function() balloon.show("ME'L VAIG DEIXAR EN\nUN DISKITO EN UN\nCOMP DE LA JAIL",2,"jailer",false,{x=4,w=12,h=3}) end,
|
||||||
|
function() balloon.show("SEGUR QUE ENCARA ESTÀ!\nDINS DEL COMP",12,"estudiant2",false,{x=2,w=13,h=2}) end,
|
||||||
|
function() balloon.show("ANEM A ENTRAR\n A LA JAIL!",12,"estudiant2",false,{x=5,w=10,h=2}) end,
|
||||||
|
function() actors.search("estudiant2").o='u' scene.cont() end,
|
||||||
|
function() actors.moveto("jailer", 12, 11) end,
|
||||||
|
function() balloon.show("PERO QUÉ...",2,"jailer",false,{x=4,w=8,h=1}) end,
|
||||||
|
function() balloon.show("'JAIL CERRADA POR\nACTUALIZACIONES\n¡TU MISMO!'",2,"jailer",false,{x=2,w=10,h=3}) end,
|
||||||
|
function() balloon.show("AÇÒ ES COSA D'USUFONDO!\nSERÀ MAMÓ!",2,"jailer",false,{x=2,w=14,h=2}) end,
|
||||||
|
function() balloon.show("HE DE TROBAR LA\nFORMA D'ACONSEGUIR\nEL MEU DISKITO...",2,"jailer",false,{x=2,w=11,h=3}) end,
|
||||||
|
function() actors.search("estudiant2").o='l' scene.cont() end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
prohibit_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("LA JAIL 1\nCONTINUA TANCADA...",2,"jailer",false,{x=4,w=12,h=2}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
tallat_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("NO ES POT PASSAR.\nACABEN DE FREGAR\nEL PISO",2,"jailer",false,{x=1,w=10,h=3}) end
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
estudiant1_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("SI VOLS ENTRAR A LA JAIL 1\nTINDRÀS QUE TROBAR LA FORMA\nDE TRAURE A USUFONDO DE AHÍ",12,"estudiant1",false,{x=2,w=16,h=3}) end,
|
||||||
|
function() balloon.show("ELL ÉS EL TÈCNIC, NO?\nPOTSER SI ALGUNA COSA\nS'ESTROPEARA...",12,"estudiant1",false,{x=4,w=12,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
estudiant2_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() actors.face("estudiant2", "jailer") scene.cont() end,
|
||||||
|
function() balloon.show("VAJA MERDA!\nARA TINDRÉ QUE ANAR A\nLES PRÀCTIQUES DE CMC",12,"estudiant2",false,{x=2,w=13,h=3}) end,
|
||||||
|
function() balloon.show("SI NO SÉ NI EN\nQUINA AULA SON!",12,"estudiant2",false,{x=5,w=10,h=2}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
estudiant3_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() actors.face("estudiant3", "jailer") scene.cont() end,
|
||||||
|
function() balloon.show("EI, QUE HI HA\nEN ESTE PASILLO?",2,"jailer",false,{x=3,w=10,h=2}) end,
|
||||||
|
function() balloon.show("SON LES AULES\nDE PRÀCTIQUES",12,"estudiant3",false,{x=8,w=9,h=2}) end,
|
||||||
|
function() balloon.show("PERO NO VAIG A\nENTRAR. ME FAN POR\nELS PROFESORS!",12,"estudiant3",false,{x=7,w=11,h=3}) end,
|
||||||
|
function() balloon.show("ES UNA ENFERMETAT REAL!\n...PROFAFOBIA!",12,"estudiant3",false,{x=5,w=13,h=2}) end,
|
||||||
|
function() balloon.show("...O ALGO AIXÍ...",12,"estudiant3",false,{x=7,w=11,h=1}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
estudiant4_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("VOLS SABER EN QUINA\nAULA ES DONA\nCADA ASSIGNATURA?",12,"estudiant4",false,{x=4,w=12,h=3}) end,
|
||||||
|
function() balloon.show("MIRA LA LLISTA EN\nEL TAULER AL FONDO\nDEL PASILLO",12,"estudiant4",false,{x=5,w=11,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
alutablo_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("OSTI, ESTÀ PETAT!",2,"jailer",false,{x=2,w=11,h=1}) end,
|
||||||
|
function() balloon.show("MILLOR ESPERE\nUN RATO A QUE\nSE BUIDE...",2,"jailer",false,{x=3,w=9,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
cartel_jail1_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("-----------\n JAIL 1\n-----------",2,"jailer",false,{x=6,w=8,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
cartel_jail2_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("-----------\n JAIL 2\n-----------",2,"jailer",false,{x=6,w=8,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
cartel_docjail_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("-----------\n DOC JAIL\n-----------",2,"jailer",false,{x=6,w=8,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
cartel_aula3_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show(" AULA 3\n-----------\nPRÀCTIQUES",2,"jailer",false,{x=6,w=8,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
cartel_aula2_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show(" AULA 2\n-----------\nPRÀCTIQUES",2,"jailer",false,{x=6,w=8,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
cartel_aula1_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show(" AULA 1\n-----------\nPRÀCTIQUES",2,"jailer",false,{x=6,w=8,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
cartel_repro_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("-----------\nREPROGRAFIA\n-----------",2,"jailer",false,{x=6,w=8,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
tablo_aula1_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("'WWW.TRIPOD.COM/BORRULL'",2,"jailer",false,{x=1,w=16,h=1}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
tablo_aula2_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("'...BUSCO COMPAÑERO DE PISO\nPREFERIBLEMENTE GATO...'",2,"jailer",false,{x=1,w=16,h=2}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
tablo_aula3_action=function()
|
||||||
|
flags.apuntes=1
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("AULES DE PRÀCTIQUES\n--------------------------\nDISTRIBUCIÓ D'ASSIGNATURES",2,"jailer",false,{x=1,w=16,h=3}) end,
|
||||||
|
function() balloon.show("AULA 1: CMC\nAULA 2: ALG\nAULA 3: TCO",2,"jailer",false,{x=3,w=8,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
maquina_cafe_action=function()
|
||||||
|
if not objects.collected("moneda") then
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("EI!\nMÀQUINA DE CAFE!",2,"jailer",true,{x=6,w=10,h=2}) end,
|
||||||
|
function() balloon.show("ME ANE A FERME\nUN CORTAET...",2,"jailer",true,{x=6,w=9,h=2}) end,
|
||||||
|
function() balloon.show(" AAAAAAAAAAAAAH!!!",15,"jailer",true,{x=3,w=14,h=1}) end,
|
||||||
|
function() balloon.show("ESPERA UN MOMENT...",2,"jailer",true,{x=4,w=12,h=1}) end,
|
||||||
|
function() balloon.show("SI RESULTA QUE\nNO TINC SOLT!",2,"jailer",true,{x=6,w=9,h=2}) end,
|
||||||
|
function() balloon.show("MERDA DE MÁQUINA!",2,"jailer",true,{x=5,w=11,h=1}) end,
|
||||||
|
})
|
||||||
|
else
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("NO VAIG A USAR\nESTA MÀQUINA...",2,"jailer",true,{x=6,w=10,h=2}) end,
|
||||||
|
function() balloon.show("NO SOC UN\nDESAPRENSIU!!",2,"jailer",true,{x=6,w=9,h=2}) end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
|
||||||
|
maquina_exp_action=function()
|
||||||
|
if not objects.collected("moneda") then
|
||||||
|
if not objects.collected("moneda2") then
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("NO DUC MONEDES...",2,"jailer",true,{x=5,w=11,h=1}) end,
|
||||||
|
})
|
||||||
|
else
|
||||||
|
scene.start({
|
||||||
|
function() objects.leave("moneda2") scene.cont() end,
|
||||||
|
function() objects.collect("rosquilletes") end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
else
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("PASSE...\nNOMÉS QUEDEN\nROSQUILLETES",2,"jailer",true,{x=6,w=9,h=3}) end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
|
||||||
}
|
}
|
||||||
24
data/m_eui.lua
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
levels["eui"]={
|
||||||
|
load=function()
|
||||||
|
mapa.load("eui.map")
|
||||||
|
|
||||||
|
switches.add({x=40,y=41,w=6,h=1,action=
|
||||||
|
function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
if hero.o=="d" then
|
||||||
|
game.paused = true
|
||||||
|
fade.fadeout()
|
||||||
|
actors.main.x=30
|
||||||
|
actors.main.y=6
|
||||||
|
actors.main.o="d"
|
||||||
|
actors.main.level="exterior"
|
||||||
|
game.init("exterior")
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
end,
|
||||||
|
}
|
||||||
42
data/m_exterior.lua
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
levels["exterior"]={
|
||||||
|
load=function()
|
||||||
|
mapa.load("exterior.map")
|
||||||
|
|
||||||
|
switches.add({x=61,y=35,w=1,h=3,action=
|
||||||
|
function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
if hero.o=="r" then
|
||||||
|
game.paused = true
|
||||||
|
fade.fadeout()
|
||||||
|
actors.main.x=0
|
||||||
|
actors.main.y=12
|
||||||
|
actors.main.o="r"
|
||||||
|
actors.main.level="arq"
|
||||||
|
game.init("arq")
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
switches.add({x=30,y=6,w=1,h=1,action=
|
||||||
|
function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
if hero.o=="u" then
|
||||||
|
game.paused = true
|
||||||
|
fade.fadeout()
|
||||||
|
actors.main.x=42
|
||||||
|
actors.main.y=41
|
||||||
|
actors.main.o="u"
|
||||||
|
actors.main.level="eui"
|
||||||
|
game.init("eui")
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
end,
|
||||||
|
}
|
||||||
@@ -125,20 +125,35 @@ levels["jail1"]={
|
|||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
--if hero.o~="d" then return end
|
--if hero.o~="d" then return end
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("ME MOLA MIRAR LA\nBARRA DE PROGRÉS...",12,"estudiant",true,{x=1,w=12,h=2}) end
|
function() balloon.show("EIXE COMP NO ESTÀ\nACTUALITZANT-SE?",2,"jailer",true,{x=4,w=11,h=2}) end,
|
||||||
|
function() balloon.show("SI...\nPERO...",12,"estudiant",true,{x=7,w=6,h=2}) end,
|
||||||
|
function() balloon.show("ME MOLA MIRAR LA\nBARRA DE PROGRÉS...",12,"estudiant",true,{x=4,w=12,h=2}) end
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
knunk_action=function()
|
knunk_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
--local hero = actors.search(actors.main.name)
|
||||||
--if hero.o~="d" then return end
|
if not objects.collected("diskito_knunk") then
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("EI KNUNK!",2,"jailer",true,{x=10,w=7,h=1}) end,
|
function() balloon.show("EI KNUNK!",2,"jailer",true,{x=10,w=7,h=1}) end,
|
||||||
function() balloon.show("EIXE COMP NO\nESTÀ ACTUALITZANT-SE?",2,"jailer",true,{x=4,w=13,h=2}) end,
|
function() balloon.show("EIXE COMP NO ESTÀ\nACTUALITZANT-SE?",2,"jailer",true,{x=6,w=11,h=2}) end,
|
||||||
function() balloon.show("JO PASSE...",12,"knunk",true,{x=10,w=8,h=1}) end,
|
function() balloon.show("JO PASSE...",12,"knunk",true,{x=10,w=8,h=1}) end,
|
||||||
function() balloon.show("A TRAVÉS D'UN BUG EN LA BARRA\nDE PROGRÉS HE OBERT UN TUNEL\nSSH A UN SERVIDOR DE KAZAJSTÀN",12,"knunk",true,{x=1,w=17,h=3}) end,
|
function() balloon.show("A TRAVÉS D'UN BUG EN LA BARRA\nDE PROGRÉS HE OBERT UN TUNEL\nSSH A UN SERVIDOR DE KAZAJSTÀN",12,"knunk",true,{x=1,w=17,h=3}) end,
|
||||||
function() balloon.show(" ...",2,"jailer",true,{x=10,w=7,h=1}) end,
|
function() balloon.show(" ...",2,"jailer",true,{x=10,w=7,h=1}) end,
|
||||||
})
|
function() balloon.show("OSTI, QUÉ ÉS AIXÓ?",2,"jailer",true,{x=8,w=11,h=1}) end,
|
||||||
|
function() balloon.show("HE FET UN DISQUET\nQUE PETA QUALSEVOL COMP",12,"knunk",true,{x=4,w=14,h=2}) end,
|
||||||
|
function() balloon.show("¿VOLS TESTECHARLO?",12,"knunk",true,{x=7,w=12,h=1}) end,
|
||||||
|
function() balloon.show("CLAR!",2,"jailer",true,{x=12,w=5,h=1}) end,
|
||||||
|
function() objects.collect("diskito_knunk") end
|
||||||
|
})
|
||||||
|
else
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("EI KNUNK!",2,"jailer",true,{x=10,w=7,h=1}) end,
|
||||||
|
function() balloon.show("EN QUÉ ESTAS ARA?",2,"jailer",true,{x=8,w=11,h=1}) end,
|
||||||
|
function() balloon.show("HE FET UN CONTADOR DE VISITES\nQUE NUKETJA EL COMP DEL QUE\nENTRA EN LA PACHINA WEB",12,"knunk",true,{x=1,w=17,h=3}) end,
|
||||||
|
function() balloon.show("QUE MEN...",2,"jailer",true,{x=10,w=7,h=1}) end,
|
||||||
|
})
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
comp_usufondo_action=function()
|
comp_usufondo_action=function()
|
||||||
|
|||||||
@@ -50,45 +50,45 @@ levels["prac1"]={
|
|||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
switches.add({x=4,y=14,w=10,h=1,action=
|
switches.add({x=9,y=15,w=1,h=1,action=
|
||||||
function()
|
function()
|
||||||
flags.prac1=1
|
--flags.prac1=1
|
||||||
if not flags.prac1 then
|
if not flags.prac1 then
|
||||||
flags.prac1=1
|
flags.prac1=1
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("OYE TU!",12,"profe",false,{x=4,w=6,h=1}) end,
|
function() balloon.show("OYE TU!",12,"profe",false,{x=4,w=6,h=1}) end,
|
||||||
function() actors.search("profe").path={pos=0,route='rrrdddddd'} end,
|
function() actors.search("profe").path={pos=0,route='rrrddddddd'} end,
|
||||||
function() balloon.show("TE PARECE HORA DE LLEGAR\nA LA PRÁCTICA?",12,"profe",false,{x=3,w=14,h=2}) end,
|
function() balloon.show("TE PARECE HORA DE LLEGAR\nA LA PRÁCTICA?",12,"profe",false,{x=3,w=14,h=2}) end,
|
||||||
function() balloon.show("AL MENOS TENDRÁS\nLOS APUNTES\n¿NO?",12,"profe",false,{x=3,w=14,h=3}) end,
|
function() balloon.show("AL MENOS TENDRÁS\nLOS APUNTES\n¿NO?",12,"profe",false,{x=3,w=14,h=3}) end,
|
||||||
function() balloon.show("PUES...\nNO",2,"jailer",false,{x=5,w=7,h=2}) end,
|
function() balloon.show("PUES...\nNO",2,"jailer",false,{x=5,w=7,h=2}) end,
|
||||||
function() balloon.show("¿¿QUÉ??\n¡ESTO ES EL COLMO!",12,"profe",false,{x=3,w=14,h=2}) end,
|
function() balloon.show("¿¿QUÉ??\n¡ESTO ES EL COLMO!",12,"profe",false,{x=3,w=14,h=2}) end,
|
||||||
function() balloon.show("¡LARGO!\n¡Y NO VUELVAS SIN\nLOS APUNTES!",12,"profe",false,{x=3,w=14,h=3}) end,
|
function() balloon.show("¡LARGO!\n¡Y NO VUELVAS SIN\nLOS APUNTES!",12,"profe",false,{x=3,w=14,h=3}) end,
|
||||||
function() actors.search("jailer").path={pos=0,route='dd'} end
|
function() actors.search("jailer").path={pos=0,route='d'} end
|
||||||
})
|
})
|
||||||
return true
|
return true
|
||||||
elseif flags.prac1==1 then
|
elseif flags.prac1==1 then
|
||||||
if not objects.search("apuntes_1015") then
|
if not objects.search("apuntes") then
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("¿OTRA VEZ TU?",12,"profe",false,{x=4,w=9,h=1}) end,
|
function() balloon.show("¿OTRA VEZ TU?",12,"profe",false,{x=4,w=9,h=1}) end,
|
||||||
function() actors.search("profe").path={pos=0,route='rrrdddddd'} end,
|
function() actors.search("profe").path={pos=0,route='rrrddddddd'} end,
|
||||||
function() balloon.show("¿TRAES LOS APUNTES?",12,"profe",false,{x=3,w=12,h=1}) end,
|
function() balloon.show("¿TRAES LOS APUNTES?",12,"profe",false,{x=3,w=12,h=1}) end,
|
||||||
function() balloon.show("SI ES QUE NO SÉ\nQUINS SON!",2,"jailer",false,{x=5,w=10,h=2}) end,
|
function() balloon.show("NO...\nES QUE...",2,"jailer",false,{x=5,w=10,h=2}) end,
|
||||||
function() balloon.show("¡PUES TE BUSCAS LAS CASTAÑAS!\n¡HABER VENIDO A CLASE!",12,"profe",false,{x=3,w=16,h=2}) end,
|
function() balloon.show("¡PUES TE BUSCAS LAS CASTAÑAS!\n¡HABER VENIDO A CLASE!",12,"profe",false,{x=3,w=16,h=2}) end,
|
||||||
function() balloon.show("CAGUEN L'OU...",2,"jailer",false,{x=5,w=9,h=1}) end,
|
function() balloon.show("CAGUEN L'OU...",2,"jailer",false,{x=5,w=9,h=1}) end,
|
||||||
function() actors.search("jailer").path={pos=0,route='dd'} end,
|
function() actors.search("jailer").path={pos=0,route='d'} end,
|
||||||
function() wait.start(1.5) end,
|
function() wait.start(1.5) end,
|
||||||
function() balloon.show("SI NO SÉ NI QUINA\nASSIGNATURA ES...",2,"jailer",false,{x=5,w=10,h=2}) end
|
function() if not flags.apuntes then balloon.show("SI NO SÉ NI QUINA\nASSIGNATURA ES...",2,"jailer",false,{x=5,w=10,h=2}) end end
|
||||||
})
|
})
|
||||||
else
|
else
|
||||||
flags.prac1=2
|
flags.prac1=2
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("¿OTRA VEZ TU?",12,"profe",false,{x=4,w=6,h=1}) end,
|
function() balloon.show("¿OTRA VEZ TU?",12,"profe",false,{x=4,w=6,h=1}) end,
|
||||||
function() actors.search("profe").path={pos=0,route='rrrdddddd'} end,
|
function() actors.search("profe").path={pos=0,route='rrrddddddd'} end,
|
||||||
function() balloon.show("¿TRAES LOS APUNTES?",12,"profe",false,{x=3,w=14,h=1}) end,
|
function() balloon.show("¿TRAES LOS APUNTES?",12,"profe",false,{x=3,w=14,h=1}) end,
|
||||||
function() balloon.show("¡ACÍ ESTÀN!",2,"jailer",false,{x=5,w=7,h=1}) end,
|
function() balloon.show("¡ACÍ ESTÀN!",2,"jailer",false,{x=5,w=7,h=1}) end,
|
||||||
function() balloon.show("¡AH!\n¡ASÍ ME GUSTA!",12,"profe",false,{x=3,w=14,h=2}) end,
|
function() balloon.show("¡AH!\n¡ASÍ ME GUSTA!",12,"profe",false,{x=3,w=14,h=2}) end,
|
||||||
function() balloon.show("BUSCA UN ORDENADOR\nLIBRE Y EMPIEZA",12,"profe",false,{x=3,w=14,h=2}) end,
|
function() balloon.show("BUSCA UN ORDENADOR\nLIBRE Y EMPIEZA",12,"profe",false,{x=3,w=14,h=2}) end,
|
||||||
function() actors.search("profe").path={pos=0,route='uuuuuullla'} end,
|
function() actors.search("profe").path={pos=0,route='uuuuuuullla'} end,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
return true
|
return true
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ levels["prac2"]={
|
|||||||
load=function()
|
load=function()
|
||||||
mapa.load("prac2.map")
|
mapa.load("prac2.map")
|
||||||
|
|
||||||
actors.add({name="profe",x=10,y=5,o="d",gfx={x=224,y=0}})
|
actors.add({name="profe",x=10,y=5,o="d",gfx={x=224,y=0},action=levels.prac2.profe_action})
|
||||||
|
|
||||||
actors.add({name="comp_1_1",x=4,y=9,o="d",gfx={x=160,y=0},action=levels.prac2.comp_updating_action})
|
actors.add({name="comp_1_1",x=4,y=9,o="d",gfx={x=160,y=0},action=levels.prac2.comp_updating_action})
|
||||||
actors.add({name="comp_2_1",x=6,y=9,o="d",gfx={x=176,y=0},action=levels.prac2.comp_updating_action})
|
actors.add({name="comp_2_1",x=6,y=9,o="d",gfx={x=176,y=0},action=levels.prac2.comp_updating_action})
|
||||||
@@ -21,11 +21,11 @@ levels["prac2"]={
|
|||||||
actors.add({name="comp_profe",x=10,y=6,o="d",gfx={x=96,y=0},action=levels.prac2.comp_profe_action})
|
actors.add({name="comp_profe",x=10,y=6,o="d",gfx={x=96,y=0},action=levels.prac2.comp_profe_action})
|
||||||
actors.add({name="taula_profe",x=12,y=6,o="d",gfx={x=160,y=16}})
|
actors.add({name="taula_profe",x=12,y=6,o="d",gfx={x=160,y=16}})
|
||||||
|
|
||||||
actors.add({name="alumne1",x=12,y=10,o="d",gfx={x=32,y=64}})
|
actors.add({name="alumne1",x=12,y=10,o="d",gfx={x=32,y=64},action=levels.prac2.alumne1_action})
|
||||||
actors.add({name="alumne2",x=6,y=12,o="d",gfx={x=16,y=96}})
|
actors.add({name="alumne2",x=6,y=12,o="d",gfx={x=16,y=96},action=levels.prac2.alumne2_action})
|
||||||
actors.add({name="alumne3",x=4,y=10,o="d",gfx={x=96,y=64}})
|
actors.add({name="alumne3",x=4,y=10,o="d",gfx={x=96,y=64},action=levels.prac2.alumne3_action})
|
||||||
actors.add({name="alumne4",x=4,y=14,o="d",gfx={x=96,y=64}})
|
actors.add({name="alumne4",x=4,y=14,o="d",gfx={x=96,y=64},action=levels.prac2.alumne4_action})
|
||||||
actors.add({name="alumne5",x=14,y=14,o="d",gfx={x=64,y=64}})
|
actors.add({name="alumne5",x=14,y=14,o="d",gfx={x=64,y=64},action=levels.prac2.alumne5_action})
|
||||||
--actors.add({name="taza_usufondo",x=14,y=15,o="d",gfx={x=112,y=32},action=levels.jail1.taza_usufondo_action})
|
--actors.add({name="taza_usufondo",x=14,y=15,o="d",gfx={x=112,y=32},action=levels.jail1.taza_usufondo_action})
|
||||||
--if not objects.search("diskito_usufondo") then actors.add({name="disquito_usufondo",x=15,y=10,o="d",gfx={x=96,y=32},action=levels.jail1.disquito_usufondo_action}) end
|
--if not objects.search("diskito_usufondo") then actors.add({name="disquito_usufondo",x=15,y=10,o="d",gfx={x=96,y=32},action=levels.jail1.disquito_usufondo_action}) end
|
||||||
|
|
||||||
@@ -53,25 +53,70 @@ levels["prac2"]={
|
|||||||
|
|
||||||
comp_updating_action=function()
|
comp_updating_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
if hero.o~="d" then return end
|
if hero.o~="u" then return end
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("NO VAN ELS COMPS\nESTAN TOTS ACTUALITZANT",2,"jailer",true,{x=1,w=15,h=2}) end
|
function() balloon.show("SON COMPS DE PRÀCTIQUES\nESTAN MEGA CAPATS",2,"jailer",false,{x=1,w=15,h=2}) end
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
comp_usufondo_action=function()
|
comp_profe_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
if hero.o~="d" then return end
|
if hero.o=="l" or hero.o=="d" then return end
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("ESTÀ BLOQUEJAT,\nI NO ME SÉ LA CONTRASENYA.",2,"jailer",true,{x=1,w=15,h=2}) end
|
function() balloon.show("NO CREC QUE PUGA\nUSAR ESTE ORDENADOR.",2,"jailer",true,{x=3,w=14,h=2}) end
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
taza_usufondo_action=function()
|
profe_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
if not flags.prac2 then
|
||||||
if hero.o~="d" then return end
|
flags.prac2=1
|
||||||
|
scene.start({
|
||||||
|
function() actors.face("profe","jailer") scene.cont() end,
|
||||||
|
function() balloon.show("¿QUÉ NECESITA,\nCABALLERETE?",12,"profe",true,{x=6,w=9,h=2}) end,
|
||||||
|
function() balloon.show("PUES YO...",2,"jailer",true,{x=5,w=7,h=1}) end,
|
||||||
|
function() balloon.show("TENGO MUCHO TRABAJO...\n¡ESTOS EXMANEMS\nNO SE CORRIGEN SÓLOS!",12,"profe",true,{x=2,w=15,h=3}) end,
|
||||||
|
function() actors.search("profe").o="d" scene.cont() end,
|
||||||
|
function() balloon.show("NO PUEDO LEVANTARME\nNI PARA IR AL BAÑO...",12,"profe",true,{x=3,w=14,h=2}) end,
|
||||||
|
})
|
||||||
|
else
|
||||||
|
flags.prac2=2
|
||||||
|
scene.start({
|
||||||
|
function() actors.face("profe","jailer") scene.cont() end,
|
||||||
|
function() balloon.show("EN SERIO, NO TENGO,\nTIEMPO PARA TONTERÍAS",12,"profe",true,{x=3,w=14,h=2}) end,
|
||||||
|
function() actors.search("profe").o="d" scene.cont() end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
|
||||||
|
alumne1_action=function()
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("EL CAFÉ DE USUFONDO.\nESTÀ GELAT COM EL COR DEL DIMONI!",2,"jailer",true,{x=1,w=15,h=2}) end
|
function() balloon.show("ESTA PRÀCTICA\nES UNA MERDA...",12,"alumne1",false,{x=6,w=10,h=2}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
alumne2_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("QUE FAM!",12,"alumne2",false,{x=5,w=7,h=1}) end,
|
||||||
|
function() balloon.show("ME FARIA UN BON BOCATA\nDE 'SOBRASADA PATA'!",12,"alumne2",false,{x=2,w=14,h=2}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
alumne3_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("ESTIC FENT UN JAILGAME!",12,"alumne3",false,{x=2,w=14,h=1}) end,
|
||||||
|
function() balloon.show("NOMÉS ME FALTEN\nELS MENÚS...",12,"alumne3",false,{x=2,w=10,h=2}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
alumne4_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("POS A MI ME MOLA DLO...",12,"alumne4",false,{x=2,w=14,h=1}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
alumne5_action=function()
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("ZZZZ...",12,"alumne5",false,{x=10,w=6,h=1}) end,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ levels["prac3"]={
|
|||||||
load=function()
|
load=function()
|
||||||
mapa.load("prac3.map")
|
mapa.load("prac3.map")
|
||||||
|
|
||||||
actors.add({name="profe",x=11,y=5,o="u",gfx={x=224,y=0}})
|
actors.add({name="profe",x=11,y=5,o="u",gfx={x=224,y=0},action=levels.prac3.profe_action})
|
||||||
|
|
||||||
actors.add({name="comp_1_1",x=4,y=9,o="d",gfx={x=160,y=0},action=levels.prac3.comp_updating_action})
|
actors.add({name="comp_1_1",x=4,y=9,o="d",gfx={x=160,y=0},action=levels.prac3.comp_updating_action})
|
||||||
actors.add({name="comp_2_1",x=6,y=9,o="d",gfx={x=176,y=0},action=levels.prac3.comp_updating_action})
|
actors.add({name="comp_2_1",x=6,y=9,o="d",gfx={x=176,y=0},action=levels.prac3.comp_updating_action})
|
||||||
@@ -21,11 +21,11 @@ levels["prac3"]={
|
|||||||
actors.add({name="comp_profe",x=6,y=6,o="d",gfx={x=96,y=0},action=levels.prac3.comp_profe_action})
|
actors.add({name="comp_profe",x=6,y=6,o="d",gfx={x=96,y=0},action=levels.prac3.comp_profe_action})
|
||||||
actors.add({name="taula_profe",x=8,y=6,o="d",gfx={x=160,y=16}})
|
actors.add({name="taula_profe",x=8,y=6,o="d",gfx={x=160,y=16}})
|
||||||
|
|
||||||
actors.add({name="alumne1",x=12,y=14,o="d",gfx={x=32,y=64}})
|
actors.add({name="alumne1",x=12,y=14,o="d",gfx={x=32,y=64},action=levels.prac3.alumne1_action})
|
||||||
actors.add({name="alumne2",x=6,y=10,o="d",gfx={x=16,y=96}})
|
actors.add({name="alumne2",x=6,y=10,o="d",gfx={x=16,y=96},action=levels.prac3.alumne2_action})
|
||||||
actors.add({name="alumne3",x=4,y=12,o="d",gfx={x=96,y=64}})
|
actors.add({name="alumne3",x=4,y=12,o="d",gfx={x=96,y=64},action=levels.prac3.alumne3_action})
|
||||||
actors.add({name="alumne4",x=4,y=10,o="d",gfx={x=96,y=64}})
|
actors.add({name="alumne4",x=4,y=10,o="d",gfx={x=96,y=64},action=levels.prac3.alumne4_action})
|
||||||
actors.add({name="alumne5",x=14,y=12,o="d",gfx={x=64,y=64}})
|
actors.add({name="alumne5",x=14,y=12,o="d",gfx={x=64,y=64},action=levels.prac3.alumne5_action})
|
||||||
--actors.add({name="taza_usufondo",x=14,y=15,o="d",gfx={x=112,y=32},action=levels.jail1.taza_usufondo_action})
|
--actors.add({name="taza_usufondo",x=14,y=15,o="d",gfx={x=112,y=32},action=levels.jail1.taza_usufondo_action})
|
||||||
--if not objects.search("diskito_usufondo") then actors.add({name="disquito_usufondo",x=15,y=10,o="d",gfx={x=96,y=32},action=levels.jail1.disquito_usufondo_action}) end
|
--if not objects.search("diskito_usufondo") then actors.add({name="disquito_usufondo",x=15,y=10,o="d",gfx={x=96,y=32},action=levels.jail1.disquito_usufondo_action}) end
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ levels["prac3"]={
|
|||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
if hero.o=="u" then
|
if hero.o=="u" then
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("...COMO IBA DICIENDO...",12,"profe",true,{x=4,w=13,h=1}) end,
|
function() balloon.show("...COMO IBA DICIENDO...",12,"profe",true,{x=3,w=14,h=1}) end,
|
||||||
function() balloon.show("...BLAH BLAH BLAH...",12,"profe",true,{x=4,w=13,h=1}) end
|
function() balloon.show("...BLAH BLAH BLAH...",12,"profe",true,{x=4,w=13,h=1}) end
|
||||||
})
|
})
|
||||||
return true
|
return true
|
||||||
@@ -68,35 +68,73 @@ levels["prac3"]={
|
|||||||
|
|
||||||
comp_updating_action=function()
|
comp_updating_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
if hero.o~="d" then return end
|
if hero.o~="u" then return end
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("NO VAN ELS COMPS\nESTAN TOTS ACTUALITZANT",2,"jailer",true,{x=1,w=15,h=2}) end
|
function() balloon.show("SON COMPS DE PRÀCTIQUES\nESTAN MEGA CAPATS",2,"jailer",false,{x=1,w=15,h=2}) end
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
profe_action=function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
if not flags.prac3 then
|
||||||
|
flags.prac3=1
|
||||||
|
scene.start({
|
||||||
|
function() actors.face("profe","jailer") scene.cont() end,
|
||||||
|
function() balloon.show("EI PERDONA...\nNO TE FUNCIONA\nEL COMP...",2,"jailer",true,{x=5,w=9,h=3}) end,
|
||||||
|
function() balloon.show("NO DEURIES AVISAR\nA USUFONDO?",2,"jailer",true,{x=4,w=11,h=2}) end,
|
||||||
|
function() balloon.show("NO PASA NADA,\nNO ME HACE FALTA.",12,"profe",true,{x=6,w=11,h=2}) end,
|
||||||
|
function() balloon.show("ESTA PRÁCTICA ES\nBASTANTE TEÓRICA.",12,"profe",true,{x=6,w=11,h=2}) end,
|
||||||
|
function() actors.search("profe").o="u" scene.cont() end,
|
||||||
|
function() balloon.show("MECACHIS...",2,"jailer",true,{x=5,w=8,h=1}) end,
|
||||||
|
})
|
||||||
|
else
|
||||||
|
scene.start({
|
||||||
|
function() actors.face("profe","jailer") scene.cont() end,
|
||||||
|
function() balloon.show("LE HE DICHO QUE\nNO SE PREOCUPE.",12,"profe",true,{x=6,w=11,h=2}) end,
|
||||||
|
function() balloon.show("SIÉNTESE Y DEJE\nDE HACER LA MONA.",12,"profe",true,{x=6,w=11,h=2}) end,
|
||||||
|
function() actors.search("profe").o="u" scene.cont() end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
|
||||||
comp_profe_action=function()
|
comp_profe_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
if hero.o~="d" then return end
|
if hero.o~="d" then return end
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("PAREIX QUE NO FUNCIONA...",2,"jailer",true,{x=1,w=13,h=1}) end
|
function() balloon.show("PAREIX QUE NO\nFUNCIONA...",2,"jailer",true,{x=3,w=9,h=2}) end
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
taza_usufondo_action=function()
|
alumne1_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
if hero.o~="d" then return end
|
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("EL CAFÉ DE USUFONDO.\nESTÀ GELAT COM EL COR DEL DIMONI!",2,"jailer",true,{x=1,w=15,h=2}) end
|
function() balloon.show("ESTIC FENT UNA\nPÀGINA WEB!",12,"alumne1",false,{x=6,w=9,h=2}) end,
|
||||||
|
function() balloon.show("WWW.GEOCITIES.COM/PAQUITO",12,"alumne1",false,{x=3,w=15,h=1}) end,
|
||||||
|
function() balloon.show("VAIG A FICAR ESTE\nCONTADOR DE VISITES QUE\nM'HA PROGRAMAT KNUNK...",12,"alumne1",false,{x=3,w=15,h=3}) end,
|
||||||
|
function() balloon.show("...",2,"jailer",false,{x=8,w=4,h=1}) end,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
disquito_usufondo_action=function()
|
alumne2_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
--if hero.o~="d" then return end
|
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("NO ÉS EL MEU DISQUITO,\nPERÒ ME'L QUEDE!\nIGUAL ES IMPORTANT",2,"jailer",true,{x=1,w=15,h=3}) end,
|
function() balloon.show("ALFIL A C4...",12,"alumne2",true,{x=6,w=9,h=1}) end,
|
||||||
function() actors.remove("disquito_usufondo") scene.cont() end,
|
function() balloon.show("APERTURA DE ALFIL...\nINTERESANTE...",15,"alumne4",false,{x=3,w=12,h=2}) end,
|
||||||
function() objects.collect("diskito_usufondo") scene.cont() end,
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
alumne3_action=function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("SSHHH!!",12,"alumne3",false,{x=1,w=6,h=1}) end,
|
||||||
|
function() balloon.show("ESTOY ATENDIENDO...",12,"alumne3",false,{x=1,w=12,h=1}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
alumne5_action=function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("ZZZ...",12,"alumne5",false,{x=11,w=5,h=1}) end,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ levels["repro"]={
|
|||||||
actors.add({name="comp",x=3,y=6,o="d",gfx={x=96,y=0}})
|
actors.add({name="comp",x=3,y=6,o="d",gfx={x=96,y=0}})
|
||||||
actors.add({name="impresora",x=5,y=6,o="d",gfx={x=176,y=16}})
|
actors.add({name="impresora",x=5,y=6,o="d",gfx={x=176,y=16}})
|
||||||
|
|
||||||
actors.add({name="currante1",x=9,y=11,o="d",gfx={x=16,y=48}})
|
actors.add({name="currante1",x=9,y=11,o="d",gfx={x=128,y=48}})
|
||||||
actors.add({name="currante2",x=4,y=5,o="d",gfx={x=16,y=80}})
|
actors.add({name="currante2",x=4,y=5,o="d",gfx={x=16,y=80}})
|
||||||
|
|
||||||
switches.add({x=9,y=16,w=1,h=1,action=
|
switches.add({x=9,y=16,w=1,h=1,action=
|
||||||
@@ -35,11 +35,12 @@ levels["repro"]={
|
|||||||
|
|
||||||
switches.add({x=15,y=13,w=1,h=1,action=
|
switches.add({x=15,y=13,w=1,h=1,action=
|
||||||
function()
|
function()
|
||||||
|
if not objects.collected("moneda2") then table.insert(objects.list, "moneda2") end
|
||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
if hero.o=="u" then
|
if hero.o=="u" then
|
||||||
scene.start({
|
scene.start({
|
||||||
function() balloon.show("NO POTS PASAR!",12,"currante1",false,{x=5,w=10,h=1}) end,
|
function() balloon.show("NO POTS PASAR!",12,"currante1",false,{x=5,w=10,h=1}) end,
|
||||||
function() balloon.show("NOMES EL QUALIFICAT PERSONAL\nDE REPROGRAFIA POR ENTRAR ACÍ",12,"currante1",false,{x=2,w=17,h=2}) end
|
function() balloon.show("NOMES EL QUALIFICAT PERSONAL\nDE REPROGRAFIA POT ENTRAR ACÍ",12,"currante1",false,{x=2,w=17,h=2}) end
|
||||||
})
|
})
|
||||||
return true
|
return true
|
||||||
else
|
else
|
||||||
@@ -52,13 +53,46 @@ levels["repro"]={
|
|||||||
|
|
||||||
currante1_action=function()
|
currante1_action=function()
|
||||||
local hero = actors.search(actors.main.name)
|
local hero = actors.search(actors.main.name)
|
||||||
scene.start({
|
--flags.apuntes=1
|
||||||
function() balloon.show("BON DIA!",12,"currante1",false,{x=6,w=7,h=1}) end,
|
|
||||||
function() balloon.show("QUINS APUNTES\nNECESSITES?",12,"currante1",false,{x=6,w=8,h=2}) end,
|
if not flags.apuntes then
|
||||||
function() balloon.show("NO TINC NI IDEA",2,"jailer",true,{x=5,w=10,h=1}) end,
|
scene.start({
|
||||||
function() balloon.show("POS MAL ANEM...",12,"currante1",false,{x=5,w=10,h=1}) end,
|
function() balloon.show("BON DIA!",12,"currante1",false,{x=6,w=7,h=1}) end,
|
||||||
function() balloon.show("TORNA QUAN SAPIGUES\nEL QUE VOLS",12,"currante1",false,{x=4,w=12,h=2}) end,
|
function() balloon.show("QUINS APUNTES\nNECESSITES?",12,"currante1",false,{x=6,w=8,h=2}) end,
|
||||||
})
|
function() balloon.show("NO TINC NI IDEA",2,"jailer",true,{x=5,w=10,h=1}) end,
|
||||||
|
function() balloon.show("POS MAL ANEM...",12,"currante1",false,{x=5,w=10,h=1}) end,
|
||||||
|
function() balloon.show("TORNA QUAN SAPIGUES\nEL QUE VOLS",12,"currante1",false,{x=4,w=12,h=2}) end,
|
||||||
|
})
|
||||||
|
else
|
||||||
|
if not objects.collected("moneda") then
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("BON DIA!",12,"currante1",false,{x=6,w=7,h=1}) end,
|
||||||
|
function() balloon.show("QUINS APUNTES\nNECESSITES?",12,"currante1",false,{x=6,w=8,h=2}) end,
|
||||||
|
function() balloon.show("VULL ELS DE CMC",2,"jailer",true,{x=5,w=10,h=1}) end,
|
||||||
|
function() balloon.show("PERFECTE!\nVAL 1 MONEDA!",12,"currante1",false,{x=5,w=9,h=2}) end,
|
||||||
|
function() balloon.show("MONEDA!?\nNO DUC DINERS!",2,"jailer",true,{x=5,w=9,h=2}) end,
|
||||||
|
function() balloon.show("HO SENT MOLT, PERO\nSENSE PASTA NO HI HA\nAPUNTES...",12,"currante1",false,{x=3,w=12,h=3}) end,
|
||||||
|
})
|
||||||
|
else
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("BON D...\nTU ALTRA VEGADA?",12,"currante1",false,{x=4,w=10,h=2}) end,
|
||||||
|
function() balloon.show("QUINS APUNTES\nVOLIES?",12,"currante1",false,{x=6,w=8,h=2}) end,
|
||||||
|
function() balloon.show("ELS DE CMC!",2,"jailer",true,{x=6,w=8,h=1}) end,
|
||||||
|
function() balloon.show("PERO VALEN\n1 MONEDA...",12,"currante1",false,{x=5,w=8,h=2}) end,
|
||||||
|
function() balloon.show("ACI TENS!",2,"jailer",true,{x=6,w=7,h=1}) end,
|
||||||
|
function() objects.leave("moneda") scene.cont() end,
|
||||||
|
function() balloon.show("PERFECTE!\nDONAM UN SEGON...",12,"currante1",false,{x=3,w=11,h=2}) end,
|
||||||
|
function() actors.search("currante1").path={pos=0,route='ulluuur'} end,
|
||||||
|
function() wait.start(1) end,
|
||||||
|
function() actors.search("currante1").path={pos=0,route='uur'} end,
|
||||||
|
function() wait.start(1.5) end,
|
||||||
|
function() balloon.show("AH!\nACÍ ESTÀN",12,"currante1",true,{x=4,w=7,h=2}) end,
|
||||||
|
function() actors.search("currante1").path={pos=0,route='dddddrrd'} end,
|
||||||
|
function() balloon.show("ACÍ TENS!\nEL 1015 D'INFORMÀTICA",12,"currante1",false,{x=3,w=13,h=2}) end,
|
||||||
|
function() objects.collect("apuntes") end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
}
|
}
|
||||||
81
data/m_vella.lua
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
levels["vella"]={
|
||||||
|
load=function()
|
||||||
|
mapa.load("vella.map")
|
||||||
|
|
||||||
|
actors.add({name="taula1",x=7,y=13,o="d",gfx={x=224,y=48}})
|
||||||
|
actors.add({name="taula2",x=11,y=10,o="d",gfx={x=224,y=48}})
|
||||||
|
actors.add({name="taula3",x=9,y=6,o="d",gfx={x=224,y=48}})
|
||||||
|
actors.add({name="taula4",x=5,y=9,o="d",gfx={x=224,y=48}})
|
||||||
|
actors.add({name="taula5",x=19,y=7,o="d",gfx={x=224,y=48}})
|
||||||
|
actors.add({name="taula6",x=17,y=13,o="d",gfx={x=224,y=48}})
|
||||||
|
|
||||||
|
actors.add({name="taula7",x=13,y=28,o="d",gfx={x=224,y=48}})
|
||||||
|
actors.add({name="taula8",x=21,y=28,o="d",gfx={x=224,y=48}})
|
||||||
|
|
||||||
|
actors.add({name="taula_caixer",x=43,y=21,o="d",gfx={x=224,y=48},action=levels.vella.caixer_action})
|
||||||
|
actors.add({name="caixer",x=43,y=20,o="d",gfx={x=32,y=48}})
|
||||||
|
actors.add({name="comp_caixer",x=45,y=21,o="d",gfx={x=112,y=0}})
|
||||||
|
|
||||||
|
actors.add({name="alumne1",x=5,y=20,o="r",gfx={x=32,y=48},action=levels.vella.alumne1_action})
|
||||||
|
actors.add({name="alumne2",x=9,y=20,o="d",gfx={x=64,y=80},action=levels.vella.alumne1_action})
|
||||||
|
actors.add({name="alumne3",x=9,y=21,o="d",gfx={x=160,y=48},action=levels.vella.alumne1_action})
|
||||||
|
actors.add({name="alumne4",x=13,y=27,o="d",gfx={x=128,y=48},action=levels.vella.alumne1_action})
|
||||||
|
actors.add({name="alumne5",x=15,y=29,o="d",gfx={x=64,y=32},action=levels.vella.alumne1_action})
|
||||||
|
|
||||||
|
actors.add({name="alumne6",x=39,y=22,o="d",gfx={x=64,y=80},action=levels.vella.alumne1_action})
|
||||||
|
actors.add({name="alumne7",x=39,y=21,o="d",gfx={x=160,y=48},action=levels.vella.alumne1_action})
|
||||||
|
actors.add({name="alumne8",x=35,y=22,o="r",gfx={x=32,y=48},action=levels.vella.alumne1_action})
|
||||||
|
actors.add({name="cadira1",x=35,y=23,o="d",gfx={x=160,y=64}})
|
||||||
|
actors.add({name="cadira2",x=27,y=22,o="d",gfx={x=160,y=64}})
|
||||||
|
|
||||||
|
actors.add({name="alumne9",x=44,y=28,o="d",gfx={x=128,y=48}})
|
||||||
|
actors.add({name="alumne10",x=27,y=21,o="r",gfx={x=96,y=48},action=levels.vella.alumne1_action})
|
||||||
|
actors.add({name="alumne11",x=38,y=28,o="d",gfx={x=16,y=80}})
|
||||||
|
|
||||||
|
actors.add({name="alumne_cua1",x=27,y=25,o="d",gfx={x=16,y=64}})
|
||||||
|
actors.add({name="alumne_cua2",x=26,y=26,o="d",gfx={x=0,y=80}})
|
||||||
|
actors.add({name="alumne_cua3",x=26,y=27,o="d",gfx={x=0,y=64}})
|
||||||
|
|
||||||
|
switches.add({x=3,y=34,w=8,h=1,action=
|
||||||
|
function()
|
||||||
|
local hero = actors.search(actors.main.name)
|
||||||
|
if hero.o=="d" then
|
||||||
|
game.paused = true
|
||||||
|
fade.fadeout()
|
||||||
|
actors.main.x=67
|
||||||
|
actors.main.y=4
|
||||||
|
actors.main.o="d"
|
||||||
|
actors.main.level="arq"
|
||||||
|
game.init("arq")
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
caixer_action=function()
|
||||||
|
--local hero = actors.search(actors.main.name)
|
||||||
|
--if hero.o~="d" then return end
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("BON DIA CARINYET!\nQUE VOLS MENJAR?",15,"caixer",false,{x=4,w=11,h=2}) end,
|
||||||
|
function() balloon.show("POS OBVIAMENT\nUN BOCADILL DE\nSOBRASADA PATA...",2,"jailer",true,{x=3,w=11,h=3}) end,
|
||||||
|
function() balloon.show("CLAR QUE SI,\nCARINYET!\nVAL UNA MONEDA!",15,"caixer",false,{x=4,w=11,h=3}) end,
|
||||||
|
function() balloon.show("NO DUC MONEDES...",2,"jailer",true,{x=3,w=11,h=1}) end,
|
||||||
|
function() balloon.show(" AH...",15,"caixer",false,{x=4,w=11,h=1}) end,
|
||||||
|
function() balloon.show("I PA QUE VENS\nA DEMANAR UN BOCATA\nSI NO DUS DINERS?",15,"caixer",false,{x=3,w=12,h=3}) end,
|
||||||
|
function() balloon.show("JO QUE SE...",2,"jailer",true,{x=3,w=11,h=1}) end,
|
||||||
|
function() balloon.show("ACÒ ES UNA AVENTURA,\nVAIG APRETANT-LI A TOT",2,"jailer",true,{x=3,w=13,h=2}) end,
|
||||||
|
function() balloon.show("AH, MOLT BE!\nPOS QUE TINGUES\nSORT, CARINYET!",15,"caixer",false,{x=4,w=10,h=3}) end,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
|
alumne1_action=function()
|
||||||
|
--local hero = actors.search(actors.main.name)
|
||||||
|
--if hero.o~="d" then return end
|
||||||
|
scene.start({
|
||||||
|
function() balloon.show("NO VAN ELS COMPS\nESTAN TOTS ACTUALITZANT",2,"jailer",true,{x=1,w=15,h=2}) end
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
}
|
||||||
@@ -2,42 +2,45 @@ require "fade"
|
|||||||
require "game"
|
require "game"
|
||||||
require "editor"
|
require "editor"
|
||||||
require "menu"
|
require "menu"
|
||||||
|
require "jailmoji"
|
||||||
|
|
||||||
function _init()
|
function mini.init()
|
||||||
menu_option=0
|
menu_option=0
|
||||||
sprites=loadsurf("sprites.gif")
|
objectes=surf.load("objects.gif")
|
||||||
objectes=loadsurf("objects.gif")
|
tiles=surf.load("tiles.gif")
|
||||||
tiles=loadsurf("tiles.gif")
|
surf.source(tiles)
|
||||||
setsource(tiles)
|
local p=pal.load("tiles.gif")
|
||||||
local pal=loadpal("tiles.gif")
|
pal.set(p)
|
||||||
setpal(pal)
|
sprites=surf.load("sprites.gif")
|
||||||
beat(6)
|
sys.beat(6)
|
||||||
fade.init()
|
fade.init()
|
||||||
main_init()
|
main_init()
|
||||||
end
|
end
|
||||||
|
|
||||||
function _update()
|
function mini.update()
|
||||||
update()
|
update()
|
||||||
end
|
end
|
||||||
|
|
||||||
function text(txt,x,y,col)
|
function text(txt,x,y,col)
|
||||||
color(6)
|
draw.text(txt,x-1,y-1,6)
|
||||||
prnt(txt,x-1,y-1)
|
draw.text(txt,x,y-1,6)
|
||||||
prnt(txt,x,y-1)
|
draw.text(txt,x+1,y-1,6)
|
||||||
prnt(txt,x+1,y-1)
|
draw.text(txt,x-1,y,6)
|
||||||
prnt(txt,x-1,y)
|
draw.text(txt,x+1,y,6)
|
||||||
prnt(txt,x+1,y)
|
draw.text(txt,x-1,y+1,6)
|
||||||
prnt(txt,x-1,y+1)
|
draw.text(txt,x,y+1,6)
|
||||||
prnt(txt,x,y+1)
|
draw.text(txt,x+1,y+1,6)
|
||||||
prnt(txt,x+1,y+1)
|
draw.text(txt,x,y,col)
|
||||||
color(col)
|
|
||||||
prnt(txt,x,y)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function main_init()
|
function main_init()
|
||||||
set_update(menu_update)
|
--set_update(menu_update)
|
||||||
second_menu = {{"PEIV", function() end},{"TORNAR",show_main_menu}}
|
second_menu = {{"PEIV", function() end},{"TORNAR",show_main_menu}}
|
||||||
main_menu = { {"JUGAR", game.restart}, {"EDITOR", editor.init}, {"EIXIR", quit}, {"TEST", function() menu.show(second_menu) end } }
|
main_menu = { {"JUGAR", game.restart},
|
||||||
|
{"EDITOR", editor.init},
|
||||||
|
{"JAILMOJI", jailmoji.editor.show},
|
||||||
|
{"EIXIR", sys.quit},
|
||||||
|
{"TEST", function() menu.show(second_menu) end } }
|
||||||
show_main_menu()
|
show_main_menu()
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -50,9 +53,8 @@ function set_update(new_update)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function menu_update()
|
function menu_update()
|
||||||
cls()
|
surf.cls()
|
||||||
color(1)
|
draw.text("JAIL'S ADVENTURE 2",10,10,1)
|
||||||
prnt("JAIL'S ADVENTURE 2",10,10)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function getkeyval(str)
|
function getkeyval(str)
|
||||||
|
|||||||
@@ -2,19 +2,20 @@ mapa={
|
|||||||
name=nil,
|
name=nil,
|
||||||
w=128,
|
w=128,
|
||||||
h=128,
|
h=128,
|
||||||
surface=nil,
|
surface=-1,
|
||||||
|
|
||||||
new = function(w,h)
|
new = function(w,h)
|
||||||
mapa.name=nil
|
mapa.name=nil
|
||||||
mapa.w,mapa.h=w,h
|
mapa.w,mapa.h=w,h
|
||||||
if mapa.surface~=nil then freesurf(mapa.surface) end
|
if mapa.surface~=-1 then surf.free(mapa.surface) end
|
||||||
mapa.surface=newsurf(w,h)
|
mapa.surface=surf.new(w,h)
|
||||||
setmap(mapa.surface)
|
map.surf(mapa.surface)
|
||||||
for y=0,127 do
|
for y=0,127 do
|
||||||
for x=0,127 do
|
for x=0,127 do
|
||||||
mset(x,y,0)
|
map.tile(x,y,0)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
mapa.front_layer=nil
|
||||||
end,
|
end,
|
||||||
|
|
||||||
load = function(filename)
|
load = function(filename)
|
||||||
@@ -31,25 +32,25 @@ mapa={
|
|||||||
local line = io.read()
|
local line = io.read()
|
||||||
local x=0
|
local x=0
|
||||||
for m in string.gmatch(line, "%d+") do
|
for m in string.gmatch(line, "%d+") do
|
||||||
mset(x,y,m)
|
map.tile(x,y,m)
|
||||||
x=x+1
|
x=x+1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if num_layers==2 then
|
if num_layers==2 then
|
||||||
mapa.front_layer=newsurf(mapa.w,mapa.h)
|
mapa.front_layer=surf.new(mapa.w,mapa.h)
|
||||||
setmap(mapa.front_layer)
|
map.surf(mapa.front_layer)
|
||||||
|
|
||||||
for y=0,mapa.h-1 do
|
for y=0,mapa.h-1 do
|
||||||
local line = io.read()
|
local line = io.read()
|
||||||
local x=0
|
local x=0
|
||||||
for m in string.gmatch(line, "%d+") do
|
for m in string.gmatch(line, "%d+") do
|
||||||
mset(x,y,m)
|
map.tile(x,y,m)
|
||||||
x=x+1
|
x=x+1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
setmap(mapa.surface)
|
map.surf(mapa.surface)
|
||||||
io.close(file)
|
io.close(file)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
@@ -62,18 +63,18 @@ mapa={
|
|||||||
io.write(mapa.w.."\n")
|
io.write(mapa.w.."\n")
|
||||||
io.write(mapa.h.."\n")
|
io.write(mapa.h.."\n")
|
||||||
if mapa.front_layer then io.write("2\n") else io.write("1\n") end
|
if mapa.front_layer then io.write("2\n") else io.write("1\n") end
|
||||||
setmap(mapa.surface)
|
map.surf(mapa.surface)
|
||||||
for y=0,mapa.h-1 do
|
for y=0,mapa.h-1 do
|
||||||
for x=0,mapa.w-1 do
|
for x=0,mapa.w-1 do
|
||||||
io.write(mget(x,y)..",")
|
io.write(map.tile(x,y)..",")
|
||||||
end
|
end
|
||||||
io.write("\n")
|
io.write("\n")
|
||||||
end
|
end
|
||||||
if mapa.front_layer then
|
if mapa.front_layer then
|
||||||
setmap(mapa.front_layer)
|
map.surf(mapa.front_layer)
|
||||||
for y=0,mapa.h-1 do
|
for y=0,mapa.h-1 do
|
||||||
for x=0,mapa.w-1 do
|
for x=0,mapa.w-1 do
|
||||||
io.write(mget(x,y)..",")
|
io.write(map.tile(x,y)..",")
|
||||||
end
|
end
|
||||||
io.write("\n")
|
io.write("\n")
|
||||||
end
|
end
|
||||||
@@ -83,6 +84,6 @@ mapa={
|
|||||||
end,
|
end,
|
||||||
|
|
||||||
check_collision=function(x,y)
|
check_collision=function(x,y)
|
||||||
return mget(x,y) > 16 or mget(x+1,y) > 16
|
return map.tile(x,y) >= 32 or map.tile(x+1,y) >= 32
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
@@ -15,35 +15,36 @@ menu = {
|
|||||||
update=function()
|
update=function()
|
||||||
--menu.old_update()
|
--menu.old_update()
|
||||||
|
|
||||||
rectfill(9,20, 150, 34+#menu.options*10,6)
|
draw.rectf(9,20, 141, 14+#menu.options*10,6)
|
||||||
rect(9,20, 150, 34+#menu.options*10,8)
|
draw.rect(9,20, 141, 14+#menu.options*10,8)
|
||||||
rect(8,19, 151, 35+#menu.options*10,6)
|
draw.rect(8,19, 143, 16+#menu.options*10,6)
|
||||||
|
|
||||||
for i,v in ipairs(menu.options) do
|
for i,v in ipairs(menu.options) do
|
||||||
color(4) if menu.selected==i then color(15) prnt(">",20,20+i*10) end
|
local color=4
|
||||||
prnt(v[1],24,20+i*10)
|
if menu.selected==i then color=15 draw.text(">",20,20+i*10,color) end
|
||||||
|
draw.text(v[1],24,20+i*10,color)
|
||||||
end
|
end
|
||||||
|
|
||||||
if btnp(KEY_DOWN) then menu.selected=menu.selected+1 end
|
if key.press(key.DOWN) then menu.selected=menu.selected+1 end
|
||||||
if btnp(KEY_UP) then menu.selected=menu.selected-1 end
|
if key.press(key.UP) then menu.selected=menu.selected-1 end
|
||||||
if menu.selected==0 then menu.selected=#menu.options end
|
if menu.selected==0 then menu.selected=#menu.options end
|
||||||
if menu.selected>#menu.options then menu.selected=1 end
|
if menu.selected>#menu.options then menu.selected=1 end
|
||||||
|
|
||||||
local mx,my=mousex(),mousey()
|
local mx,my=mouse.pos()
|
||||||
if mx>=20 and mx<=140 and my>=28 and my<=(28+#menu.options*10) then
|
if mx>=20 and mx<=140 and my>=28 and my<=(28+#menu.options*10) then
|
||||||
menu.selected=min(1+flr((my-28)/10),#menu.options)
|
menu.selected=math.min(1+math.floor((my-28)/10),#menu.options)
|
||||||
if mbtnp(1) then
|
if mouse.press(mouse.LEFT) then
|
||||||
update=menu.old_update
|
update=menu.old_update
|
||||||
menu.options[menu.selected][2]()
|
menu.options[menu.selected][2]()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if btnp(KEY_RETURN) then
|
if key.press(key.RETURN) then
|
||||||
update=menu.old_update
|
update=menu.old_update
|
||||||
menu.options[menu.selected][2]()
|
menu.options[menu.selected][2]()
|
||||||
end
|
end
|
||||||
|
|
||||||
if btnp(KEY_ESCAPE) then
|
if key.press(key.ESCAPE) then
|
||||||
if menu.return_function then
|
if menu.return_function then
|
||||||
update=menu.old_update
|
update=menu.old_update
|
||||||
menu.return_function()
|
menu.return_function()
|
||||||
|
|||||||
BIN
data/objects.gif
|
Before Width: | Height: | Size: 700 B After Width: | Height: | Size: 979 B |
@@ -10,7 +10,7 @@ objects={
|
|||||||
|
|
||||||
leave=function(name)
|
leave=function(name)
|
||||||
for i,obj in ipairs(objects.list) do
|
for i,obj in ipairs(objects.list) do
|
||||||
if object[obj].name and object[obj].name==name then
|
if obj==name then
|
||||||
table.remove(objects.list,i)
|
table.remove(objects.list,i)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@@ -23,9 +23,21 @@ objects={
|
|||||||
return object[obj]
|
return object[obj]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end,
|
||||||
|
|
||||||
|
collected=function(obj)
|
||||||
|
for i,o in ipairs(objects.list) do
|
||||||
|
if o==obj then return true end
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
object={
|
object={
|
||||||
diskito_usufondo={name="DISQUITO DE USUFONDO",x=0,y=0}
|
diskito_knunk={name="DISQUITO DE KNUNK",x=0,y=0},
|
||||||
|
diskito_usufondo={name="DISQUITO DE USUFONDO",x=16,y=0},
|
||||||
|
moneda={name="MONEDA",x=32,y=0},
|
||||||
|
moneda2={name="ALTRA MONEDA",x=32,y=0},
|
||||||
|
apuntes={name="APUNTES",x=48,y=0},
|
||||||
|
rosquilletes={name="ROSQUILLETES",x=64,y=0},
|
||||||
}
|
}
|
||||||
@@ -1,21 +1,21 @@
|
|||||||
20
|
20
|
||||||
18
|
18
|
||||||
1
|
1
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
17,17,17,25,26,26,26,26,26,26,26,26,26,26,26,26,27,17,17,17,
|
33,33,33,41,42,42,42,42,42,42,42,42,42,42,42,42,43,33,33,33,
|
||||||
17,17,17,16,23,24,23,24,102,103,103,104,23,24,23,24,18,17,17,17,
|
33,33,33,32,39,40,39,40,118,119,119,120,39,40,39,40,34,33,33,33,
|
||||||
17,17,17,16,39,40,39,40,118,119,119,120,39,40,39,40,18,17,17,17,
|
33,33,33,32,55,56,55,56,134,135,135,136,55,56,55,56,34,33,33,33,
|
||||||
17,17,17,16,55,56,55,56,55,56,55,56,47,56,55,56,18,17,17,17,
|
33,33,33,32,71,72,71,72,71,72,71,72,63,72,71,72,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,63,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,79,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,32,33,33,33,33,48,2,5,49,33,33,33,33,34,17,17,17,
|
33,33,33,48,49,49,49,49,64,2,5,65,49,49,49,49,50,33,33,33,
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
20
|
20
|
||||||
18
|
18
|
||||||
1
|
1
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
17,17,17,25,26,26,26,26,26,26,26,26,26,26,26,26,27,17,17,17,
|
33,33,33,41,42,42,42,42,42,42,42,42,42,42,42,42,43,33,33,33,
|
||||||
17,17,17,16,23,24,102,103,103,104,23,24,23,24,23,24,18,17,17,17,
|
33,33,33,32,39,40,118,119,119,120,39,40,39,40,39,40,34,33,33,33,
|
||||||
17,17,17,16,39,40,118,119,119,120,39,40,39,40,39,40,18,17,17,17,
|
33,33,33,32,55,56,134,135,135,136,55,56,55,56,55,56,34,33,33,33,
|
||||||
17,17,17,16,47,56,55,56,55,56,55,56,55,56,55,56,18,17,17,17,
|
33,33,33,32,63,72,71,72,71,72,71,72,71,72,71,72,34,33,33,33,
|
||||||
17,17,17,16,63,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,79,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,87,88,89,90,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,103,104,105,106,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,32,33,33,33,33,33,33,33,48,2,5,49,33,34,17,17,17,
|
33,33,33,48,49,49,49,49,49,49,49,64,2,5,65,49,50,33,33,33,
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
20
|
20
|
||||||
18
|
18
|
||||||
1
|
1
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
17,17,17,25,26,26,26,26,26,26,26,26,26,26,26,26,27,17,17,17,
|
33,33,33,41,42,42,42,42,42,42,42,42,42,42,42,42,43,33,33,33,
|
||||||
17,17,17,16,23,24,23,24,23,24,102,103,103,104,23,24,18,17,17,17,
|
33,33,33,32,39,40,39,40,39,40,118,119,119,120,39,40,34,33,33,33,
|
||||||
17,17,17,16,39,40,39,40,39,40,118,119,119,120,39,40,18,17,17,17,
|
33,33,33,32,55,56,55,56,55,56,134,135,135,136,55,56,34,33,33,33,
|
||||||
17,17,17,16,55,56,55,56,55,56,55,56,55,56,55,47,18,17,17,17,
|
33,33,33,32,71,72,71,72,71,72,71,72,71,72,71,63,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,63,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,79,34,33,33,33,
|
||||||
17,17,17,16,5,2,87,88,89,90,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,103,104,105,106,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,87,88,89,90,5,2,5,2,87,88,89,90,18,17,17,17,
|
33,33,33,32,103,104,105,106,5,2,5,2,103,104,105,106,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,
|
33,33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,33,
|
||||||
17,17,17,32,33,48,2,5,49,33,33,33,33,33,33,33,34,17,17,17,
|
33,33,33,48,49,64,2,5,65,49,49,49,49,49,49,49,50,33,33,33,
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
20
|
20
|
||||||
18
|
18
|
||||||
1
|
1
|
||||||
17,17,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,17,17,
|
33,33,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,43,33,33,
|
||||||
17,17,16,23,24,23,24,23,24,23,24,23,24,23,24,23,24,18,17,17,
|
33,33,32,39,40,39,40,39,40,39,40,39,40,39,40,39,40,34,33,33,
|
||||||
17,17,16,41,42,39,40,39,40,99,99,79,40,99,99,79,40,18,17,17,
|
33,33,32,57,58,55,56,55,56,115,115,95,56,115,115,95,56,34,33,33,
|
||||||
17,17,16,55,56,55,56,47,56,115,115,55,56,115,115,55,56,18,17,17,
|
33,33,32,71,72,71,72,63,72,131,131,71,72,131,131,71,72,34,33,33,
|
||||||
17,17,16,5,2,5,2,63,2,99,99,5,2,99,99,5,2,18,17,17,
|
33,33,32,5,2,5,2,79,2,115,115,5,2,115,115,5,2,34,33,33,
|
||||||
17,17,16,5,2,5,2,5,2,115,115,5,2,115,115,5,2,18,17,17,
|
33,33,32,5,2,5,2,5,2,131,131,5,2,131,131,5,2,34,33,33,
|
||||||
17,17,16,87,88,89,90,5,2,99,99,5,2,99,99,5,2,18,17,17,
|
33,33,32,103,104,105,106,5,2,115,115,5,2,115,115,5,2,34,33,33,
|
||||||
17,17,16,5,2,5,2,5,2,115,115,5,2,115,115,5,2,18,17,17,
|
33,33,32,5,2,5,2,5,2,131,131,5,2,131,131,5,2,34,33,33,
|
||||||
17,17,16,14,15,105,106,5,2,131,131,5,2,131,131,5,2,18,17,17,
|
33,33,32,14,15,121,122,5,2,147,147,5,2,147,147,5,2,34,33,33,
|
||||||
17,17,16,87,88,89,90,5,2,147,147,5,2,147,147,5,2,18,17,17,
|
33,33,32,103,104,105,106,5,2,163,163,5,2,163,163,5,2,34,33,33,
|
||||||
17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,
|
33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,
|
||||||
17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,5,14,18,17,17,
|
33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,5,14,34,33,33,
|
||||||
17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,
|
33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,
|
||||||
17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,
|
33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,
|
||||||
17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,
|
33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,
|
||||||
17,17,16,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,
|
33,33,32,5,2,5,2,5,2,5,2,5,2,5,2,5,2,34,33,33,
|
||||||
17,17,32,33,33,33,33,33,48,5,2,49,33,33,33,33,33,34,17,17,
|
33,33,48,49,49,49,49,49,64,5,2,65,49,49,49,49,49,50,33,33,
|
||||||
17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
|
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
|||||||
@@ -3,12 +3,14 @@ scene={
|
|||||||
pos=0,
|
pos=0,
|
||||||
|
|
||||||
start=function(script)
|
start=function(script)
|
||||||
|
if scene.script~=nil then return end
|
||||||
scene.pos=0
|
scene.pos=0
|
||||||
scene.script=script
|
scene.script=script
|
||||||
scene.cont()
|
scene.cont()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
cont=function()
|
cont=function()
|
||||||
|
game.draw()
|
||||||
if scene.script==nil then return end
|
if scene.script==nil then return end
|
||||||
scene.pos=scene.pos+1
|
scene.pos=scene.pos+1
|
||||||
if scene.script[scene.pos]==nil then
|
if scene.script[scene.pos]==nil then
|
||||||
|
|||||||
BIN
data/sprites.gif
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.6 KiB |
@@ -1,5 +1,10 @@
|
|||||||
switches={
|
switches={
|
||||||
list={},
|
list={},
|
||||||
|
col=0,
|
||||||
|
|
||||||
|
reset=function()
|
||||||
|
switches.list={}
|
||||||
|
end,
|
||||||
|
|
||||||
add=function(switch)
|
add=function(switch)
|
||||||
if not switch.w then switch.w=1 end
|
if not switch.w then switch.w=1 end
|
||||||
@@ -15,4 +20,14 @@ switches={
|
|||||||
end
|
end
|
||||||
return nil
|
return nil
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
draw=function()
|
||||||
|
text(#switches.list,1,25,8)
|
||||||
|
if switches.col<16 then
|
||||||
|
for i,v in ipairs(switches.list) do
|
||||||
|
draw.rect(v.x*8, v.y*8, (v.w+1)*8, (v.h)*8, 8);
|
||||||
|
end
|
||||||
|
end
|
||||||
|
switches.col=(switches.col+1)%32
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
73
|
|
||||||
29
|
|
||||||
1
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,101,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,23,24,23,24,23,24,19,20,21,22,23,24,23,24,23,24,23,24,23,24,23,24,23,24,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,39,40,39,40,39,40,35,36,75,76,79,40,39,40,39,40,41,42,39,40,107,108,77,78,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,47,56,57,58,59,56,51,52,91,92,55,56,57,58,59,56,55,56,47,56,123,124,93,94,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,63,2,7,8,9,2,5,2,5,2,5,2,7,8,9,2,5,2,63,2,139,140,109,110,5,2,5,2,5,2,5,2,18,
|
|
||||||
100,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,101,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,
|
|
||||||
28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,
|
|
||||||
23,24,23,24,19,20,21,22,23,24,19,20,21,22,23,24,23,24,23,24,19,20,21,22,23,24,23,24,23,24,23,24,19,20,21,22,23,24,23,24,5,2,5,2,5,2,5,2,84,86,86,86,86,86,86,86,86,86,86,86,86,86,86,85,5,2,5,2,5,2,5,2,18,
|
|
||||||
39,40,39,40,35,36,37,38,79,40,35,36,37,38,79,40,39,40,41,42,35,36,75,76,79,40,39,40,39,40,41,42,35,36,37,38,79,40,39,40,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
55,56,57,58,59,52,53,54,55,56,51,52,53,54,55,56,47,56,55,56,51,52,91,92,55,56,57,58,59,47,55,56,51,52,53,54,55,56,47,56,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
5,2,7,8,9,2,5,2,5,2,5,2,5,2,5,2,63,2,5,2,5,2,5,2,5,2,7,8,9,63,5,2,5,2,5,2,5,2,63,2,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
84,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,85,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,5,2,5,2,5,2,5,2,18,
|
|
||||||
100,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,101,5,2,5,2,5,2,5,2,100,26,26,26,26,26,26,26,26,26,26,26,26,26,26,101,5,2,5,2,5,2,5,2,18,
|
|
||||||
28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,5,2,5,2,5,2,5,2,28,29,28,29,28,29,28,29,28,29,28,29,28,29,28,29,5,2,5,2,5,2,5,2,18,
|
|
||||||
23,24,23,24,23,24,19,20,21,22,23,24,23,24,23,24,23,24,19,20,21,22,23,24,23,24,23,24,23,24,19,20,21,22,23,24,23,24,23,24,5,2,5,2,5,2,5,2,23,24,23,24,23,24,19,20,21,22,23,24,23,24,23,24,5,2,5,2,5,2,5,2,18,
|
|
||||||
39,40,39,40,41,42,35,36,75,76,79,40,39,40,39,40,39,40,35,36,75,76,79,40,41,42,39,40,39,40,35,36,75,76,79,40,41,42,39,40,5,2,5,2,5,2,5,2,39,40,39,40,41,42,35,36,75,76,79,40,39,40,39,40,5,2,5,2,5,2,5,2,18,
|
|
||||||
55,56,55,56,55,56,51,52,91,92,55,56,47,56,57,58,59,56,51,52,91,92,55,56,55,56,57,58,59,56,51,52,91,92,55,56,55,56,47,56,5,2,5,2,5,2,5,2,57,58,59,56,55,56,47,52,91,92,55,56,57,58,59,56,5,2,5,2,5,2,5,2,18,
|
|
||||||
5,2,5,2,5,2,5,2,5,2,5,2,63,2,7,8,9,2,5,2,5,2,5,2,5,2,7,8,9,2,5,2,5,2,5,2,5,2,63,2,5,2,5,2,5,2,5,2,7,8,9,2,5,2,63,2,5,2,5,2,7,8,9,2,5,2,5,2,5,2,5,2,18,
|
|
||||||
5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,
|
|
||||||
5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,5,2,18,
|
|
||||||
33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,34,
|
|
||||||
@@ -15,25 +15,25 @@ textbox={
|
|||||||
end,
|
end,
|
||||||
|
|
||||||
update=function()
|
update=function()
|
||||||
rectfill(20,50, 140, 90,6)
|
draw.rectf(20,50, 120, 40,6)
|
||||||
rect(20,50, 140, 90,8)
|
draw.rect(20,50, 120, 40,8)
|
||||||
if textbox.title then prnt(textbox.title,30,55) end
|
if textbox.title then draw.text(textbox.title,30,55,8) end
|
||||||
rect(40,70, 120, 80,8)
|
draw.rect(40,70, 80, 11,8)
|
||||||
if textbox.value then
|
if textbox.value then
|
||||||
prnt(textbox.value,43,73)
|
draw.text(textbox.value,43,73,8)
|
||||||
if (flr(time()*4)%2)==0 then
|
if (math.floor(sys.time()*4)%2)==0 then
|
||||||
prnt("_",43+#textbox.value*4,73)
|
draw.text("_",43+#textbox.value*4,73,8)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local tecla=btnp()
|
local tecla=key.press()
|
||||||
if tecla>=4 and tecla<=39 then
|
if tecla>=4 and tecla<=39 then
|
||||||
textbox.value=textbox.value..string.sub(keyvalues,tecla,tecla)
|
textbox.value=textbox.value..string.sub(keyvalues,tecla,tecla)
|
||||||
elseif tecla==KEY_PERIOD then
|
elseif tecla==key.PERIOD then
|
||||||
textbox.value=textbox.value.."."
|
textbox.value=textbox.value.."."
|
||||||
elseif tecla==KEY_BACKSPACE then
|
elseif tecla==key.BACKSPACE then
|
||||||
textbox.value=string.sub(textbox.value,1,-2)
|
textbox.value=string.sub(textbox.value,1,-2)
|
||||||
elseif tecla==KEY_RETURN then
|
elseif tecla==key.RETURN then
|
||||||
update=textbox.old_update
|
update=textbox.old_update
|
||||||
textbox.return_function(textbox.value)
|
textbox.return_function(textbox.value)
|
||||||
end
|
end
|
||||||
|
|||||||
BIN
data/tiles.gif
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 4.3 KiB |
73
data/vella.map
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
52
|
||||||
|
35
|
||||||
|
2
|
||||||
|
33,33,41,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,157,158,10,11,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,157,158,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,157,158,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,157,158,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,157,158,10,11,10,11,10,11,10,11,157,158,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,148,102,102,102,102,102,102,102,101,10,11,10,11,100,102,102,102,102,102,102,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
33,33,41,42,42,42,42,42,42,42,117,10,11,10,11,116,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,43,
|
||||||
|
33,33,32,137,137,137,137,137,137,137,152,10,11,10,11,138,137,137,137,137,137,137,137,137,137,150,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,248,249,250,250,249,251,137,137,137,137,34,
|
||||||
|
33,33,32,137,137,137,137,137,137,137,152,10,11,10,11,138,137,137,137,137,137,137,137,91,92,150,137,137,137,137,137,137,137,137,137,137,137,137,137,137,137,111,124,179,180,179,180,137,137,137,137,34,
|
||||||
|
33,33,32,153,153,153,153,141,142,153,168,10,11,10,11,154,153,153,153,141,142,153,153,107,108,151,153,200,153,141,142,153,153,153,153,200,153,141,142,153,153,127,140,153,153,153,153,200,153,141,142,34,
|
||||||
|
33,33,32,10,11,10,11,132,133,10,11,10,11,10,11,10,11,10,11,132,133,10,11,10,11,169,11,217,218,132,133,10,11,10,11,217,218,132,133,10,11,189,190,10,11,141,142,217,218,132,133,34,
|
||||||
|
33,33,32,10,11,10,11,132,133,10,11,10,11,10,11,10,11,10,11,132,133,10,11,10,11,169,11,10,11,132,133,10,11,10,11,10,11,132,133,10,11,10,11,157,158,157,158,217,218,132,133,34,
|
||||||
|
33,33,32,10,11,10,11,132,133,10,11,10,11,10,11,10,11,10,11,132,133,10,11,10,11,170,11,10,11,132,133,10,11,10,11,10,11,132,133,10,11,10,11,10,11,10,11,217,218,132,133,34,
|
||||||
|
33,33,32,10,11,10,11,157,158,10,11,10,11,10,11,10,11,10,11,157,158,10,11,10,11,10,11,10,11,157,158,10,11,10,11,10,11,157,158,10,11,10,11,10,11,10,11,10,11,157,158,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,132,133,10,11,10,11,10,11,132,133,10,11,10,11,10,11,10,11,10,11,10,11,11,11,11,11,11,11,11,11,10,11,10,11,10,11,10,11,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,132,133,10,11,10,11,10,11,132,133,10,11,150,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,213,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,132,133,10,11,10,11,10,11,132,133,10,11,150,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,10,11,132,133,10,11,10,11,10,11,132,133,10,11,150,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,10,11,34,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,100,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,50,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
33,33,32,10,11,10,11,10,11,10,11,34,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,164,167,0,
|
||||||
|
0,0,0,0,0,0,0,164,165,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,199,0,165,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,166,167,0,0,0,0,0,0,164,165,0,0,0,0,0,0,0,0,199,0,164,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,235,234,235,234,235,234,235,234,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,166,165,0,0,0,0,0,0,0,0,0,0,150,243,243,243,243,243,243,243,243,243,243,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||||
@@ -7,12 +7,12 @@ wait={
|
|||||||
wait.old_update=update
|
wait.old_update=update
|
||||||
update=wait.update
|
update=wait.update
|
||||||
wait.total_time=seconds
|
wait.total_time=seconds
|
||||||
wait.start_time=time()
|
wait.start_time=sys.time()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
update=function()
|
update=function()
|
||||||
wait.old_update()
|
wait.old_update()
|
||||||
if wait.total_time <= time()-wait.start_time then
|
if wait.total_time <= sys.time()-wait.start_time then
|
||||||
update=wait.old_update
|
update=wait.old_update
|
||||||
scene.cont()
|
scene.cont()
|
||||||
end
|
end
|
||||||
|
|||||||