demos
This commit is contained in:
106
cards/scrolltest.p8
Normal file
106
cards/scrolltest.p8
Normal file
@@ -0,0 +1,106 @@
|
||||
pico-8 cartridge // http://www.pico-8.com
|
||||
version 43
|
||||
__lua__
|
||||
-- game main loop
|
||||
|
||||
game_state={
|
||||
state = 1 -- 1: title 2: game 3: over
|
||||
}
|
||||
|
||||
|
||||
function _init()
|
||||
bx = 0
|
||||
by = 0
|
||||
map_x=0
|
||||
map_y=0
|
||||
finex=0
|
||||
finey=0
|
||||
end
|
||||
|
||||
function _update()
|
||||
-- update scrolling
|
||||
finex -=1
|
||||
if finex<-8 then
|
||||
finex=0
|
||||
bx +=1
|
||||
end
|
||||
map_x=map_x+finex
|
||||
|
||||
-- update game_objects
|
||||
for object in all(game_objects) do
|
||||
object:update()
|
||||
end
|
||||
end
|
||||
|
||||
function _draw()
|
||||
cls(12)
|
||||
-- draw background
|
||||
map(bx,by,finex,map_y,17,10)
|
||||
map(0,16,0,80,16,6)
|
||||
|
||||
-- draw game_objects
|
||||
for object in all(game_objects) do
|
||||
object:draw()
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
-->8
|
||||
-- game objects
|
||||
|
||||
game_objects={}
|
||||
|
||||
|
||||
|
||||
--[[ template:
|
||||
function make_object(_x,_y)
|
||||
|
||||
local object={
|
||||
x=_x,
|
||||
y=_y
|
||||
}
|
||||
|
||||
function object:update()
|
||||
end
|
||||
|
||||
function object:draw()
|
||||
spr(1,x,y)
|
||||
end
|
||||
|
||||
add(game_objects, object)
|
||||
return object
|
||||
end
|
||||
--]]
|
||||
|
||||
__gfx__
|
||||
00000000bbbbbbbb4444444499999999000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
00000000333b33334a44444a9aaaaaa9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
007007003b3333b344444a449aaaaaa9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0007700044444444444444449aaaaaa9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
00077000444a444444a444449aaaaaa9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
00700700444444a44444a4449aaaaaa9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
000000004a44a444444444a49aaaaaa9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
000000004444444444a4444499999999000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
__map__
|
||||
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0000000000000000010100000000000000000000000000000000000000000000000101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010101010000
|
||||
0000000000000000020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100000000000000000000000001010101010101010000000000000000000000000000000000000000000000000000000000000000000000000000000000000101010101000000010000
|
||||
0000000000000000000000000000000000000000000000000000010101010100000000000000000000010101010000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010101010100000000000000010000
|
||||
0000000000010100000000000000010101010100000000000000000000000000000000000000000000000000000000000001010100000000000000000000000000000000000000000000000000000000000101010101010000000000000000000000000000000000000000000000000000000000000000000000000000010000
|
||||
0000000000020200000000000000020202020200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010100000000000000000000000000010000
|
||||
0101010101020201010101010101020202020201010101010100000000000001010101000000000000000001010101010100000000000000000000000000000000000000000000000001010101010100000000000000000000000000000000000000000000000000000101010101000000000000000000000000000000010000
|
||||
0202020202020202020202020202020202020200000202020200000000000002020202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010101
|
||||
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100010101010101010101010100000000000000000000000000000000000000000000000001
|
||||
0000000000000000000000000000000000000000000000000000000000000000000000000000010101010101010101010101010101010101010101010000000000000000000000000000000000000000000001010101010101010000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0000010101010101000000000000000000000001010101010101010101010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0000000000000000010101010101000000000000000000000000000000000000000000000000010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0000000000000000000000000000000000000000000000000000000000000000000000010101010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0303030303030303030303030303030300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0303030303030303030303030303030300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0303030303030303030303030303030300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0303030303030303030303030303030300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0303030303030303030303030303030300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
0303030303030303030303030303030300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
Reference in New Issue
Block a user