Log In  

Cart #timepilot-0 | 2022-12-26 | Code ▽ | Embed ▽ | No License
30

Time Pilot Demake

I demaked the classic arcade game Time Pilot(1982 Konami).
Worked hard on the original game to work well on PICO-8.
But... Stage 4, 5 were made different from the original due to lack of tokens.

Game Play

If you want to play in CRT mode?

https://seimon.github.io/time-pilot/

P#123053 2022-12-26 06:52

1

Can I say you have the scrolling of the sky and the rotation of it absolutely perfect with the original game, @mooon. I used to binge play this game every day at the arcade.

Very nicely done ! Gold star to hang with your other flying medals. :)

P#123055 2022-12-26 07:10

@dw817 Thank you for your great compliment! >_<

P#123066 2022-12-26 11:07
1

Very well done! Nice transitions effects.

May need to tune a bit difficulty as the original screen size makes the encounters more predictable (but fine with difficult games!).

Note: you have many tokens you can reclaim if you wish to extend the game:

  • remove debug functions (log...)
  • clamp already exists (called "mid" on pico)
  • value initialization could be factored using something like:
function reset(obj,params)
 for i=1,params,2 do
  obj[params[i]]=params[i+1]
 end
end
-- example use:
reset(self,split"x,0,y,0")

There is a also a (minor) hidden bug in score calculation:
score+=300/10000 is not going to produce an exact number.

Pico has a tostr(x,2) function that will treat the value as a 32bits number, exactly made for that use case.

You could change add_score to that variant:

function add_score(num)
    -- shift num to use all 32bits
    -- can remove the 10000 limit (or put a much bigger 32bits limit if needed)
    gg.score+=num>>16
    -- bonus
    if gg.bonus_earned<=0 then
        -- > 10000?
        if gg.score>=0x0.03e8 then
            gg.bonus_earned=1
            gg.planes+=1
            add(_space_f.particles,{type="bonus",is_first=true,age=1,age_max=120})
        end
    elseif gg.score\0x0.c350+1>gg.bonus_earned then
        -- 0x0.c350 is 50000>>16
        gg.bonus_earned=gg.score\0x0.c350+1
        gg.planes+=1
        add(_space_f.particles,{type="bonus",age=1,age_max=120})
    end
end
...
function print_score(num,len,x,y)
 -- use full 32 bits value
 -- ex: 0x0.e7d6 will produce "59350"
 local t=tostr(num,2)
 ...
end
P#123087 2022-12-26 20:12 ( Edited 2022-12-26 20:17)

@freds72 WOW! Thank you for your detailed advice!
I will apply the contents you told me.

P#123093 2022-12-26 23:14
1

This is a wonderful little game; it moves a bit too fast for me personally, but I suspect it feels just like the original arcade game. The special effects, graphics, and sound are all exactly like I imagine they should be! Well done.

P#123171 2022-12-28 05:54 ( Edited 2022-12-28 05:54)

@binarycrusader Thank you for recognizing the part that I worked hard on!

P#123172 2022-12-28 06:06

There are not over the top Arcade converions on RP8, but this one i one of them, a real Blast ! Thank you very much, you managed to capture and improve the soul of the original game. Hopefully someday you will also port Time Pilot 84, which is as good as its prequel :)

P#125209 2023-02-02 23:42

Awesome. The music and sounds are awesome. The dying animation is amazing. Lots of great little details. A little hard to control with arrow keys. Seems like a joystick is necessary.

P#125210 2023-02-02 23:46

@nounours Thank you for the compliment! Time Pilot 84 also looks good for porting. (The structure of the game looks almost the same)

P#125231 2023-02-03 14:54

@UnitVector I tried to lower difficulty, but it wasn't enough... But thank you for enjoying!

P#125232 2023-02-03 14:55

@mooon, how did you figure out how the game is structured ? I guess you do not have access to the source code of the game which in anyway might only be in assembly. How did you figure out how the ennemy behaves and so on ? Still super impressive stuff :)

P#125234 2023-02-03 16:13
1

@nounours I repeatedly watched YouTube videos to make them look similar. So the enemy's behavior is not exactly the same as the original. ^^;;

P#125292 2023-02-04 07:58
1

Really good demake of the original, quite difficult and the controls feel wonky but its hard to replicate joystick movement in Pico8, all in all really enjoyable.

P#137567 2023-11-17 14:58

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-04-16 15:46:49 | 0.070s | Q:41