mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 12:05:11 +00:00
663e4549d8
* Proof of concept for loading rom assets at runtime * Added skybox textures * Adjusted format * Load all texture assets from rom * Adjusted rom asset loading * Load all Vtx lists from rom * clean up toad, wario and his cap conflicts * Load sound samples from rom * fix toad sounds * Loaded sequences from rom * Load collisions from rom * Object animations are now loaded from the rom * Load player animations from rom * Load goddard anims from rom * whoops * fix some compile errors * drag and drop rom checker, everything works now. * fix errors due to merge conflicts * fix compile errors on windows, switch to md5 * fix vertex colors during load Co-Authored-By: Agent X <44549182+agent-11@users.noreply.github.com> * Load dialogs from rom * Loaded course/act names from rom * Loaded ingame text from rom * rerun autogen & blacklist smlua_text_utils_init * fix ttc_seg7_vertex_0700B238 colors --------- Co-authored-by: MysterD <myster@d> Co-authored-by: Agent X <44549182+agent-11@users.noreply.github.com>
52 lines
2 KiB
C
52 lines
2 KiB
C
#include "pc/rom_assets.h"
|
|
// Burn Smoke
|
|
|
|
// 0x040217C0
|
|
ROM_ASSET_LOAD_VTX(burn_smoke_seg4_vertex_040217C0, 0x00114750, 78432, 0x000217c0, 64);
|
|
|
|
// //! Wrong texture format. Called as rgba16, which makes the burn smoke appear
|
|
// as a transparent black burn smoke. Probably meant to show up as white-ish
|
|
// burn smoke, but mistakened for being intended as black smoke.
|
|
// Due to debate in the Koopa shorts PR surrounding the fix to a similar bug,
|
|
// said fix is on a compile-time variable. Use TEXTURE_FIX=1 at compile time
|
|
// to fix this.
|
|
// 0x04021800
|
|
ROM_ASSET_LOAD_TEXTURE(burn_smoke_seg4_texture_04021800, "actors/burn_smoke/burn_smoke.ia16.inc.c", 0x00114750, 78432, 0x00021800, 2048);
|
|
|
|
// 0x04022000 - 0x04022028
|
|
const Gfx burn_smoke_seg4_dl_04022000[] = {
|
|
gsDPPipeSync(),
|
|
gsDPSetCombineMode(G_CC_MODULATERGBA, G_CC_MODULATERGBA),
|
|
gsSPClearGeometryMode(G_LIGHTING | G_CULL_BACK),
|
|
gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON),
|
|
gsSPEndDisplayList(),
|
|
};
|
|
|
|
// 0x04022028 - 0x04022048
|
|
const Gfx burn_smoke_seg4_dl_04022028[] = {
|
|
gsSPVertex(burn_smoke_seg4_vertex_040217C0, 4, 0),
|
|
gsSP2Triangles( 0, 1, 2, 0x0, 0, 2, 3, 0x0),
|
|
gsSPEndDisplayList(),
|
|
};
|
|
|
|
// 0x04022048 - 0x04022070
|
|
const Gfx burn_smoke_seg4_dl_04022048[] = {
|
|
gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_OFF),
|
|
gsDPPipeSync(),
|
|
gsDPSetCombineMode(G_CC_SHADE, G_CC_SHADE),
|
|
gsSPSetGeometryMode(G_LIGHTING),
|
|
gsSPEndDisplayList(),
|
|
};
|
|
|
|
// 0x04022070 - 0x040220C8
|
|
const Gfx burn_smoke_seg4_dl_04022070[] = {
|
|
gsSPDisplayList(burn_smoke_seg4_dl_04022000),
|
|
#ifdef TEXTURE_FIX
|
|
gsDPLoadTextureBlock(burn_smoke_seg4_texture_04021800, G_IM_FMT_IA, G_IM_SIZ_16b, 32, 32, 0, G_TX_CLAMP, G_TX_CLAMP, 5, 5, G_TX_NOLOD, G_TX_NOLOD),
|
|
#else
|
|
gsDPLoadTextureBlock(burn_smoke_seg4_texture_04021800, G_IM_FMT_RGBA, G_IM_SIZ_16b, 32, 32, 0, G_TX_CLAMP, G_TX_CLAMP, 5, 5, G_TX_NOLOD, G_TX_NOLOD),
|
|
#endif
|
|
gsSPDisplayList(burn_smoke_seg4_dl_04022028),
|
|
gsSPDisplayList(burn_smoke_seg4_dl_04022048),
|
|
gsSPEndDisplayList(),
|
|
};
|