Language…
21 users online: Alex No, Blizzard Buffalo, CalHal, deported, Golden Yoshi, Green-Smith, Heni12345678, Klug, Lawlezz305, NewPointless, PixelFhacks, Saela, signature_steve, soybeanthegal, The_Vigilante, TheClassicOne88,  Valentine, VanVuong41429, xlDenislx,  YouFailMe, Zener_j - Guests: 143 - Bots: 71
Users: 68,916 (2,344 active)
Latest user: potatomaster

Cave-In Generator

SMW Sprites → Cave-In Generator

Submission Details

Name: Cave-In Generator
Author: Telinc1
Added:
Tool: PIXI
Type: Cluster
Dynamic: No
Disassembly: No
Includes GFX: Yes
Description: A generator which will shake the screen and randomly spawn 16x16 or 32x32 blocks which will fall down. They can optionally hurt Mario.

This version uses cluster sprites for the blocks, which means they won't take up standard sprite slots and will cause way less slowdown.You can find the standard sprite version here.

Make sure to set the cluster sprite number of the block (cluster/caveinblock.asm) in the generator's ASM file (generators/caveingen.asm)! Use the number from list.txt.

Check the ASM files for customization options. By default, the blocks will treat all Map16 tiles on page 1 (and ones which act like them) as solid. Note that the blocks don't interact with layer 2.
Tags: block blocks cave cavern cluster cluster sprites effect enemy fall falling generator lorom rock rocks sa-1 shake
Comments: 2 (jump to comments)
Rating:
0.0 (0 ratings)
No rating
Download 7.34 KiB | 915 downloads

Screenshots

Comments (2)

 MarioFanGamer Link
Using cluster sprites for the cave in generator is a great idea. I mean, the reasons are obvious: The amount of the blocks falling down is relatively high.

That, however, causes a couple limitations:
  • They use a simplified interaction.
    • The biggest one is that the block interaction is only focused at one point which means that the rocks can actually fall through blocks even when they shouldn't with a "proper" object<->sprite hitbox
    • Another limitation is that only tiles with an acts like setting of 1 (which contains tiles where you, sometimes only sprites, including 1F0) or higher can block the rocks. The problem is that coins and invisible ?-block won't block them when the blue P-switch is activated and in contrast, Rocks see brown blocks and munchers as solid tiles even when the blue and silver P-switch is activated, respectively.
    • Layer 2 interaction is also non-existant for them.
  • And finally (the biggest limitation), be careful that cluster sprites aren't really made to be 32x32 large. This means, instead to use a hardcoded sprite tile index, they reserve them dynamically which may end up them using already used sprite tiles, cauing disappearing sprite tiles. Not even NMSTL can fix that.

These were a couple notes when you want to use this sprites. Other then that, I haven't found any issues.
 Telinc1 Author Link
Fixed a major issue with object interaction. The block cluster sprite now resolves "acts like" settings, which makes it a lot easier to work with.
Made the sprite despawn earlier so it doesn't poke in from the top of the screen when it reaches the bottom.