123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- local UP,DOWN,LEFT,RIGHT = 0,1,2,3
- local A,B,X,Y = 4,5,6,7
- world={
- ents={},
- add_entity=function(ent)
- table.insert(world.ents, ent)
- return
- end,
- }
- player={
- x=0,y=0,dx=0,dy=0,spr=258,
- alt=0,alt_t=0,
- hp=0, mp=0, lvl=0, exp=0,
- upd=function(self)
- self.dx,self.dy=0,0
-
- if btn(LEFT) then self.dx=-1 end
- if btn(RIGHT) then self.dx=1 end
- if btn(UP) then self.dy=-1 end
- if btn(DOWN) then self.dy=1 end
- self.x=self.x+self.dx
- self.y=self.y+self.dy
-
- end,
- drw=function(self)
- if alt==1 then
- spr(self.spr,self.x,self.y,11,1,0,0,2,2)
- else
- spr(self.spr+2,self.x,self.y,11,1,0,0,2,2)
- end
- end,
- }
- world.add_entity(player)
- local g_opt = {
- ["music_vol"] = 16,
- ["sfx_vol"] = 16,
- ["difficulty"] = 1,
- }
- local growth = {
- }
- function write_p_opt()
- end
- function read_p_opt()
- end
- local talked_b = false
- local dlg_by_char = {
- ["SMITH"] = {
- },
- }
- local dlg = {
- ["intro_01"] = {
- { "SMITH", "You're being summoned to the Royal Court." },
- { "SMITH", "The guards are waiting for you out back. I can finish up here.", function() talked_b = true end },
- },
- ["intro_blacksmith"] = {{ "SMITH", "Go on, now." }},
- ["intro_02"] = {
- { "ARCHMAGE", "Ah, young one. Thank you for coming. I am the Royal Archmage and His Highness has a task most important." },
- { "ARCHMAGE", "Please, tell me. What was your name again?" },
- },
-
-
-
-
-
- }
- local dlg_key = "intro_01"
- local dlg_idx = 1
- function display_dialog(key_name)
-
- return dlg[key_name][dlg_idx][1] .. ": " .. dlg[key_name][dlg_idx][2]
- end
- function callback_dialog(key_name)
- local cb_func = dlg[key_name][dlg_idx][3]
- if cb_func then
- cb_func()
- else
- dlg_idx = dlg_idx + 1
- end
- end
- function set1bpp()
- poke4(2 * 0x3ffc, 8)
- end
- function set4bpp()
- poke4(2 * 0x3ffc, 2)
- end
- local pal_map_addr = 0x3ff0 * 2
- function draw_dialog_box(chr_idx)
- local w,h=180,50
- local x,y=120-(w//2),105-(h//2)
- rect(x+7,y+7,w-14,h-14,2)
- for xg=0,w-8,8 do
- spr(394,xg+x,y)
- spr(426,xg+x,y+h-8)
- end
- for yg=0,h-8,8 do
- spr(409,x,yg+y)
- spr(411,x+w-8,yg+y)
- end
-
- spr(393,x,y)
- spr(395,x+w-8,y)
- spr(425,x,y+h-8)
- spr(427,x+w-8,y+h-8)
-
- spr(396, 36, 48, 0, 1, 0, 0, 4, 4)
- spr(452, 36, 48, 14, 1, 0, 0, 4, 4)
- end
- function save_game(slot_id)
- end
- function load_game(slot_id)
- end
- function draw_dialog_text(lines, shadow)
- local shd = shadow or 1
- local offset = 0
- for i=1,#lines do
- if shd then
- wrt(lines[i], 41, 87+(offset*10), 0)
- end
- wrt(lines[i], 40, 86+(offset*10), 15)
- offset = offset + 1
- end
- end
- function wrt(text, x, y, color)
- set1bpp()
- poke4(pal_map_addr + 1, color)
- local textw = font(text, x, y, 0, 8, 8)
- poke4(pal_map_addr + 1, 1)
- set4bpp()
- return textw
- end
- testlines = {
- "BLACKSMITH",
- "What the actual &#@! is going",
- "on here?! You think you can",
- "just write lines as long as"
- }
- function TIC()
- cls(3)
-
-
-
-
-
-
- for i,v in ipairs(world.ents) do
- if v.upd then v:upd() end
- if v.drw then v:drw() end
- end
-
- end
|