Log In  
Follow
kaimonkey
Penny the Pumpkin V1.1
by kaimonkey
:: Unfold ::

by @kaimonkey

Cart #blob-23 | 2023-03-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
29

Controls

Left/Right arrows: Move Penny left or right
Up/Down arrows: Stretch Penny up or down
X/O/Z buttons: Make Penny jump. HOLD jump for a bigger leap!
Menu/Space: Access the menu, featuring a soft-lock ejector just in case!

Description

Penny the Pumpkin takes you on a delightful platforming journey with light puzzles to solve. Guide Penny, our lovable gourd, as she collects 12 precious coins! Your progress is saved every time she grabs a coin or enters a new area.

Once you've collected all 12 coins, put your skills to the test by unlocking the thrilling speedrun mode! Note that saving is disabled in this mode, so it's all about your skill and reflexes. Can you beat the programmer's current record of 2:51.5? 🏆

Technical Notes


This game uses P9 Compression to have four banks of 16x128 tiles that can be switched between during gameplay.
[128x32]

Each level is then defined as an array of "blocks", where each block is a rectangle of the tilemap somewhere in the level. This allows me to have seven different areas, some of which are quite large, as well as easily having overlapping elements. Blocks can also have properties such as an update method ran each frame, if they should have collision disabled, if they should be drawn in front of the player, if they should be drawn just as a cheap rect fill, if they should be repeated etc. This gives me a lot of power in level design.

The physics is relatively simple, with the character animations being based on a very simple spring math:

spring_dy = (spring_y - spring_y_target) * SPRING_CONSTANT 
spring_dy *= (1-DAMPING_CONSTANT)
spring_y += spring_dy

Each level uses a different screen pallete, which often use the secret palette. Additionally for the title screen, a (trick)[https://www.lexaloffle.com/bbs/?tid=38565] documented by @BoneVolt is used to switch to a different pallete for the area of the screen behind the logo! I had to do some extra bit of bit math to have it drawn to an arbitrary place on the screen without clobbering memory!

 y= 10 -- The vertical position in PIXELS
 h= 3 -- The height in rows of EIGHT pixels
 poke(0x5f5f,0x10) -- enable the effect
 pal(NEW_PAL,2) -- Set the pallete for the section
 pal_memset(0x5f70,0,16) -- clear the settings from previous update
 local rem=flr(y)%8 -- calculate the remainder, since the dual-pallete mode works rows of 8 at a pixels at a time
 pal_memset(0x5f70+(y)/8-1,255<<rem,1) -- Set the flags above where main body made of full 8-high rows can be set
 pal_memset(0x5f70+(y)/8,255,h) --Set the flags for the main body of h 8-pixel-high rows
 pal_memset(0x5f70+(y)/8+h,~(255<<rem),1) -- Set the flags below where main body made of full 8-high rows can be set
function pal_memset(addr, val, len)
    if addr >= min_mem and (addr + len - 1) <= max_mem then
        memset(addr, val, len)
    end
end

New in Version 1.1

Area Complete Notification (And cute heart thought bubble)

  • Penny will now heart her family in

Thought bubble to help players in common difficult locations

.

Speedrun Leaderboard

# Runner Time
🥇 @ikumo 1:22.1 (video)
🥈 @pancelor 1:54.4 (video)
🥉 @mcman 2:03.7
4 @Ruva 2:26.5
5 @Gabe_8_bit 2:29.3
6 @kaimonkey 2:51.5
7 @VaniaIsAnIdiot 3:34.6
8 @Lisa 3:50.8
9 @TrevorJacobs 3:59.8
10 @Heracleum 5:58.4
11 @phil 6:44.6
P#127456 2023-03-22 13:39 ( Edited 2023-04-18 12:53)

Follow Lexaloffle:          
Generated 2023-05-28 02:32:39 | 0.287s | Q:22