Log In  
Follow
ruairidx
EUROPICO 88
by ruairidx
Propulsion - a physics-puzzle-platformer
by ruairidx
16 Greens
by ruairidx
[ :: Read More :: ]

EUROPICO 88

The unofficial tie-in video game for the 1988 European Championship in West Germany!

Cart #ruairidx_europico88_v110-0 | 2020-09-26 | Code ▽ | Embed ▽ | No License
22



EUROPICO 88 is a top-down football game heavily inspired by 90s semi-arcade-style football games like Sensible Soccer and International Superstar Soccer (recognise that menu music...?). Simulation aspects like substitutions, through-balls, slide tackles, teams with different stats and referees were eschewed in favour of speed, simplicity and an AI that won't let you have it easy but is satisfying to outfox. Players can choose any of the 8 teams participating in the EURO 88 finals in West Germany, and can pit themselves against their friends, the computer, or just sack it off and watch the computer play itself!

Source



Controls

(also provided in-game)

  • D-Pad - move controlled player
    • run to the goal! run to the ball! run wherever you desire!
  • O (while in possession) - pass in direction of D-Pad
    • pass will automatically lock onto a player in the selected general direction
  • O (not in possession) - change selected player
    • new player will be the player estimated to reach the ball quickest; selected player will also occasionally switch automatically if a better option is available
  • X - SHOOT!
    • players always shoot towards goal; no need to aim.

Gotchas

  • Tackling is simply a matter of running into the player on the ball. Dispossessed players will not be able to run or reclaim the ball for a short period. Don't get caught in possession!
  • Players have no control of goalkeepers. Keepers will come to claim a ball that's not in possession of a teammate, and will otherwise just try to stay in front of the ball. In any case, when given the chance, they will leather it back upfield.
  • Throw-ins have been replaced by kick-ins for simplicity.

Tips

Computer giving you a hard time? Wish you were more like Marco van Basten and less like Peter Beardsley*? Try these tips to up your game:

  • Use your team's width. If the midfield gets congested, send the ball out to your wingers before bringing it back into your centre forwards.
  • It's harder for the keeper to block a fast shot. Try and shoot up close to give them minimal chance!
  • If you can't get close, it's also harder for the keeper to make a save if they can't even reach the ball! Try shooting across the keeper from outside the posts.
  • Sometimes moving forward isn't the best option. Try passing backwards and drawing the opposition forward, opening the space up behind them.
  • If you're under pressure in defence, don't feel bad about putting your foot through it. When in doubt, get it out.

My greatest regret is that I ran out of tokens for a full tournament mode, where players could have played through a virtual tournament and been crowned Champions of Europe. All that said, if you have a pen and paper, you can do it yourself! Look!


*absolutely no offence is intended to either Mr. Beardsley or Newcastle fans as a whole; this is not intended as a disparagement, it is only intended to illustrate that Marco van Basten was very good at football.

P#82276 2020-09-25 23:34 ( Edited 2020-09-26 00:36)

[ :: Read More :: ]

"Imprisoned beneath the earth...only your wit, guile and a plasma pistol for company. However will you escape?"

Propulsion

25 levels of mind-bending physics-puzzle-platforming fun!

Cart #propulsion_1_0_0-0 | 2020-09-16 | Code ▽ | Embed ▽ | No License
20

Source

This is actually a remake of a Flash game I made back in 2011-2012, which you can play here. I even remade the original music in glorious 4-channel chiptune (I got the original music from the Newgrounds Audio Portal and it's since been deleted. Wish I could find the original artist!)

I made a post before about porting a physics library called bump to PICO-8; this is the first project I've made using it in earnest. I mentioned concerns in that thread about token pressure from including the library. In the end, the greatest strain on token count was representing levels in code (the game doesn't actually run while unminified); I had to get creative with string encoding and other tricks to make it all fit (8191/8192 tokens!). I wrote a pretty ropey python script for converting multiple Tiled tmx files into generated lua code (you can find the script here). I encoded the tiles as PICO-8-compatible hex strings (this meant that the data just needed to be copied into a reserved section of the map when loading a level); the rest was encoded as structures of entity types, co-ordinates and properties (e.g. switch colours, platform directions).

