Frogger is a perfect game for uPython!

Oh my! I think I found the perfect candidate for my MicroPython demo game for Pokitto: My old favourite Frogger ! https://www.youtube.com/watch?v=l9fO-YuWPSk

What makes it perfect is that it is a portrait mode game, but the upper and lower parts of screen are not needed at the same time. So I can make it vertically scrolling, without ruining the gameplay :slight_smile: I really like the idea that I can make the objects bigger as I do not have to show the whole gaming area at once.

Frogger also suites very well for children (ok, there is mild violence) :slight_smile: as one of my goals in the uPython port is making coding easier for kids. As a demo game all would be totally open source, and free to use and modify the codes.

Who would like to attend the game project and make graphics for it?
Also we should invent a new name for the game, any suggestions?

3 Likes

* Squish * :(

Yes, because Froggerā„¢ is trademarked.

Animal Crossā€¦ oh waitā€¦

ā€œFrog Crossingā€?
ā€œWhy Did The Frog Cross The Road?ā€?

No, wait, best one of all:

ā€œKero Kero Crossingā€!
(ć‚±ćƒ­ćƒ»ć‚±ćƒ­ćƒ»ć‚Æćƒ­ć‚·ćƒ³ć‚°)

(ā€œKero keroā€ is the Japanese onomatopoeia for the noise a frog makes.)

2 Likes

Frogitto! :wink:

    _    _
   (o)--(o)
  /.______.\
  \________/
 ./        \.
( .        , )
 \ \_\\//_/ /
  ~~  ~~  ~~
1 Like

@Hanski I would like the gameplay to be such that there is a frog thatā€™s jumping slowly in random places across the road (computer mode), and you quide a Pokitto character which is trying to catch the frog, hence the name ā€œCatch the Frogā€ or ā€œPokichaseā€. If the frog makes it safely across, then one life is lost. However if you catch the frog you gain one extra life. If you get run over by a car, then bad luck, you loose one life. With two player ā€œchallenge modeā€ one player can be the frog and the other player the Pokitto character. Then in ā€œclassic modeā€ the game becomes the classic Frogger, but you can choose which charcter you wish to be the hero.
How does this suggested gameplay sound? Weird, interesting or plain dumb?

This is an excellent name!

2 Likes

This is a nice idea :slight_smile: But the frog should have some AI not to crash on the first car.

The AI is exactly what I meant with the ā€œcomputer modeā€. And as levels pass, the AI makes the frog to move faster, undestructible and the poor gamer has to try to move faster and faster to avoid the obstacles and accidents that await to happen. :grinning:

1 Like

Should I add this to the Pokitto Game Index under the name ā€œFrogitto?ā€ (I can change it later if need be.)

2 Likes

Yes, please. A python game.

How about having the frog/player carry pieces of Pokitto (front panel, back panel, PCB, LCD, Buttons) across the road, so it can put it together?

2 Likes

Yes, why not. @trelemar is making Jetpac. I think it would be good idea to build Pokitto from parts in that game also :slight_smile:

2 Likes

Hmm. Good AI might be too complex for the demo game. Maybe the frog could just jump on the car and travel for a while?

I am still looking for someone to draw the graphics? A couple of cars, the frog and the little Pokitto would be enough at this time. Or just one of them if more people are contributing.

2 Likes

What size do you have in mind for the sprites?
8x8, 16x16?

And what about the colour palette and style?
Cartoony, realistic, scifi, fantasy?

Thanks! For now only 110x88, 16 color mode, is working with uPython. So I think 16x16 would be good for objects. As this is also for the kids, i think colorful palette would be nice. You can select the style as you wish. To me the car looks nice :slight_smile:

1 Like

Iā€™m presuming it can be any 16 colours in the palette?

(I havenā€™t actually got round to reading much about the Pokitto API, Iā€™ve been working on other things and waiting until the Pokittos actually ship before I get stuck in.)

Also, I donā€™t intend to make all the sprites, I think it would be better if we had several people donating different sprites so itā€™s a bit of a group effort.

Presumably some will make it in and some wonā€™t, but I certainly donā€™t mind if my sprites donā€™t get used, Iā€™ll just find another purpose for them.

Is there a list of desired sprites?

Iā€™m guessing youā€™ll want cars, frogs, lillypads and logs, but I donā€™t know what other things you might want.

Made a few simple sprites:

(Truth be told Iā€™m a better programmer than I am an artist, though I dabble.)

1 Like

What do you use to make sprites?

1 Like

To draw them I use regular old MS Paint. Then I use GIMP to turn them transparent.

(I did have a powershell script that I wrote to turn a specified colour transparent but for some reason it doesnā€™t work with some images. Iā€™m presuming itā€™s because it wonā€™t introduce an alpha channel if there isnā€™t already an alpha channel in the image, so Iā€™ll have to look into it.)

No idea how to turn them into something the Pokitto can read. Iā€™m assuming thereā€™s a tool for that somewhere.
(If there isnā€™t Iā€™ll just write one.)

I just cropped & scaled original frogger screen to 110x88.

Seems like 16x16 is too big. The frog is even smaller than 8x8, but lets make it 8x8. Could you redraw the frog and one car in this size? I can test it in simulator before making any new gfx.

Edit: the palette is not fixed.

1 Like