P#81877 2020-09-16 02:37

[ :: Read More :: ]

Previously when making games in LOVE2D, I made use of a simple 2D axis-aligned physics library called bump.lua. I especially enjoyed the versatility (e.g. different collision types and outcomes based on custom filtering) and the simple, intuitive API. I wanted to see how effectively it could work in PICO-8, so I forked it.

pico8-bump.lua

The main obstacle to running bump was that PICO-8 has no access to the math lua module and uses 16-bit ints, so all math.floor etc. calls were replaced with their PICO-8 equivalents. math.huge did not have a standard PICO-8 analog, so the 16 bit int max (32767) was hardcoded instead. Likewise, PICO-8 lua does not parse 10e-10 style numbers, so DELTA was changed to a regular decimal value. In addition, PICO-8 does not have access to the table module, so a separate sort function was added to replace table.sort.

I also deleted portions of the library that I didn't consider necessary for my own uses to save on tokens and characters:

  • bounce and touch collision types
  • anything involving querying segments (note: querying rects and points are unchanged)
  • all sanity checks and assertions that bump would normally make e.g. assertIsPositiveNumber or assertIsRect. While these are useful for debugging and avoid weird inconsistent states, they eat up precious tokens. I've used bump enough in other games to feel comfortable enough without these safeguards.
  • public bump.rect and bump.responses tables. I honestly never used them anyway.

What's left is still a robust physics library for rectangles and points. Here's a quick demo platformer using bump.

Cart #bumpdemo-0 | 2020-08-30 | Code ▽ | Embed ▽ | No License
9

Naturally, the primary concern with any library in PICO-8 is tokens and characters. Here's what it clocks in at:

Usage Max %
Tokens 2646 8192 32.3%
Characters (unminified) 17390 65535 26.5%
Characters (minified) 9366 65535 14.3%

I haven't quite figured out just how big that footprint is. Obviously 32.3% is a sizeable number of tokens to give away, but, like I mentioned, bump's interface is pretty simple, which saves tokens later down the road (every attempt to move an object within the world can use as few as 11 tokens). In addition, it's possible to go back and delete more from the library before releasing if the functionality is unused (e.g. for the demo above, anything involving querying the world is unused and could be deleted). I'm sure bump would be overkill for any game that doesn't require anything beyond simple collision detection with overlapping rectangles, but I'm optimistic it could still be beneficial for more complex use cases. I plan to find out.

P#81350 2020-08-30 19:55 ( Edited 2020-08-30 19:57)

[ :: Read More :: ]

16 Greens

A bog standard minigolf game with 4-player pass-and-play multiplayer

Cart #sixteengreens-0 | 2020-08-28 | Code ▽ | Embed ▽ | No License
24

I heard about PICO-8 literally years ago and completely forgot about it until last weekend. Downloaded it and spent the week having a great time getting to grips with it. 16 Greens is the first 'proper' game I've made so far.

Source

Lessons Learned

  • I tried to lean into the 'PICO-8 way' as much as possible; usually I'd make maps in Tiled and import them into whatever game I'm making, but since PICO-8 has a specific cart block for map data, I figured it was best to use that instead (I still used Tiled, I just wrote a python script to convert tmx files into PICO-8 map data). For this game, since I wanted each hole to be a full screen, this limited me to 16 holes, but I figured this would help me preserve precious tokens and characters. In hindsight, I actually seriously underestimated just how many tokens and characters PICO-8 affords you; I ended up under 50% of the token limit and didn't even use 20% of the character limit (after minifying). I'll try storing map data in code in future (especially since string encoding doesn't eat up many tokens).
  • Minifying helped with the character count significantly (~12k minified vs. ~32k unminified), although obviously did nothing for tokens. That said, if I start storing more map and graphics data in code, then character count will become more important, so I'll stick with minifying for future carts (I used luamin).
P#81310 2020-08-28 21:17

Follow Lexaloffle:          
Generated 2024-04-18 07:32:12 | 0.078s | Q:22