├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── clang-format-suggest.yml │ ├── clang-format.yml │ ├── clang-pr.yml │ ├── doxygen-and-linux-test.yml │ ├── linux-compile.yml │ ├── macos-compile.yml │ ├── main.yml │ └── windows-compile.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Dockerfile ├── Doxyfile ├── ExecutableResource.h ├── Info.plist ├── README.md ├── Resource.rc ├── SpaghettiKart.desktop ├── assets ├── editor │ ├── gizmo │ │ ├── center_handle │ │ ├── center_handle_tri_0 │ │ ├── center_handle_vtx_0 │ │ ├── center_handle_vtx_cull │ │ ├── mat_center_handle_f3dlite_material │ │ ├── mat_revert_center_handle_f3dlite_material │ │ ├── mat_revert_rot_handle_blue_f3dlite_material │ │ ├── mat_revert_rot_handle_green_f3dlite_material │ │ ├── mat_revert_rot_handle_green_f3dlite_material_002 │ │ ├── mat_revert_rot_handle_red_f3dlite_material │ │ ├── mat_revert_rotate_handle_red_f3dlite_material │ │ ├── mat_revert_scale_handle_blue_f3dlite_material │ │ ├── mat_revert_scale_handle_blue_f3dlite_material_001 │ │ ├── mat_revert_scale_handle_green_f3dlite_material_001 │ │ ├── mat_revert_scale_handle_red_f3dlite_material_001 │ │ ├── mat_revert_translate_handle_blue_f3dlite_material │ │ ├── mat_revert_translate_handle_green_f3dlite_material │ │ ├── mat_revert_translate_handle_red_f3dlite_material │ │ ├── mat_rot_handle_blue_f3dlite_material │ │ ├── mat_rot_handle_green_f3dlite_material │ │ ├── mat_rot_handle_green_f3dlite_material_002 │ │ ├── mat_rot_handle_red_f3dlite_material │ │ ├── mat_rotate_handle_red_f3dlite_material │ │ ├── mat_scale_handle_blue_f3dlite_material │ │ ├── mat_scale_handle_blue_f3dlite_material_001 │ │ ├── mat_scale_handle_green_f3dlite_material_001 │ │ ├── mat_scale_handle_red_f3dlite_material_001 │ │ ├── mat_translate_handle_blue_f3dlite_material │ │ ├── mat_translate_handle_green_f3dlite_material │ │ ├── mat_translate_handle_red_f3dlite_material │ │ ├── model.xml │ │ ├── rot_handle_blue │ │ ├── rot_handle_blue_tri_0 │ │ ├── rot_handle_blue_vtx_0 │ │ ├── rot_handle_blue_vtx_cull │ │ ├── rot_handle_green │ │ ├── rot_handle_green_tri_0 │ │ ├── rot_handle_green_vtx_0 │ │ ├── rot_handle_green_vtx_cull │ │ ├── rot_handle_red │ │ ├── rot_handle_red_tri_0 │ │ ├── rot_handle_red_vtx_0 │ │ ├── rot_handle_red_vtx_cull │ │ ├── rotate_handle_red │ │ ├── rotate_handle_red_tri_0 │ │ ├── rotate_handle_red_vtx_0 │ │ ├── rotate_handle_red_vtx_cull │ │ ├── scale_handle_blue │ │ ├── scale_handle_blue_tri_0 │ │ ├── scale_handle_blue_vtx_0 │ │ ├── scale_handle_blue_vtx_cull │ │ ├── scale_handle_green │ │ ├── scale_handle_green_tri_0 │ │ ├── scale_handle_green_vtx_0 │ │ ├── scale_handle_green_vtx_cull │ │ ├── scale_handle_red │ │ ├── scale_handle_red_tri_0 │ │ ├── scale_handle_red_vtx_0 │ │ ├── scale_handle_red_vtx_cull │ │ ├── translate_handle_blue │ │ ├── translate_handle_blue_tri_0 │ │ ├── translate_handle_blue_vtx_0 │ │ ├── translate_handle_blue_vtx_cull │ │ ├── translate_handle_green │ │ ├── translate_handle_green_tri_0 │ │ ├── translate_handle_green_vtx_0 │ │ ├── translate_handle_green_vtx_cull │ │ ├── translate_handle_red │ │ ├── translate_handle_red_tri_0 │ │ ├── translate_handle_red_vtx_0 │ │ └── translate_handle_red_vtx_cull │ ├── light │ │ ├── mat_revert_sun_arrow_f3dlite_material_001 │ │ ├── mat_revert_sun_arrow_f3dlite_material_002 │ │ ├── mat_sun_arrow_f3dlite_material_001 │ │ ├── mat_sun_arrow_f3dlite_material_002 │ │ ├── model.xml │ │ ├── sun_arrow │ │ ├── sun_arrow_tri_0 │ │ ├── sun_arrow_vtx_0 │ │ └── sun_arrow_vtx_cull │ └── water │ │ ├── mat_revert_water_plane_f3dlite_material │ │ ├── mat_water_plane_f3dlite_material │ │ ├── model.xml │ │ ├── water_plane │ │ ├── water_plane_tri_0 │ │ ├── water_plane_vtx_0 │ │ └── water_plane_vtx_cull ├── fonts │ ├── Fipps-Regular.otf │ ├── Inconsolata-Regular.ttf │ ├── Montserrat-Regular.ttf │ └── PressStart2P-Regular.ttf ├── gizmo │ ├── gizmo_center_button │ ├── gizmo_center_button_tri_0 │ ├── gizmo_center_button_vtx_0 │ ├── gizmo_center_button_vtx_cull │ ├── mat_gizmo_center_button_gizmo_center_button │ ├── mat_scale_handle_f3dlite_material │ ├── model.xml │ ├── scale_handle │ ├── scale_handle_tri_0 │ ├── scale_handle_vtx_0 │ └── scale_handle_vtx_cull ├── hmintro │ ├── gradientbottom.rgba16 │ ├── lusgrade.rgba16 │ ├── mat_poweredbylus_lus │ ├── mat_poweredbylus_power │ ├── mat_revert_poweredbylus_lus │ ├── mat_revert_poweredbylus_power │ ├── poweredbylus │ ├── poweredbylus_tri_0 │ ├── poweredbylus_tri_1 │ ├── poweredbylus_vtx_0 │ ├── poweredbylus_vtx_1 │ └── poweredbylus_vtx_cull ├── mods.toml ├── shaders │ ├── directx │ │ └── default.shader.hlsl │ ├── metal │ │ └── default.shader.metal │ └── opengl │ │ ├── default.shader.fs │ │ └── default.shader.vs ├── textures │ ├── buttons │ │ ├── ABtn.png │ │ ├── BBtn.png │ │ ├── CDown.png │ │ ├── CLeft.png │ │ ├── CRight.png │ │ ├── CUp.png │ │ ├── LBtn.png │ │ ├── RBtn.png │ │ ├── StartBtn.png │ │ └── ZBtn.png │ ├── icons │ │ └── gIcon.png │ └── virtual │ │ └── gEmptyTexture.rgba32.png └── tracks │ └── harbour │ ├── ARmosMap.rgba16 │ ├── Cube.002_mesh │ ├── Cube.002_mesh_tri_0 │ ├── Cube.002_mesh_tri_1 │ ├── Cube.002_mesh_tri_2 │ ├── Cube.002_mesh_tri_3 │ ├── Cube.002_mesh_tri_4 │ ├── Cube.002_mesh_vtx_0 │ ├── Cube.002_mesh_vtx_1 │ ├── Cube.002_mesh_vtx_2 │ ├── Cube.002_mesh_vtx_3 │ ├── Cube.002_mesh_vtx_4 │ ├── Cube.002_mesh_vtx_cull │ ├── Harbour 0.6.blend │ ├── bark2.rgba16 │ ├── bars1.rgba16 │ ├── beware.rgba16 │ ├── brick1.rgba16 │ ├── coffins.rgba16 │ ├── data_paths │ ├── data_track_sections │ ├── door1.rgba16 │ ├── fence.rgba32 │ ├── flag.rgba16 │ ├── flowers1.rgba32 │ ├── gallows.rgba16 │ ├── grayishtoblue.ci8 │ ├── heart1.ci8 │ ├── keyboardArt.i8 │ ├── leaf.rgba16 │ ├── leaves1.rgba32 │ ├── map.001_mesh │ ├── map.001_mesh_tri_0 │ ├── map.001_mesh_vtx_0 │ ├── map.001_mesh_vtx_cull │ ├── map.002_mesh │ ├── map.002_mesh_tri_0 │ ├── map.002_mesh_tri_1 │ ├── map.002_mesh_tri_2 │ ├── map.002_mesh_tri_3 │ ├── map.002_mesh_tri_4 │ ├── map.002_mesh_tri_5 │ ├── map.002_mesh_vtx_0 │ ├── map.002_mesh_vtx_1 │ ├── map.002_mesh_vtx_2 │ ├── map.002_mesh_vtx_3 │ ├── map.002_mesh_vtx_4 │ ├── map.002_mesh_vtx_5 │ ├── map.002_mesh_vtx_cull │ ├── map.003_mesh │ ├── map.003_mesh_tri_0 │ ├── map.003_mesh_tri_1 │ ├── map.003_mesh_vtx_0 │ ├── map.003_mesh_vtx_1 │ ├── map.003_mesh_vtx_cull │ ├── map.004_mesh │ ├── map.004_mesh_tri_0 │ ├── map.004_mesh_tri_1 │ ├── map.004_mesh_tri_2 │ ├── map.004_mesh_vtx_0 │ ├── map.004_mesh_vtx_1 │ ├── map.004_mesh_vtx_2 │ ├── map.004_mesh_vtx_cull │ ├── map.005_mesh │ ├── map.005_mesh_tri_0 │ ├── map.005_mesh_tri_1 │ ├── map.005_mesh_tri_2 │ ├── map.005_mesh_tri_3 │ ├── map.005_mesh_tri_4 │ ├── map.005_mesh_vtx_0 │ ├── map.005_mesh_vtx_1 │ ├── map.005_mesh_vtx_2 │ ├── map.005_mesh_vtx_3 │ ├── map.005_mesh_vtx_4 │ ├── map.005_mesh_vtx_cull │ ├── map_mesh │ ├── map_mesh_tri_0 │ ├── map_mesh_tri_1 │ ├── map_mesh_tri_10 │ ├── map_mesh_tri_11 │ ├── map_mesh_tri_12 │ ├── map_mesh_tri_13 │ ├── map_mesh_tri_14 │ ├── map_mesh_tri_15 │ ├── map_mesh_tri_16 │ ├── map_mesh_tri_17 │ ├── map_mesh_tri_2 │ ├── map_mesh_tri_3 │ ├── map_mesh_tri_4 │ ├── map_mesh_tri_5 │ ├── map_mesh_tri_6 │ ├── map_mesh_tri_7 │ ├── map_mesh_tri_8 │ ├── map_mesh_tri_9 │ ├── map_mesh_vtx_0 │ ├── map_mesh_vtx_1 │ ├── map_mesh_vtx_10 │ ├── map_mesh_vtx_11 │ ├── map_mesh_vtx_12 │ ├── map_mesh_vtx_13 │ ├── map_mesh_vtx_14 │ ├── map_mesh_vtx_15 │ ├── map_mesh_vtx_16 │ ├── map_mesh_vtx_17 │ ├── map_mesh_vtx_2 │ ├── map_mesh_vtx_3 │ ├── map_mesh_vtx_4 │ ├── map_mesh_vtx_5 │ ├── map_mesh_vtx_6 │ ├── map_mesh_vtx_7 │ ├── map_mesh_vtx_8 │ ├── map_mesh_vtx_9 │ ├── map_mesh_vtx_cull │ ├── marble1.rgba16 │ ├── mat_mk64_HM │ ├── mat_mk64__64 │ ├── mat_mk64_bark1 │ ├── mat_mk64_beware │ ├── mat_mk64_black │ ├── mat_mk64_coffin │ ├── mat_mk64_dock │ ├── mat_mk64_door1 │ ├── mat_mk64_eye2 │ ├── mat_mk64_f3d_material_001 │ ├── mat_mk64_f3d_material_005 │ ├── mat_mk64_f3d_material_006 │ ├── mat_mk64_f3d_material_012 │ ├── mat_mk64_f3d_material_013 │ ├── mat_mk64_f3d_material_014 │ ├── mat_mk64_f3dlite_material_001 │ ├── mat_mk64_f3dlite_material_002 │ ├── mat_mk64_f3dlite_material_007 │ ├── mat_mk64_f3dlite_material_009 │ ├── mat_mk64_fence │ ├── mat_mk64_flag │ ├── mat_mk64_flowers │ ├── mat_mk64_gallows1 │ ├── mat_mk64_grate │ ├── mat_mk64_ground │ ├── mat_mk64_leaf1 │ ├── mat_mk64_leaves │ ├── mat_mk64_moon1 │ ├── mat_mk64_moon2 │ ├── mat_mk64_office1 │ ├── mat_mk64_parking │ ├── mat_mk64_path │ ├── mat_mk64_roof1 │ ├── mat_mk64_rope │ ├── mat_mk64_sand │ ├── mat_mk64_sign │ ├── mat_mk64_teeth │ ├── mat_mk64_wall1 │ ├── mat_mk64_water1 │ ├── mat_mk64_water2 │ ├── mat_mk64_window1 │ ├── mat_revert_mk64_HM │ ├── mat_revert_mk64__64 │ ├── mat_revert_mk64_bark1 │ ├── mat_revert_mk64_beware │ ├── mat_revert_mk64_black │ ├── mat_revert_mk64_coffin │ ├── mat_revert_mk64_dock │ ├── mat_revert_mk64_door1 │ ├── mat_revert_mk64_eye2 │ ├── mat_revert_mk64_f3d_material_001 │ ├── mat_revert_mk64_f3d_material_005 │ ├── mat_revert_mk64_f3d_material_006 │ ├── mat_revert_mk64_f3d_material_012 │ ├── mat_revert_mk64_f3d_material_013 │ ├── mat_revert_mk64_f3d_material_014 │ ├── mat_revert_mk64_f3dlite_material_001 │ ├── mat_revert_mk64_f3dlite_material_002 │ ├── mat_revert_mk64_f3dlite_material_007 │ ├── mat_revert_mk64_f3dlite_material_009 │ ├── mat_revert_mk64_fence │ ├── mat_revert_mk64_flag │ ├── mat_revert_mk64_flowers │ ├── mat_revert_mk64_gallows1 │ ├── mat_revert_mk64_grate │ ├── mat_revert_mk64_ground │ ├── mat_revert_mk64_leaf1 │ ├── mat_revert_mk64_leaves │ ├── mat_revert_mk64_moon1 │ ├── mat_revert_mk64_moon2 │ ├── mat_revert_mk64_office1 │ ├── mat_revert_mk64_parking │ ├── mat_revert_mk64_path │ ├── mat_revert_mk64_roof1 │ ├── mat_revert_mk64_rope │ ├── mat_revert_mk64_sand │ ├── mat_revert_mk64_sign │ ├── mat_revert_mk64_teeth │ ├── mat_revert_mk64_wall1 │ ├── mat_revert_mk64_water1 │ ├── mat_revert_mk64_water2 │ ├── mat_revert_mk64_window1 │ ├── minimap.png │ ├── mk64 │ ├── mk64_tri_0 │ ├── mk64_vtx_0 │ ├── mk64_vtx_cull │ ├── moon1.rgba16 │ ├── moon2.rgba16 │ ├── moon_mesh │ ├── moon_mesh_tri_0 │ ├── moon_mesh_tri_1 │ ├── moon_mesh_tri_2 │ ├── moon_mesh_tri_3 │ ├── moon_mesh_tri_4 │ ├── moon_mesh_vtx_0 │ ├── moon_mesh_vtx_1 │ ├── moon_mesh_vtx_2 │ ├── moon_mesh_vtx_3 │ ├── moon_mesh_vtx_4 │ ├── moon_mesh_vtx_cull │ ├── noparking.rgba16 │ ├── office1.rgba16 │ ├── parascode.rgba16 │ ├── paraseye.rgba32 │ ├── parking.rgba16 │ ├── pirate.rgba16 │ ├── road4.rgba16 │ ├── rope.rgba16 │ ├── sand.rgba16 │ ├── scene.json │ ├── seamless-green-lush-grass-texture-seamless-green-lush-grass-texture-fresh-backdrop-144751691.rgba16 │ ├── seamless-wood-texture-free-76.rgba16 │ ├── superFXSteel.rgba16 │ ├── teeth1.rgba32 │ ├── water1.rgba32 │ ├── water1_mesh │ ├── water1_mesh_tri_0 │ ├── water1_mesh_tri_1 │ ├── water1_mesh_vtx_0 │ ├── water1_mesh_vtx_1 │ ├── water1_mesh_vtx_cull │ ├── water3.rgba16 │ ├── window.rgba16 │ └── woodPlanks1.rgba16 ├── cmake ├── automate-vcpkg.cmake ├── configure-packaging.cmake ├── ios.toolchain.cmake ├── lus-cvars.cmake ├── modules │ ├── FindOgg.cmake │ ├── FindPulseAudio.cmake │ ├── FindVorbis.cmake │ ├── FindlibUsb.cmake │ └── Findudev.cmake ├── packaging.cmake └── toolchain-x86_64-w64-mingw32.cmake ├── config.yml ├── courses ├── all_course_data.h ├── all_course_model.h ├── all_course_offsets.h ├── all_course_packed.h ├── banshee_boardwalk │ └── course_offsets.c ├── big_donut │ └── course_offsets.c ├── block_fort │ └── course_offsets.c ├── bowsers_castle │ └── course_offsets.c ├── choco_mountain │ └── course_offsets.c ├── dks_jungle_parkway │ └── course_offsets.c ├── double_deck │ └── course_offsets.c ├── frappe_snowland │ └── course_offsets.c ├── harbour │ ├── ghostship_model.c │ ├── ghostship_model.h │ ├── powered.c │ ├── powered.h │ ├── ship2_model.c │ ├── ship2_model.h │ ├── ship3_model.c │ ├── ship3_model.h │ ├── ship_model.c │ ├── ship_model.h │ ├── starship_model.c │ ├── starship_model.h │ ├── track.c │ └── track.h ├── kalimari_desert │ └── course_offsets.c ├── koopa_troopa_beach │ └── course_offsets.c ├── luigi_raceway │ ├── course_displaylists.h │ ├── course_offsets.c │ └── staff_ghost.inc.c ├── mario_raceway │ ├── course_displaylists.h │ ├── course_offsets.c │ └── staff_ghost.inc.c ├── moo_moo_farm │ └── course_offsets.c ├── rainbow_road │ └── course_offsets.c ├── royal_raceway │ ├── course_offsets.c │ └── staff_ghost.inc.c ├── sherbet_land │ └── course_offsets.c ├── staff_ghost_data.c ├── staff_ghost_data.h ├── test_track │ ├── data.c │ ├── model.c │ └── vtx.c ├── toads_turnpike │ └── course_offsets.c ├── wario_stadium │ └── course_offsets.c └── yoshi_valley │ └── course_offsets.c ├── docs ├── BUILDING.md ├── MK64_Spaghetti_Adjusted_Kart_Setup.blend ├── actors │ ├── actors.md │ ├── items.md │ ├── objects.md │ └── vehicles.md ├── actorsmenu.md ├── basics │ ├── basicconcepts.md │ ├── compiling.md │ ├── controlflow.md │ ├── placeholder.png │ └── terminology.md ├── basicsmenu.md ├── change_viewport.png ├── courses │ ├── courses.md │ └── surfacetypes.md ├── coursesmenu.md ├── custom-audio.md ├── custom-characters.md ├── custom-track.md ├── docs.css ├── faq.md ├── header.html ├── html │ └── buttonimage.png ├── images │ └── buttonimage.png ├── mainpage.md ├── migrations.md ├── modding.md ├── mods-toml.md ├── poweredbylus.darkmode.png ├── poweredbylus.lightmode.png ├── sequences-information.md ├── spaghettigithublight.png ├── spaghettigithubnight.png ├── textures-pack.md ├── track_returns.md ├── tutorials.md └── tutorials │ ├── audio.md │ ├── boostramps.md │ └── paths.md ├── extract_assets.py ├── icon.png ├── include ├── PR │ ├── libaudio.h │ ├── os_rdp.h │ ├── os_thread.h │ ├── os_time.h │ └── os_tlb.h ├── actor_types.h ├── align_asset_macro.h ├── assets │ ├── models │ │ ├── ceremony_data.h │ │ ├── common_data.h │ │ ├── data_800E8700.h │ │ ├── data_segment2.h │ │ ├── startup_logo.h │ │ └── tracks │ │ │ ├── banshee_boardwalk │ │ │ ├── banshee_boardwalk_data.h │ │ │ ├── banshee_boardwalk_displaylists.h │ │ │ └── banshee_boardwalk_vertices.h │ │ │ ├── big_donut │ │ │ ├── big_donut_data.h │ │ │ ├── big_donut_displaylists.h │ │ │ └── big_donut_vertices.h │ │ │ ├── block_fort │ │ │ ├── block_fort_data.h │ │ │ ├── block_fort_displaylists.h │ │ │ └── block_fort_vertices.h │ │ │ ├── bowsers_castle │ │ │ ├── bowsers_castle_data.h │ │ │ ├── bowsers_castle_displaylists.h │ │ │ └── bowsers_castle_vertices.h │ │ │ ├── choco_mountain │ │ │ ├── choco_mountain_data.h │ │ │ ├── choco_mountain_displaylists.h │ │ │ └── choco_mountain_vertices.h │ │ │ ├── dks_jungle_parkway │ │ │ ├── dks_jungle_parkway_data.h │ │ │ ├── dks_jungle_parkway_displaylists.h │ │ │ └── dks_jungle_parkway_vertices.h │ │ │ ├── double_deck │ │ │ ├── double_deck_data.h │ │ │ ├── double_deck_displaylists.h │ │ │ └── double_deck_vertices.h │ │ │ ├── frappe_snowland │ │ │ ├── frappe_snowland_data.h │ │ │ ├── frappe_snowland_displaylists.h │ │ │ └── frappe_snowland_vertices.h │ │ │ ├── kalimari_desert │ │ │ ├── kalimari_desert_data.h │ │ │ ├── kalimari_desert_displaylists.h │ │ │ └── kalimari_desert_vertices.h │ │ │ ├── koopa_troopa_beach │ │ │ ├── koopa_troopa_beach_data.h │ │ │ ├── koopa_troopa_beach_displaylists.h │ │ │ └── koopa_troopa_beach_vertices.h │ │ │ ├── luigi_raceway │ │ │ ├── luigi_raceway_data.h │ │ │ ├── luigi_raceway_displaylists.h │ │ │ └── luigi_raceway_vertices.h │ │ │ ├── mario_raceway │ │ │ ├── mario_raceway_data.h │ │ │ ├── mario_raceway_displaylists.h │ │ │ └── mario_raceway_vertices.h │ │ │ ├── moo_moo_farm │ │ │ ├── moo_moo_farm_data.h │ │ │ ├── moo_moo_farm_displaylists.h │ │ │ └── moo_moo_farm_vertices.h │ │ │ ├── rainbow_road │ │ │ ├── rainbow_road_data.h │ │ │ ├── rainbow_road_displaylists.h │ │ │ └── rainbow_road_vertices.h │ │ │ ├── royal_raceway │ │ │ ├── royal_raceway_data.h │ │ │ ├── royal_raceway_displaylists.h │ │ │ └── royal_raceway_vertices.h │ │ │ ├── sherbet_land │ │ │ ├── sherbet_land_data.h │ │ │ ├── sherbet_land_displaylists.h │ │ │ └── sherbet_land_vertices.h │ │ │ ├── skyscraper │ │ │ ├── skyscraper_data.h │ │ │ ├── skyscraper_displaylists.h │ │ │ └── skyscraper_vertices.h │ │ │ ├── toads_turnpike │ │ │ ├── toads_turnpike_data.h │ │ │ ├── toads_turnpike_displaylists.h │ │ │ ├── toads_turnpike_offsets.h │ │ │ └── toads_turnpike_vertices.h │ │ │ ├── wario_stadium │ │ │ ├── wario_stadium_data.h │ │ │ ├── wario_stadium_displaylists.h │ │ │ └── wario_stadium_vertices.h │ │ │ └── yoshi_valley │ │ │ ├── yoshi_valley_data.h │ │ │ ├── yoshi_valley_displaylists.h │ │ │ └── yoshi_valley_vertices.h │ ├── other │ │ ├── ceremony_data.h │ │ ├── common_data.h │ │ ├── startup_logo.h │ │ └── tracks │ │ │ ├── banshee_boardwalk │ │ │ └── banshee_boardwalk_data.h │ │ │ ├── big_donut │ │ │ └── big_donut_data.h │ │ │ ├── block_fort │ │ │ └── block_fort_data.h │ │ │ ├── bowsers_castle │ │ │ └── bowsers_castle_data.h │ │ │ ├── choco_mountain │ │ │ └── choco_mountain_data.h │ │ │ ├── dks_jungle_parkway │ │ │ └── dks_jungle_parkway_data.h │ │ │ ├── double_deck │ │ │ └── double_deck_data.h │ │ │ ├── frappe_snowland │ │ │ └── frappe_snowland_data.h │ │ │ ├── kalimari_desert │ │ │ └── kalimari_desert_data.h │ │ │ ├── koopa_troopa_beach │ │ │ └── koopa_troopa_beach_data.h │ │ │ ├── luigi_raceway │ │ │ └── luigi_raceway_data.h │ │ │ ├── mario_raceway │ │ │ └── mario_raceway_data.h │ │ │ ├── moo_moo_farm │ │ │ └── moo_moo_farm_data.h │ │ │ ├── rainbow_road │ │ │ └── rainbow_road_data.h │ │ │ ├── royal_raceway │ │ │ └── royal_raceway_data.h │ │ │ ├── sherbet_land │ │ │ └── sherbet_land_data.h │ │ │ ├── skyscraper │ │ │ └── skyscraper_data.h │ │ │ ├── toads_turnpike │ │ │ └── toads_turnpike_data.h │ │ │ ├── wario_stadium │ │ │ └── wario_stadium_data.h │ │ │ └── yoshi_valley │ │ │ └── yoshi_valley_data.h │ ├── sound │ │ └── root.h │ └── textures │ │ ├── boo_frames.h │ │ ├── ceremony_data.h │ │ ├── common_data.h │ │ ├── karts │ │ ├── bowser_kart.h │ │ ├── donkeykong_kart.h │ │ ├── luigi_kart.h │ │ ├── mario_kart.h │ │ ├── peach_kart.h │ │ ├── toad_kart.h │ │ ├── wario_kart.h │ │ └── yoshi_kart.h │ │ ├── other_textures.h │ │ ├── player_selection.h │ │ ├── some_data.h │ │ ├── startup_logo.h │ │ ├── texture_data_2.h │ │ ├── texture_tkmk00.h │ │ └── tracks │ │ ├── banshee_boardwalk │ │ └── banshee_boardwalk_data.h │ │ ├── bowsers_castle │ │ └── bowsers_castle_data.h │ │ ├── choco_mountain │ │ └── choco_mountain_data.h │ │ ├── dks_jungle_parkway │ │ └── dks_jungle_parkway_data.h │ │ ├── frappe_snowland │ │ └── frappe_snowland_data.h │ │ ├── kalimari_desert │ │ └── kalimari_desert_data.h │ │ ├── koopa_troopa_beach │ │ └── koopa_troopa_beach_data.h │ │ ├── luigi_raceway │ │ └── luigi_raceway_data.h │ │ ├── mario_raceway │ │ └── mario_raceway_data.h │ │ ├── moo_moo_farm │ │ └── moo_moo_farm_data.h │ │ ├── rainbow_road │ │ └── rainbow_road_data.h │ │ ├── royal_raceway │ │ └── royal_raceway_data.h │ │ ├── sherbet_land │ │ └── sherbet_land_data.h │ │ ├── toads_turnpike │ │ └── toads_turnpike_data.h │ │ ├── wario_stadium │ │ └── wario_stadium_data.h │ │ └── yoshi_valley │ │ └── yoshi_valley_data.h ├── audio │ └── miniaudio.h ├── bomb_kart.h ├── common_structs.h ├── course_offsets.h ├── debug.h ├── decode.h ├── defines.h ├── kart_attributes.h ├── libc │ ├── math.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ └── string.h ├── macros.h ├── macros.inc ├── mk64.h ├── objects.h ├── portable-file-dialogs.h ├── save_data.h ├── segments.h ├── sounds.h ├── spline.h ├── stubs.h ├── vehicles.h └── waypoints.h ├── lus-cvars.cmake ├── meta └── mods.toml ├── models ├── README.MD ├── common_textures.json └── tracks │ ├── banshee_boardwalk.json │ ├── battle_track.json │ ├── bowsers_castle.json │ ├── choco_mountain.json │ ├── dks_jungle_parkway.json │ ├── frappe_snowland.json │ ├── kalimari_desert.json │ ├── koopa_troopa_beach.json │ ├── luigi_raceway.json │ ├── mario_raceway.json │ ├── moo_moo_farm.json │ ├── rainbow_road.json │ ├── royal_raceway.json │ ├── sherbet_land.json │ ├── toads_turnpike.json │ ├── wario_stadium.json │ └── yoshi_valley.json ├── mods ├── C │ ├── compile.sh │ └── test.c ├── asc │ ├── .gitignore │ ├── asconfig.json │ ├── assembly │ │ ├── index.ts │ │ └── tsconfig.json │ ├── compile.sh │ ├── index.html │ ├── package.json │ ├── setup.sh │ └── tests │ │ └── index.js ├── cython │ ├── compile.sh │ ├── file.text │ ├── setup.py │ ├── test.c │ └── test.py ├── go │ ├── compile.sh │ └── test.go ├── js │ ├── compile.sh │ ├── test.js │ └── test.wit ├── lua │ ├── compile.sh │ ├── definition.yml │ └── test.lua ├── ocaml │ ├── .gitignore │ ├── compile.sh │ ├── test.ml │ └── test.mli ├── py │ ├── compile.sh │ ├── py2wasmtest.py │ ├── setup.sh │ └── test.py ├── py2many │ ├── .gitignore │ ├── compile.sh │ ├── export.cpp │ └── main.py ├── python-rust │ ├── .github │ │ └── dependabot.yml │ ├── .gitignore │ ├── .travis.yml │ ├── Cargo.toml │ ├── LICENSE_APACHE │ ├── LICENSE_MIT │ ├── README.md │ ├── compile.sh │ ├── setup.sh │ ├── src │ │ └── lib.rs │ └── tests │ │ └── web.rs └── rust │ ├── .github │ └── dependabot.yml │ ├── .gitignore │ ├── .travis.yml │ ├── Cargo.toml │ ├── LICENSE_APACHE │ ├── LICENSE_MIT │ ├── compile.sh │ ├── setup.sh │ ├── src │ └── lib.rs │ └── tests │ └── web.rs ├── port └── assets │ └── fonts │ ├── Fipps-Regular.otf │ └── PressStart2P-Regular.ttf ├── progress.py ├── properties.h ├── properties.h.in ├── python_convert.py ├── rename_sym.sh ├── script ├── Dockerfile ├── build-release.sh ├── check_type_yamls.py └── valgrind_callgrind.sh ├── spaghettikart.ico ├── spaghettikart.manifest ├── src ├── actors │ ├── banana │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── blue_and_red_shells │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── box_truck │ │ └── render.inc.c │ ├── car │ │ └── render.inc.c │ ├── cow │ │ └── render.inc.c │ ├── fake_item_box │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── falling_rock │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── green_shell │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── item_box │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── kiwano_fruit │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── mario_sign │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── paddle_boat │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── palm_tree │ │ └── render.inc.c │ ├── piranha_plant │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── railroad_crossing │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── school_bus │ │ └── render.inc.c │ ├── tanker_truck │ │ └── render.inc.c │ ├── train │ │ ├── render.inc.c │ │ └── update.inc.c │ ├── trees │ │ └── render.inc.c │ ├── wario_sign │ │ ├── render.inc.c │ │ └── update.inc.c │ └── yoshi_egg │ │ ├── render.inc.c │ │ └── update.inc.c ├── animation.c ├── animation.h ├── audio │ ├── GameAudio.h │ ├── audio_session_presets.c │ ├── data.c │ ├── data.h │ ├── effects.c │ ├── effects.h │ ├── external.c │ ├── external.h │ ├── heap.c │ ├── heap.h │ ├── internal.h │ ├── load.c │ ├── load.h │ ├── mixer.c │ ├── mixer.h │ ├── playback.c │ ├── playback.h │ ├── port_eu.c │ ├── port_eu.h │ ├── seqplayer.c │ ├── seqplayer.h │ ├── synthesis.c │ └── synthesis.h ├── buffers.h ├── buffers │ ├── audio_heap.c │ ├── audio_heap.h │ ├── buffers.c │ ├── gfx_output_buffer.c │ ├── gfx_output_buffer.h │ ├── memory_pool.c │ ├── random.c │ ├── random.h │ ├── trig_tables.c │ ├── trig_tables.h │ └── trig_tables_bss.c ├── camera.c ├── camera.h ├── code_800029B0.c ├── code_800029B0.h ├── code_80005FD0.c ├── code_80005FD0.h ├── code_8003DC40.c ├── code_8003DC40.h ├── code_80057C60.c ├── code_80057C60.h ├── code_80057C60_var.c ├── code_8006E9C0.c ├── code_8006E9C0.h ├── code_80086E70.c ├── code_80086E70.h ├── code_80091440.c ├── code_80091440.h ├── code_800AF9B0.c ├── code_800AF9B0.h ├── course_metadata.c ├── course_metadata.h ├── crash_screen.c ├── crash_screen.h ├── data │ ├── kart_attributes.c │ ├── path_spawn_metadata.c │ ├── path_spawn_metadata.h │ ├── some_data.c │ ├── some_data.h │ └── textures.c ├── debug │ ├── all_variables.h │ ├── crash_screen_enhancement.c │ ├── crash_screen_enhancement.h │ ├── debug.c │ └── debug.inc.c ├── effects.c ├── effects.h ├── ending │ ├── camera_junk.c │ ├── camera_junk.h │ ├── ceremony_and_credits.c │ ├── ceremony_and_credits.h │ ├── code_80280000.c │ ├── code_80280000.h │ ├── code_80281780.c │ ├── code_80281780.h │ ├── code_80281C40.c │ ├── code_80281C40.h │ ├── credits.c │ ├── credits.h │ ├── dl_unk_80284EE0.c │ ├── podium_ceremony_actors.c │ └── podium_ceremony_actors.h ├── engine │ ├── Actor.cpp │ ├── Actor.h │ ├── AllActors.h │ ├── CoreMath.h │ ├── Cup.cpp │ ├── Cup.h │ ├── GameAPI.h │ ├── GarbageCollector.cpp │ ├── GarbageCollector.h │ ├── HM_Intro.cpp │ ├── HM_Intro.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── PlayerBombKart.cpp │ ├── PlayerBombKart.h │ ├── RaceManager.cpp │ ├── RaceManager.h │ ├── RegisteredActors.cpp │ ├── RegisteredActors.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Rulesets.cpp │ ├── Rulesets.h │ ├── Smoke.cpp │ ├── Smoke.h │ ├── SpawnParams.h │ ├── StaticMeshActor.cpp │ ├── StaticMeshActor.h │ ├── TrainCrossing.cpp │ ├── TrainCrossing.h │ ├── World.cpp │ ├── World.h │ ├── actors │ │ ├── Banana.cpp │ │ ├── Banana.h │ │ ├── BowserStatue.cpp │ │ ├── BowserStatue.h │ │ ├── Cloud.cpp │ │ ├── Cloud.h │ │ ├── FallingRock.cpp │ │ ├── FallingRock.h │ │ ├── Finishline.cpp │ │ ├── Finishline.h │ │ ├── MarioSign.cpp │ │ ├── MarioSign.h │ │ ├── Ship.cpp │ │ ├── Ship.h │ │ ├── SpaghettiShip.cpp │ │ ├── SpaghettiShip.h │ │ ├── Starship.cpp │ │ ├── Starship.h │ │ ├── Text.cpp │ │ ├── Text.h │ │ ├── Tree.cpp │ │ ├── Tree.h │ │ ├── WarioSign.cpp │ │ └── WarioSign.h │ ├── cameras │ │ ├── FreeCamera.cpp │ │ ├── FreeCamera.h │ │ ├── GameCamera.cpp │ │ ├── GameCamera.h │ │ ├── LookBehindCamera.cpp │ │ ├── LookBehindCamera.h │ │ ├── TourCamera.cpp │ │ └── TourCamera.h │ ├── editor │ │ ├── Collision.cpp │ │ ├── Collision.h │ │ ├── Editor.cpp │ │ ├── Editor.h │ │ ├── EditorMath.cpp │ │ ├── EditorMath.h │ │ ├── GameObject.cpp │ │ ├── GameObject.h │ │ ├── Gizmo.cpp │ │ ├── Gizmo.h │ │ ├── Handles.cpp │ │ ├── Handles.h │ │ ├── Light.cpp │ │ ├── Light.h │ │ ├── ObjectPicker.cpp │ │ ├── ObjectPicker.h │ │ ├── SceneManager.cpp │ │ └── SceneManager.h │ ├── items │ │ ├── Items.cpp │ │ └── Items.h │ ├── mods │ │ ├── ModManager.cpp │ │ ├── ModManager.h │ │ ├── ModMetadata.cpp │ │ └── ModMetadata.h │ ├── objects │ │ ├── Bat.cpp │ │ ├── Bat.h │ │ ├── BombKart.cpp │ │ ├── BombKart.h │ │ ├── Boos.cpp │ │ ├── Boos.h │ │ ├── ChainChomp.cpp │ │ ├── ChainChomp.h │ │ ├── CheepCheep.cpp │ │ ├── CheepCheep.h │ │ ├── Crab.cpp │ │ ├── Crab.h │ │ ├── Flagpole.cpp │ │ ├── Flagpole.h │ │ ├── GrandPrixBalloons.cpp │ │ ├── GrandPrixBalloons.h │ │ ├── Hedgehog.cpp │ │ ├── Hedgehog.h │ │ ├── HotAirBalloon.cpp │ │ ├── HotAirBalloon.h │ │ ├── Lakitu.cpp │ │ ├── Lakitu.h │ │ ├── Mole.cpp │ │ ├── Mole.h │ │ ├── MoleGroup.cpp │ │ ├── MoleGroup.h │ │ ├── Object.cpp │ │ ├── Object.h │ │ ├── Penguin.cpp │ │ ├── Penguin.h │ │ ├── Podium.cpp │ │ ├── Podium.h │ │ ├── Seagull.cpp │ │ ├── Seagull.h │ │ ├── Snowman.cpp │ │ ├── Snowman.h │ │ ├── Thwomp.cpp │ │ ├── Thwomp.h │ │ ├── TrashBin.cpp │ │ ├── TrashBin.h │ │ ├── Trophy.cpp │ │ └── Trophy.h │ ├── particles │ │ ├── ParticleEmitter.cpp │ │ ├── ParticleEmitter.h │ │ ├── StarEmitter.cpp │ │ └── StarEmitter.h │ ├── readme.txt │ ├── tracks │ │ ├── BansheeBoardwalk.cpp │ │ ├── BansheeBoardwalk.h │ │ ├── BigDonut.cpp │ │ ├── BigDonut.h │ │ ├── BlockFort.cpp │ │ ├── BlockFort.h │ │ ├── BowsersCastle.cpp │ │ ├── BowsersCastle.h │ │ ├── ChocoMountain.cpp │ │ ├── ChocoMountain.h │ │ ├── DKJungle.cpp │ │ ├── DKJungle.h │ │ ├── DoubleDeck.cpp │ │ ├── DoubleDeck.h │ │ ├── FrappeSnowland.cpp │ │ ├── FrappeSnowland.h │ │ ├── Harbour.cpp │ │ ├── Harbour.h │ │ ├── KalimariDesert.cpp │ │ ├── KalimariDesert.h │ │ ├── KoopaTroopaBeach.cpp │ │ ├── KoopaTroopaBeach.h │ │ ├── LuigiRaceway.cpp │ │ ├── LuigiRaceway.h │ │ ├── MarioRaceway.cpp │ │ ├── MarioRaceway.h │ │ ├── MooMooFarm.cpp │ │ ├── MooMooFarm.h │ │ ├── PodiumCeremony.cpp │ │ ├── PodiumCeremony.h │ │ ├── RainbowRoad.cpp │ │ ├── RainbowRoad.h │ │ ├── RoyalRaceway.cpp │ │ ├── RoyalRaceway.h │ │ ├── SherbetLand.cpp │ │ ├── SherbetLand.h │ │ ├── Skyscraper.cpp │ │ ├── Skyscraper.h │ │ ├── TestTrack.cpp │ │ ├── TestTrack.h │ │ ├── ToadsTurnpike.cpp │ │ ├── ToadsTurnpike.h │ │ ├── Track.cpp │ │ ├── Track.h │ │ ├── WarioStadium.cpp │ │ ├── WarioStadium.h │ │ ├── YoshiValley.cpp │ │ └── YoshiValley.h │ ├── vehicles │ │ ├── Boat.cpp │ │ ├── Boat.h │ │ ├── Bus.cpp │ │ ├── Bus.h │ │ ├── Car.cpp │ │ ├── Car.h │ │ ├── TankerTruck.cpp │ │ ├── TankerTruck.h │ │ ├── Train.cpp │ │ ├── Train.h │ │ ├── Truck.cpp │ │ ├── Truck.h │ │ ├── Utils.cpp │ │ └── Utils.h │ ├── wasm.cpp │ └── wasm.h ├── enhancements │ ├── collision_viewer.c │ ├── collision_viewer.h │ ├── freecam │ │ ├── freecam.cpp │ │ ├── freecam.h │ │ ├── freecam_engine.c │ │ └── freecam_engine.h │ ├── moon_jump.c │ └── moon_jump.h ├── gbiMacro.c ├── harbour_masters.c ├── harbour_masters.h ├── kart_dma.c ├── kart_dma.h ├── main.c ├── main.h ├── math_util_2.c ├── math_util_2.h ├── menu_items.c ├── menu_items.h ├── menus.c ├── menus.h ├── os │ ├── NaN.c │ ├── _Ldtob.c │ ├── _Litob.c │ ├── _Printf.c │ ├── __osAiDeviceBusy.c │ ├── __osAtomicDec.c │ ├── __osDequeueThread.c │ ├── __osDevMgrMain.c │ ├── __osEPiRawReadIo.c │ ├── __osEPiRawWriteIo.c │ ├── __osGetCurrFaultedThread.c │ ├── __osLeoInterrupt.c │ ├── __osPiCreateAccessQueue.c │ ├── __osResetGlobalIntMask.c │ ├── __osSetGlobalIntMask.c │ ├── __osSetHWIntrRoutine.c │ ├── __osSiCreateAccessQueue.c │ ├── __osSiDeviceBusy.c │ ├── __osSiRawReadIo.c │ ├── __osSiRawStartDma.c │ ├── __osSiRawWriteIo.c │ ├── __osSpDeviceBusy.c │ ├── __osSpGetStatus.c │ ├── __osSpRawStartDma.c │ ├── __osSpSetPc.c │ ├── __osSpSetStatus.c │ ├── __osSyncPutChars.c │ ├── __osViGetCurrentContext.c │ ├── __osViInit.c │ ├── __osViSwapContext.c │ ├── alBnkfNew.c │ ├── bstring.h │ ├── contpfs.c │ ├── contramread.c │ ├── contramwrite.c │ ├── controller.h │ ├── crc.c │ ├── epidma.c │ ├── guLookAtF.c │ ├── guLookAtRef.c │ ├── guMtxCatF.c │ ├── guMtxCatL.c │ ├── guMtxF2L.c │ ├── guNormalize.c │ ├── guOrthoF.c │ ├── guPerspectiveF.c │ ├── guRotateF.c │ ├── guScaleF.c │ ├── guTranslateF.c │ ├── hardware.h │ ├── is_debug.c │ ├── ldiv.c │ ├── libaudio_internal.h │ ├── libultra_internal.h │ ├── math │ │ ├── cosf.c │ │ ├── llconv.c │ │ └── sinf.c │ ├── new_func.h │ ├── osAi.h │ ├── osAiGetLength.c │ ├── osAiSetFrequency.c │ ├── osAiSetNextBuffer.c │ ├── osCartRomInit.c │ ├── osContInit.c │ ├── osContStartReadData.c │ ├── osCreateMesgQueue.c │ ├── osCreatePiManager.c │ ├── osCreateThread.c │ ├── osCreateViManager.c │ ├── osDestroyThread.c │ ├── osEPiRawStartDma.c │ ├── osEepromLongRead.c │ ├── osEepromLongWrite.c │ ├── osEepromProbe.c │ ├── osEepromRead.c │ ├── osEepromWrite.c │ ├── osGetThreadPri.c │ ├── osGetTime.c │ ├── osInitialize.c │ ├── osJamMesg.c │ ├── osLeoDiskInit.c │ ├── osPfsAllocateFile.c │ ├── osPfsChecker.c │ ├── osPfsDeleteFile.c │ ├── osPfsFileState.c │ ├── osPfsFreeBlocks.c │ ├── osPfsInit.c │ ├── osPfsIsPlug.c │ ├── osPfsNumFiles.c │ ├── osPfsReadWriteFile.c │ ├── osPfsSearchFile.c │ ├── osPiGetCmdQueue.c │ ├── osPiRawReadIo.c │ ├── osPiRawStartDma.c │ ├── osPiStartDma.c │ ├── osRecvMesg.c │ ├── osSendMesg.c │ ├── osSetEventMesg.c │ ├── osSetThreadPri.c │ ├── osSetTime.c │ ├── osSetTimer.c │ ├── osSpTaskLoadGo.c │ ├── osSpTaskYield.c │ ├── osSpTaskYielded.c │ ├── osStartThread.c │ ├── osSyncPrintf.c │ ├── osTimer.c │ ├── osViBlack.c │ ├── osViData.c │ ├── osViSetEvent.c │ ├── osViSetMode.c │ ├── osViSetSpecialFeatures.c │ ├── osViSwapBuffer.c │ ├── osViTable.c │ ├── osVirtualToPhysical.c │ ├── osYieldThread.c │ ├── osint.h │ ├── piint.h │ ├── printf.h │ ├── sprintf.c │ └── string.c ├── player_controller.c ├── player_controller.h ├── port │ ├── Engine.cpp │ ├── Engine.h │ ├── GBIMiddleware.cpp │ ├── Game.cpp │ ├── Game.h │ ├── GameExtractor.cpp │ ├── GameExtractor.h │ ├── ShipUtils.cpp │ ├── ShipUtils.h │ ├── SpaghettiGui.cpp │ ├── SpaghettiGui.h │ ├── Variables.cpp │ ├── audio │ │ ├── HMAS.cpp │ │ └── HMAS.h │ ├── interpolation │ │ ├── FrameInterpolation.cpp │ │ ├── FrameInterpolation.h │ │ ├── matrix.c │ │ └── matrix.h │ ├── pak.cpp │ ├── resource │ │ ├── importers │ │ │ ├── ActorSpawnDataFactory.cpp │ │ │ ├── ActorSpawnDataFactory.h │ │ │ ├── ArrayFactory.cpp │ │ │ ├── ArrayFactory.h │ │ │ ├── AudioBankFactory.cpp │ │ │ ├── AudioBankFactory.h │ │ │ ├── AudioSampleFactory.cpp │ │ │ ├── AudioSampleFactory.h │ │ │ ├── AudioSequenceFactory.cpp │ │ │ ├── AudioSequenceFactory.h │ │ │ ├── BetterTextureFactory.cpp │ │ │ ├── BetterTextureFactory.h │ │ │ ├── CPUFactory.cpp │ │ │ ├── CPUFactory.h │ │ │ ├── CourseVtxFactory.cpp │ │ │ ├── CourseVtxFactory.h │ │ │ ├── GenericArrayFactory.cpp │ │ │ ├── GenericArrayFactory.h │ │ │ ├── MinimapFactory.cpp │ │ │ ├── MinimapFactory.h │ │ │ ├── ResourceUtil.h │ │ │ ├── TrackPathPointFactory.cpp │ │ │ ├── TrackPathPointFactory.h │ │ │ ├── TrackSectionsFactory.cpp │ │ │ ├── TrackSectionsFactory.h │ │ │ ├── UnkActorSpawnDataFactory.cpp │ │ │ ├── UnkActorSpawnDataFactory.h │ │ │ ├── Vec3fFactory.cpp │ │ │ ├── Vec3fFactory.h │ │ │ ├── Vec3sFactory.cpp │ │ │ └── Vec3sFactory.h │ │ └── type │ │ │ ├── Animation.cpp │ │ │ ├── Animation.h │ │ │ ├── Array.cpp │ │ │ ├── Array.h │ │ │ ├── AudioBank.cpp │ │ │ ├── AudioBank.h │ │ │ ├── AudioSample.cpp │ │ │ ├── AudioSample.h │ │ │ ├── AudioSequence.cpp │ │ │ ├── AudioSequence.h │ │ │ ├── CPU.cpp │ │ │ ├── CPU.h │ │ │ ├── ColPoly.cpp │ │ │ ├── ColPoly.h │ │ │ ├── CourseVtx.cpp │ │ │ ├── CourseVtx.h │ │ │ ├── EnvSettings.cpp │ │ │ ├── EnvSettings.h │ │ │ ├── GenericArray.cpp │ │ │ ├── GenericArray.h │ │ │ ├── Hitbox.cpp │ │ │ ├── Hitbox.h │ │ │ ├── Limb.cpp │ │ │ ├── Limb.h │ │ │ ├── Message.cpp │ │ │ ├── Message.h │ │ │ ├── Minimap.cpp │ │ │ ├── Minimap.h │ │ │ ├── ObjectInit.cpp │ │ │ ├── ObjectInit.h │ │ │ ├── ResourceType.h │ │ │ ├── Script.cpp │ │ │ ├── Script.h │ │ │ ├── Skeleton.cpp │ │ │ ├── Skeleton.h │ │ │ ├── SpawnData.cpp │ │ │ ├── SpawnData.h │ │ │ ├── TrackPathPointData.cpp │ │ │ ├── TrackPathPointData.h │ │ │ ├── TrackSections.cpp │ │ │ ├── TrackSections.h │ │ │ ├── UnkSpawnData.cpp │ │ │ ├── UnkSpawnData.h │ │ │ ├── Vec3fArray.cpp │ │ │ ├── Vec3fArray.h │ │ │ ├── Vec3sArray.cpp │ │ │ └── Vec3sArray.h │ └── ui │ │ ├── ContentBrowser.cpp │ │ ├── ContentBrowser.h │ │ ├── DefaultProperties.cpp │ │ ├── DefaultProperties.h │ │ ├── FreecamWindow.cpp │ │ ├── FreecamWindow.h │ │ ├── ImguiUI.cpp │ │ ├── ImguiUI.h │ │ ├── Menu.cpp │ │ ├── Menu.h │ │ ├── MenuTypes.h │ │ ├── PortMenu.cpp │ │ ├── PortMenu.h │ │ ├── Properties.cpp │ │ ├── Properties.h │ │ ├── ResolutionEditor.cpp │ │ ├── ResolutionEditor.h │ │ ├── SceneExplorer.cpp │ │ ├── SceneExplorer.h │ │ ├── Tools.cpp │ │ ├── Tools.h │ │ ├── TrackProperties.cpp │ │ ├── TrackProperties.h │ │ ├── UIWidgets.cpp │ │ └── UIWidgets.h ├── profiler.c ├── profiler.h ├── racing │ ├── actors.c │ ├── actors.h │ ├── actors_extended.c │ ├── actors_extended.h │ ├── collision.c │ ├── collision.h │ ├── framebuffer_effects.c │ ├── framebuffer_effects.h │ ├── math_util.c │ ├── math_util.h │ ├── memory.c │ ├── memory.h │ ├── race_logic.c │ ├── race_logic.h │ ├── render_courses.c │ ├── render_courses.h │ ├── skybox_and_splitscreen.c │ └── skybox_and_splitscreen.h ├── render_objects.c ├── render_objects.h ├── render_player.c ├── render_player.h ├── replays.c ├── replays.h ├── save.c ├── save.h ├── spawn_players.c ├── spawn_players.h ├── stubs.c ├── textures.h ├── update_objects.c └── update_objects.h ├── tools ├── .gitignore ├── Makefile ├── apply_patch.sh ├── asm_processor │ ├── asm_processor.py │ ├── build.py │ └── prelude.inc ├── bin2c.py ├── blender │ ├── blender_export.py │ ├── clean_scene.py │ ├── extract_models.py │ └── fast64_run.py ├── create_patch.sh ├── displaylist_packer.c ├── doxygen_symbol_gen.py ├── extract_data_for_mio.c ├── format.py ├── gfxdis_multi.py ├── ido-recomp │ ├── linux │ │ ├── acpp │ │ ├── as0 │ │ ├── as1 │ │ ├── c++filt │ │ ├── cc │ │ ├── cfe │ │ ├── copt │ │ ├── crt1.o │ │ ├── crtn.o │ │ ├── err.english.cc │ │ ├── ld │ │ ├── libc.so │ │ ├── libc.so.1 │ │ ├── libexc.so │ │ ├── libgen.so │ │ ├── libm.so │ │ ├── strip │ │ ├── ugen │ │ ├── ujoin │ │ ├── uld │ │ ├── umerge │ │ ├── uopt │ │ ├── upas │ │ └── usplit │ ├── macos │ │ ├── acpp │ │ ├── as0 │ │ ├── as1 │ │ ├── c++filt │ │ ├── cc │ │ ├── cfe │ │ ├── copt │ │ ├── crt1.o │ │ ├── crtn.o │ │ ├── err.english.cc │ │ ├── ld │ │ ├── libc.so │ │ ├── libc.so.1 │ │ ├── libexc.so │ │ ├── libgen.so │ │ ├── libm.so │ │ ├── strip │ │ ├── ugen │ │ ├── ujoin │ │ ├── uld │ │ ├── umerge │ │ ├── uopt │ │ ├── upas │ │ └── usplit │ ├── versions.txt │ └── windows │ │ ├── acpp.exe │ │ ├── as0.exe │ │ ├── as1.exe │ │ ├── c++filt.exe │ │ ├── cc.exe │ │ ├── cfe.exe │ │ ├── copt.exe │ │ ├── crt1.o │ │ ├── crtn.o │ │ ├── err.english.cc │ │ ├── ld.exe │ │ ├── libc.so │ │ ├── libc.so.1 │ │ ├── libexc.so │ │ ├── libgen.so │ │ ├── libm.so │ │ ├── msys-2.0.dll │ │ ├── strip.exe │ │ ├── ugen.exe │ │ ├── ujoin.exe │ │ ├── uld.exe │ │ ├── umerge.exe │ │ ├── uopt.exe │ │ ├── upas.exe │ │ └── usplit.exe ├── libmio0.c ├── libmio0.h ├── libtkmk00.c ├── libtkmk00.h ├── linkonly_generator.py ├── m2ctx ├── mkgccgen.py ├── n64cksum.c ├── n64cksum.h ├── n64graphics.c ├── n64graphics.h ├── new_extract_assets.py ├── revert_patch.sh ├── set_o32abi_bit.py ├── stb │ ├── stb_image.h │ └── stb_image_write.h ├── utils.c ├── utils.h └── windows_build.py ├── vcpkg.json └── yamls └── us ├── models ├── ceremony_data.yml ├── common_data.yml ├── data_800E8700.yml ├── data_segment2.yml ├── startup_logo.yml └── tracks │ ├── banshee_boardwalk │ ├── banshee_boardwalk_data.yml │ ├── banshee_boardwalk_displaylists.yml │ └── banshee_boardwalk_vertices.yml │ ├── big_donut │ ├── big_donut_data.yml │ ├── big_donut_displaylists.yml │ └── big_donut_vertices.yml │ ├── block_fort │ ├── block_fort_data.yml │ ├── block_fort_displaylists.yml │ └── block_fort_vertices.yml │ ├── bowsers_castle │ ├── bowsers_castle_data.yml │ ├── bowsers_castle_displaylists.yml │ └── bowsers_castle_vertices.yml │ ├── choco_mountain │ ├── choco_mountain_data.yml │ ├── choco_mountain_displaylists.yml │ └── choco_mountain_vertices.yml │ ├── dks_jungle_parkway │ ├── dks_jungle_parkway_data.yml │ ├── dks_jungle_parkway_displaylists.yml │ └── dks_jungle_parkway_vertices.yml │ ├── double_deck │ ├── double_deck_data.yml │ ├── double_deck_displaylists.yml │ └── double_deck_vertices.yml │ ├── frappe_snowland │ ├── frappe_snowland_data.yml │ ├── frappe_snowland_displaylists.yml │ └── frappe_snowland_vertices.yml │ ├── kalimari_desert │ ├── kalimari_desert_data.yml │ ├── kalimari_desert_displaylists.yml │ └── kalimari_desert_vertices.yml │ ├── koopa_troopa_beach │ ├── koopa_troopa_beach_data.yml │ ├── koopa_troopa_beach_displaylists.yml │ └── koopa_troopa_beach_vertices.yml │ ├── luigi_raceway │ ├── luigi_raceway_data.yml │ ├── luigi_raceway_displaylists.yml │ └── luigi_raceway_vertices.yml │ ├── mario_raceway │ ├── mario_raceway_data.yml │ ├── mario_raceway_displaylists.yml │ └── mario_raceway_vertices.yml │ ├── moo_moo_farm │ ├── moo_moo_farm_data.yml │ ├── moo_moo_farm_displaylists.yml │ └── moo_moo_farm_vertices.yml │ ├── rainbow_road │ ├── rainbow_road_data.yml │ ├── rainbow_road_displaylists.yml │ └── rainbow_road_vertices.yml │ ├── royal_raceway │ ├── royal_raceway_data.yml │ ├── royal_raceway_displaylists.yml │ └── royal_raceway_vertices.yml │ ├── sherbet_land │ ├── sherbet_land_data.yml │ ├── sherbet_land_displaylists.yml │ └── sherbet_land_vertices.yml │ ├── skyscraper │ ├── skyscraper_data.yml │ ├── skyscraper_displaylists.yml │ └── skyscraper_vertices.yml │ ├── toads_turnpike │ ├── toads_turnpike_data.yml │ ├── toads_turnpike_displaylists.yml │ ├── toads_turnpike_offsets.yml │ └── toads_turnpike_vertices.yml │ ├── wario_stadium │ ├── wario_stadium_data.yml │ ├── wario_stadium_displaylists.yml │ └── wario_stadium_vertices.yml │ └── yoshi_valley │ ├── yoshi_valley_data.yml │ ├── yoshi_valley_displaylists.yml │ └── yoshi_valley_vertices.yml ├── other ├── ceremony_data.yml ├── common_data.yml ├── startup_logo.yml └── tracks │ ├── banshee_boardwalk │ └── banshee_boardwalk_data.yml │ ├── big_donut │ └── big_donut_data.yml │ ├── block_fort │ └── block_fort_data.yml │ ├── bowsers_castle │ └── bowsers_castle_data.yml │ ├── choco_mountain │ └── choco_mountain_data.yml │ ├── dks_jungle_parkway │ └── dks_jungle_parkway_data.yml │ ├── double_deck │ └── double_deck_data.yml │ ├── frappe_snowland │ └── frappe_snowland_data.yml │ ├── kalimari_desert │ └── kalimari_desert_data.yml │ ├── koopa_troopa_beach │ └── koopa_troopa_beach_data.yml │ ├── luigi_raceway │ └── luigi_raceway_data.yml │ ├── mario_raceway │ └── mario_raceway_data.yml │ ├── moo_moo_farm │ └── moo_moo_farm_data.yml │ ├── rainbow_road │ └── rainbow_road_data.yml │ ├── royal_raceway │ └── royal_raceway_data.yml │ ├── sherbet_land │ └── sherbet_land_data.yml │ ├── skyscraper │ └── skyscraper_data.yml │ ├── toads_turnpike │ └── toads_turnpike_data.yml │ ├── wario_stadium │ └── wario_stadium_data.yml │ └── yoshi_valley │ └── yoshi_valley_data.yml ├── sound ├── banks.yml ├── root.yml ├── samples.yml └── sequences.yml └── textures ├── boo_frames.yml ├── ceremony_data.yml ├── common_data.yml ├── data_800E45C0.yml ├── karts ├── bowser_kart.yml ├── donkeykong_kart.yml ├── luigi_kart.yml ├── mario_kart.yml ├── peach_kart.yml ├── toad_kart.yml ├── wario_kart.yml └── yoshi_kart.yml ├── other_textures.yml ├── player_selection.yml ├── some_data.yml ├── startup_logo.yml ├── texture_data_2.yml ├── texture_tkmk00.yml └── tracks ├── banshee_boardwalk └── banshee_boardwalk_data.yml ├── bowsers_castle └── bowsers_castle_data.yml ├── choco_mountain └── choco_mountain_data.yml ├── dks_jungle_parkway └── dks_jungle_parkway_data.yml ├── frappe_snowland └── frappe_snowland_data.yml ├── kalimari_desert └── kalimari_desert_data.yml ├── koopa_troopa_beach └── koopa_troopa_beach_data.yml ├── luigi_raceway └── luigi_raceway_data.yml ├── mario_raceway └── mario_raceway_data.yml ├── moo_moo_farm └── moo_moo_farm_data.yml ├── rainbow_road └── rainbow_road_data.yml ├── royal_raceway └── royal_raceway_data.yml ├── sherbet_land └── sherbet_land_data.yml ├── toads_turnpike └── toads_turnpike_data.yml ├── wario_stadium └── wario_stadium_data.yml └── yoshi_valley └── yoshi_valley_data.yml /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | end_of_line = lf 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/clang-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/.github/workflows/clang-pr.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/Doxyfile -------------------------------------------------------------------------------- /ExecutableResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/ExecutableResource.h -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/README.md -------------------------------------------------------------------------------- /Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/Resource.rc -------------------------------------------------------------------------------- /SpaghettiKart.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/SpaghettiKart.desktop -------------------------------------------------------------------------------- /assets/editor/gizmo/center_handle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/editor/gizmo/center_handle -------------------------------------------------------------------------------- /assets/editor/gizmo/model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/editor/gizmo/model.xml -------------------------------------------------------------------------------- /assets/editor/gizmo/rot_handle_red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/editor/gizmo/rot_handle_red -------------------------------------------------------------------------------- /assets/editor/light/model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/editor/light/model.xml -------------------------------------------------------------------------------- /assets/editor/light/sun_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/editor/light/sun_arrow -------------------------------------------------------------------------------- /assets/editor/water/model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/editor/water/model.xml -------------------------------------------------------------------------------- /assets/editor/water/water_plane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/editor/water/water_plane -------------------------------------------------------------------------------- /assets/fonts/Fipps-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/fonts/Fipps-Regular.otf -------------------------------------------------------------------------------- /assets/gizmo/gizmo_center_button: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/gizmo/gizmo_center_button -------------------------------------------------------------------------------- /assets/gizmo/model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/gizmo/model.xml -------------------------------------------------------------------------------- /assets/gizmo/scale_handle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/gizmo/scale_handle -------------------------------------------------------------------------------- /assets/gizmo/scale_handle_tri_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/gizmo/scale_handle_tri_0 -------------------------------------------------------------------------------- /assets/gizmo/scale_handle_vtx_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/gizmo/scale_handle_vtx_0 -------------------------------------------------------------------------------- /assets/gizmo/scale_handle_vtx_cull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/gizmo/scale_handle_vtx_cull -------------------------------------------------------------------------------- /assets/hmintro/lusgrade.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/hmintro/lusgrade.rgba16 -------------------------------------------------------------------------------- /assets/hmintro/poweredbylus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/hmintro/poweredbylus -------------------------------------------------------------------------------- /assets/hmintro/poweredbylus_tri_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/hmintro/poweredbylus_tri_0 -------------------------------------------------------------------------------- /assets/hmintro/poweredbylus_tri_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/hmintro/poweredbylus_tri_1 -------------------------------------------------------------------------------- /assets/hmintro/poweredbylus_vtx_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/hmintro/poweredbylus_vtx_0 -------------------------------------------------------------------------------- /assets/hmintro/poweredbylus_vtx_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/hmintro/poweredbylus_vtx_1 -------------------------------------------------------------------------------- /assets/mods.toml: -------------------------------------------------------------------------------- 1 | [mod] 2 | name="extended-assets" 3 | version="1.0.0-alpha1" 4 | -------------------------------------------------------------------------------- /assets/textures/buttons/ABtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/ABtn.png -------------------------------------------------------------------------------- /assets/textures/buttons/BBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/BBtn.png -------------------------------------------------------------------------------- /assets/textures/buttons/CDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/CDown.png -------------------------------------------------------------------------------- /assets/textures/buttons/CLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/CLeft.png -------------------------------------------------------------------------------- /assets/textures/buttons/CRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/CRight.png -------------------------------------------------------------------------------- /assets/textures/buttons/CUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/CUp.png -------------------------------------------------------------------------------- /assets/textures/buttons/LBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/LBtn.png -------------------------------------------------------------------------------- /assets/textures/buttons/RBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/RBtn.png -------------------------------------------------------------------------------- /assets/textures/buttons/ZBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/buttons/ZBtn.png -------------------------------------------------------------------------------- /assets/textures/icons/gIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/textures/icons/gIcon.png -------------------------------------------------------------------------------- /assets/tracks/harbour/bark2.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/bark2.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/bars1.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/bars1.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/data_paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/data_paths -------------------------------------------------------------------------------- /assets/tracks/harbour/door1.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/door1.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/fence.rgba32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/fence.rgba32 -------------------------------------------------------------------------------- /assets/tracks/harbour/flag.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/flag.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/heart1.ci8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/heart1.ci8 -------------------------------------------------------------------------------- /assets/tracks/harbour/leaf.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/leaf.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/map.001_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/map.001_mesh -------------------------------------------------------------------------------- /assets/tracks/harbour/map.002_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/map.002_mesh -------------------------------------------------------------------------------- /assets/tracks/harbour/map.003_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/map.003_mesh -------------------------------------------------------------------------------- /assets/tracks/harbour/map.004_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/map.004_mesh -------------------------------------------------------------------------------- /assets/tracks/harbour/map.005_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/map.005_mesh -------------------------------------------------------------------------------- /assets/tracks/harbour/map_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/map_mesh -------------------------------------------------------------------------------- /assets/tracks/harbour/mat_mk64_HM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/mat_mk64_HM -------------------------------------------------------------------------------- /assets/tracks/harbour/mat_mk64__64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/mat_mk64__64 -------------------------------------------------------------------------------- /assets/tracks/harbour/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/minimap.png -------------------------------------------------------------------------------- /assets/tracks/harbour/mk64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/mk64 -------------------------------------------------------------------------------- /assets/tracks/harbour/mk64_tri_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/mk64_tri_0 -------------------------------------------------------------------------------- /assets/tracks/harbour/mk64_vtx_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/mk64_vtx_0 -------------------------------------------------------------------------------- /assets/tracks/harbour/moon1.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/moon1.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/moon2.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/moon2.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/moon_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/moon_mesh -------------------------------------------------------------------------------- /assets/tracks/harbour/road4.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/road4.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/rope.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/rope.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/sand.rgba16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/sand.rgba16 -------------------------------------------------------------------------------- /assets/tracks/harbour/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/scene.json -------------------------------------------------------------------------------- /assets/tracks/harbour/water1_mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/assets/tracks/harbour/water1_mesh -------------------------------------------------------------------------------- /cmake/automate-vcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/automate-vcpkg.cmake -------------------------------------------------------------------------------- /cmake/configure-packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/configure-packaging.cmake -------------------------------------------------------------------------------- /cmake/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/ios.toolchain.cmake -------------------------------------------------------------------------------- /cmake/lus-cvars.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/lus-cvars.cmake -------------------------------------------------------------------------------- /cmake/modules/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/modules/FindOgg.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPulseAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/modules/FindPulseAudio.cmake -------------------------------------------------------------------------------- /cmake/modules/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/modules/FindVorbis.cmake -------------------------------------------------------------------------------- /cmake/modules/FindlibUsb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/modules/FindlibUsb.cmake -------------------------------------------------------------------------------- /cmake/modules/Findudev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/modules/Findudev.cmake -------------------------------------------------------------------------------- /cmake/packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/cmake/packaging.cmake -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/config.yml -------------------------------------------------------------------------------- /courses/all_course_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/all_course_data.h -------------------------------------------------------------------------------- /courses/all_course_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/all_course_model.h -------------------------------------------------------------------------------- /courses/all_course_offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/all_course_offsets.h -------------------------------------------------------------------------------- /courses/all_course_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/all_course_packed.h -------------------------------------------------------------------------------- /courses/big_donut/course_offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/big_donut/course_offsets.c -------------------------------------------------------------------------------- /courses/harbour/ghostship_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/ghostship_model.c -------------------------------------------------------------------------------- /courses/harbour/ghostship_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/ghostship_model.h -------------------------------------------------------------------------------- /courses/harbour/powered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/powered.c -------------------------------------------------------------------------------- /courses/harbour/powered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/powered.h -------------------------------------------------------------------------------- /courses/harbour/ship2_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/ship2_model.c -------------------------------------------------------------------------------- /courses/harbour/ship2_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/ship2_model.h -------------------------------------------------------------------------------- /courses/harbour/ship3_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/ship3_model.c -------------------------------------------------------------------------------- /courses/harbour/ship3_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/ship3_model.h -------------------------------------------------------------------------------- /courses/harbour/ship_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/ship_model.c -------------------------------------------------------------------------------- /courses/harbour/ship_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/ship_model.h -------------------------------------------------------------------------------- /courses/harbour/starship_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/starship_model.c -------------------------------------------------------------------------------- /courses/harbour/starship_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/starship_model.h -------------------------------------------------------------------------------- /courses/harbour/track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/track.c -------------------------------------------------------------------------------- /courses/harbour/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/harbour/track.h -------------------------------------------------------------------------------- /courses/staff_ghost_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/staff_ghost_data.c -------------------------------------------------------------------------------- /courses/staff_ghost_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/staff_ghost_data.h -------------------------------------------------------------------------------- /courses/test_track/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/test_track/data.c -------------------------------------------------------------------------------- /courses/test_track/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/test_track/model.c -------------------------------------------------------------------------------- /courses/test_track/vtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/courses/test_track/vtx.c -------------------------------------------------------------------------------- /docs/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/BUILDING.md -------------------------------------------------------------------------------- /docs/actors/actors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/actors/actors.md -------------------------------------------------------------------------------- /docs/actors/items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/actors/items.md -------------------------------------------------------------------------------- /docs/actors/objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/actors/objects.md -------------------------------------------------------------------------------- /docs/actors/vehicles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/actors/vehicles.md -------------------------------------------------------------------------------- /docs/actorsmenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/actorsmenu.md -------------------------------------------------------------------------------- /docs/basics/basicconcepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/basics/basicconcepts.md -------------------------------------------------------------------------------- /docs/basics/compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/basics/compiling.md -------------------------------------------------------------------------------- /docs/basics/controlflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/basics/controlflow.md -------------------------------------------------------------------------------- /docs/basics/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/basics/placeholder.png -------------------------------------------------------------------------------- /docs/basics/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/basics/terminology.md -------------------------------------------------------------------------------- /docs/basicsmenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/basicsmenu.md -------------------------------------------------------------------------------- /docs/change_viewport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/change_viewport.png -------------------------------------------------------------------------------- /docs/courses/courses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/courses/courses.md -------------------------------------------------------------------------------- /docs/courses/surfacetypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/courses/surfacetypes.md -------------------------------------------------------------------------------- /docs/coursesmenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/coursesmenu.md -------------------------------------------------------------------------------- /docs/custom-audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/custom-audio.md -------------------------------------------------------------------------------- /docs/custom-characters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/custom-characters.md -------------------------------------------------------------------------------- /docs/custom-track.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/custom-track.md -------------------------------------------------------------------------------- /docs/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/docs.css -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/header.html -------------------------------------------------------------------------------- /docs/html/buttonimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/html/buttonimage.png -------------------------------------------------------------------------------- /docs/images/buttonimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/images/buttonimage.png -------------------------------------------------------------------------------- /docs/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/mainpage.md -------------------------------------------------------------------------------- /docs/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/migrations.md -------------------------------------------------------------------------------- /docs/modding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/modding.md -------------------------------------------------------------------------------- /docs/mods-toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/mods-toml.md -------------------------------------------------------------------------------- /docs/poweredbylus.darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/poweredbylus.darkmode.png -------------------------------------------------------------------------------- /docs/poweredbylus.lightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/poweredbylus.lightmode.png -------------------------------------------------------------------------------- /docs/sequences-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/sequences-information.md -------------------------------------------------------------------------------- /docs/spaghettigithublight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/spaghettigithublight.png -------------------------------------------------------------------------------- /docs/spaghettigithubnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/spaghettigithubnight.png -------------------------------------------------------------------------------- /docs/textures-pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/textures-pack.md -------------------------------------------------------------------------------- /docs/track_returns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/track_returns.md -------------------------------------------------------------------------------- /docs/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/tutorials.md -------------------------------------------------------------------------------- /docs/tutorials/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/tutorials/audio.md -------------------------------------------------------------------------------- /docs/tutorials/boostramps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/tutorials/boostramps.md -------------------------------------------------------------------------------- /docs/tutorials/paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/docs/tutorials/paths.md -------------------------------------------------------------------------------- /extract_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/extract_assets.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/icon.png -------------------------------------------------------------------------------- /include/PR/libaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/PR/libaudio.h -------------------------------------------------------------------------------- /include/PR/os_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/PR/os_rdp.h -------------------------------------------------------------------------------- /include/PR/os_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/PR/os_thread.h -------------------------------------------------------------------------------- /include/PR/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/PR/os_time.h -------------------------------------------------------------------------------- /include/PR/os_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/PR/os_tlb.h -------------------------------------------------------------------------------- /include/actor_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/actor_types.h -------------------------------------------------------------------------------- /include/align_asset_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/align_asset_macro.h -------------------------------------------------------------------------------- /include/assets/other/common_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/assets/other/common_data.h -------------------------------------------------------------------------------- /include/assets/sound/root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/assets/sound/root.h -------------------------------------------------------------------------------- /include/audio/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/audio/miniaudio.h -------------------------------------------------------------------------------- /include/bomb_kart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/bomb_kart.h -------------------------------------------------------------------------------- /include/common_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/common_structs.h -------------------------------------------------------------------------------- /include/course_offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/course_offsets.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/decode.h -------------------------------------------------------------------------------- /include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/defines.h -------------------------------------------------------------------------------- /include/kart_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/kart_attributes.h -------------------------------------------------------------------------------- /include/libc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/libc/math.h -------------------------------------------------------------------------------- /include/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/libc/stdarg.h -------------------------------------------------------------------------------- /include/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/libc/stddef.h -------------------------------------------------------------------------------- /include/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/libc/stdio.h -------------------------------------------------------------------------------- /include/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/libc/stdlib.h -------------------------------------------------------------------------------- /include/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/libc/string.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/macros.inc -------------------------------------------------------------------------------- /include/mk64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/mk64.h -------------------------------------------------------------------------------- /include/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/objects.h -------------------------------------------------------------------------------- /include/portable-file-dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/portable-file-dialogs.h -------------------------------------------------------------------------------- /include/save_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/save_data.h -------------------------------------------------------------------------------- /include/segments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/segments.h -------------------------------------------------------------------------------- /include/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/sounds.h -------------------------------------------------------------------------------- /include/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/spline.h -------------------------------------------------------------------------------- /include/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/stubs.h -------------------------------------------------------------------------------- /include/vehicles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/vehicles.h -------------------------------------------------------------------------------- /include/waypoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/include/waypoints.h -------------------------------------------------------------------------------- /lus-cvars.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/lus-cvars.cmake -------------------------------------------------------------------------------- /meta/mods.toml: -------------------------------------------------------------------------------- 1 | [mod] 2 | name="mk64-assets" 3 | version="1.0.0-alpha1" 4 | -------------------------------------------------------------------------------- /models/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/README.MD -------------------------------------------------------------------------------- /models/common_textures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/common_textures.json -------------------------------------------------------------------------------- /models/tracks/battle_track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/battle_track.json -------------------------------------------------------------------------------- /models/tracks/bowsers_castle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/bowsers_castle.json -------------------------------------------------------------------------------- /models/tracks/choco_mountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/choco_mountain.json -------------------------------------------------------------------------------- /models/tracks/frappe_snowland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/frappe_snowland.json -------------------------------------------------------------------------------- /models/tracks/kalimari_desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/kalimari_desert.json -------------------------------------------------------------------------------- /models/tracks/luigi_raceway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/luigi_raceway.json -------------------------------------------------------------------------------- /models/tracks/mario_raceway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/mario_raceway.json -------------------------------------------------------------------------------- /models/tracks/moo_moo_farm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/moo_moo_farm.json -------------------------------------------------------------------------------- /models/tracks/rainbow_road.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/rainbow_road.json -------------------------------------------------------------------------------- /models/tracks/royal_raceway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/royal_raceway.json -------------------------------------------------------------------------------- /models/tracks/sherbet_land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/sherbet_land.json -------------------------------------------------------------------------------- /models/tracks/toads_turnpike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/toads_turnpike.json -------------------------------------------------------------------------------- /models/tracks/wario_stadium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/wario_stadium.json -------------------------------------------------------------------------------- /models/tracks/yoshi_valley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/models/tracks/yoshi_valley.json -------------------------------------------------------------------------------- /mods/C/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/C/compile.sh -------------------------------------------------------------------------------- /mods/C/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/C/test.c -------------------------------------------------------------------------------- /mods/asc/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /mods/asc/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/asc/asconfig.json -------------------------------------------------------------------------------- /mods/asc/assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/asc/assembly/index.ts -------------------------------------------------------------------------------- /mods/asc/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/asc/assembly/tsconfig.json -------------------------------------------------------------------------------- /mods/asc/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/asc/compile.sh -------------------------------------------------------------------------------- /mods/asc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/asc/index.html -------------------------------------------------------------------------------- /mods/asc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/asc/package.json -------------------------------------------------------------------------------- /mods/asc/setup.sh: -------------------------------------------------------------------------------- 1 | npm install -------------------------------------------------------------------------------- /mods/asc/tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/asc/tests/index.js -------------------------------------------------------------------------------- /mods/cython/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/cython/compile.sh -------------------------------------------------------------------------------- /mods/cython/file.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/cython/file.text -------------------------------------------------------------------------------- /mods/cython/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/cython/setup.py -------------------------------------------------------------------------------- /mods/cython/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/cython/test.c -------------------------------------------------------------------------------- /mods/cython/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/cython/test.py -------------------------------------------------------------------------------- /mods/go/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/go/compile.sh -------------------------------------------------------------------------------- /mods/go/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/go/test.go -------------------------------------------------------------------------------- /mods/js/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/js/compile.sh -------------------------------------------------------------------------------- /mods/js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/js/test.js -------------------------------------------------------------------------------- /mods/js/test.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/js/test.wit -------------------------------------------------------------------------------- /mods/lua/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/lua/compile.sh -------------------------------------------------------------------------------- /mods/lua/definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/lua/definition.yml -------------------------------------------------------------------------------- /mods/lua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/lua/test.lua -------------------------------------------------------------------------------- /mods/ocaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/ocaml/.gitignore -------------------------------------------------------------------------------- /mods/ocaml/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/ocaml/compile.sh -------------------------------------------------------------------------------- /mods/ocaml/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/ocaml/test.ml -------------------------------------------------------------------------------- /mods/ocaml/test.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/py/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/py/compile.sh -------------------------------------------------------------------------------- /mods/py/py2wasmtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/py/py2wasmtest.py -------------------------------------------------------------------------------- /mods/py/setup.sh: -------------------------------------------------------------------------------- 1 | python3.11 -m pip install py2wasm 2 | -------------------------------------------------------------------------------- /mods/py/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/py/test.py -------------------------------------------------------------------------------- /mods/py2many/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | *.pyc 3 | __pycache__ -------------------------------------------------------------------------------- /mods/py2many/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/py2many/compile.sh -------------------------------------------------------------------------------- /mods/py2many/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/py2many/export.cpp -------------------------------------------------------------------------------- /mods/py2many/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/py2many/main.py -------------------------------------------------------------------------------- /mods/python-rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/.gitignore -------------------------------------------------------------------------------- /mods/python-rust/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/.travis.yml -------------------------------------------------------------------------------- /mods/python-rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/Cargo.toml -------------------------------------------------------------------------------- /mods/python-rust/LICENSE_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/LICENSE_APACHE -------------------------------------------------------------------------------- /mods/python-rust/LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/LICENSE_MIT -------------------------------------------------------------------------------- /mods/python-rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/README.md -------------------------------------------------------------------------------- /mods/python-rust/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/compile.sh -------------------------------------------------------------------------------- /mods/python-rust/setup.sh: -------------------------------------------------------------------------------- 1 | rustup target add wasm32-wasip1 2 | -------------------------------------------------------------------------------- /mods/python-rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/src/lib.rs -------------------------------------------------------------------------------- /mods/python-rust/tests/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/python-rust/tests/web.rs -------------------------------------------------------------------------------- /mods/rust/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/.github/dependabot.yml -------------------------------------------------------------------------------- /mods/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/.gitignore -------------------------------------------------------------------------------- /mods/rust/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/.travis.yml -------------------------------------------------------------------------------- /mods/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/Cargo.toml -------------------------------------------------------------------------------- /mods/rust/LICENSE_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/LICENSE_APACHE -------------------------------------------------------------------------------- /mods/rust/LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/LICENSE_MIT -------------------------------------------------------------------------------- /mods/rust/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/compile.sh -------------------------------------------------------------------------------- /mods/rust/setup.sh: -------------------------------------------------------------------------------- 1 | rustup target add wasm32-wasip1 2 | -------------------------------------------------------------------------------- /mods/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/src/lib.rs -------------------------------------------------------------------------------- /mods/rust/tests/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/mods/rust/tests/web.rs -------------------------------------------------------------------------------- /progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/progress.py -------------------------------------------------------------------------------- /properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/properties.h -------------------------------------------------------------------------------- /properties.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/properties.h.in -------------------------------------------------------------------------------- /python_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/python_convert.py -------------------------------------------------------------------------------- /rename_sym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/rename_sym.sh -------------------------------------------------------------------------------- /script/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/script/Dockerfile -------------------------------------------------------------------------------- /script/build-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/script/build-release.sh -------------------------------------------------------------------------------- /script/check_type_yamls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/script/check_type_yamls.py -------------------------------------------------------------------------------- /script/valgrind_callgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/script/valgrind_callgrind.sh -------------------------------------------------------------------------------- /spaghettikart.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/spaghettikart.ico -------------------------------------------------------------------------------- /spaghettikart.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/spaghettikart.manifest -------------------------------------------------------------------------------- /src/actors/banana/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/banana/render.inc.c -------------------------------------------------------------------------------- /src/actors/banana/update.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/banana/update.inc.c -------------------------------------------------------------------------------- /src/actors/box_truck/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/box_truck/render.inc.c -------------------------------------------------------------------------------- /src/actors/car/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/car/render.inc.c -------------------------------------------------------------------------------- /src/actors/cow/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/cow/render.inc.c -------------------------------------------------------------------------------- /src/actors/item_box/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/item_box/render.inc.c -------------------------------------------------------------------------------- /src/actors/item_box/update.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/item_box/update.inc.c -------------------------------------------------------------------------------- /src/actors/mario_sign/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/mario_sign/render.inc.c -------------------------------------------------------------------------------- /src/actors/mario_sign/update.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/mario_sign/update.inc.c -------------------------------------------------------------------------------- /src/actors/palm_tree/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/palm_tree/render.inc.c -------------------------------------------------------------------------------- /src/actors/school_bus/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/school_bus/render.inc.c -------------------------------------------------------------------------------- /src/actors/train/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/train/render.inc.c -------------------------------------------------------------------------------- /src/actors/train/update.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/train/update.inc.c -------------------------------------------------------------------------------- /src/actors/trees/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/trees/render.inc.c -------------------------------------------------------------------------------- /src/actors/wario_sign/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/wario_sign/render.inc.c -------------------------------------------------------------------------------- /src/actors/wario_sign/update.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/wario_sign/update.inc.c -------------------------------------------------------------------------------- /src/actors/yoshi_egg/render.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/yoshi_egg/render.inc.c -------------------------------------------------------------------------------- /src/actors/yoshi_egg/update.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/actors/yoshi_egg/update.inc.c -------------------------------------------------------------------------------- /src/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/animation.c -------------------------------------------------------------------------------- /src/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/animation.h -------------------------------------------------------------------------------- /src/audio/GameAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/GameAudio.h -------------------------------------------------------------------------------- /src/audio/audio_session_presets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/audio_session_presets.c -------------------------------------------------------------------------------- /src/audio/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/data.c -------------------------------------------------------------------------------- /src/audio/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/data.h -------------------------------------------------------------------------------- /src/audio/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/effects.c -------------------------------------------------------------------------------- /src/audio/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/effects.h -------------------------------------------------------------------------------- /src/audio/external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/external.c -------------------------------------------------------------------------------- /src/audio/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/external.h -------------------------------------------------------------------------------- /src/audio/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/heap.c -------------------------------------------------------------------------------- /src/audio/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/heap.h -------------------------------------------------------------------------------- /src/audio/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/internal.h -------------------------------------------------------------------------------- /src/audio/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/load.c -------------------------------------------------------------------------------- /src/audio/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/load.h -------------------------------------------------------------------------------- /src/audio/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/mixer.c -------------------------------------------------------------------------------- /src/audio/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/mixer.h -------------------------------------------------------------------------------- /src/audio/playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/playback.c -------------------------------------------------------------------------------- /src/audio/playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/playback.h -------------------------------------------------------------------------------- /src/audio/port_eu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/port_eu.c -------------------------------------------------------------------------------- /src/audio/port_eu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/port_eu.h -------------------------------------------------------------------------------- /src/audio/seqplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/seqplayer.c -------------------------------------------------------------------------------- /src/audio/seqplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/seqplayer.h -------------------------------------------------------------------------------- /src/audio/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/synthesis.c -------------------------------------------------------------------------------- /src/audio/synthesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/audio/synthesis.h -------------------------------------------------------------------------------- /src/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers.h -------------------------------------------------------------------------------- /src/buffers/audio_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/audio_heap.c -------------------------------------------------------------------------------- /src/buffers/audio_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/audio_heap.h -------------------------------------------------------------------------------- /src/buffers/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/buffers.c -------------------------------------------------------------------------------- /src/buffers/gfx_output_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/gfx_output_buffer.c -------------------------------------------------------------------------------- /src/buffers/gfx_output_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/gfx_output_buffer.h -------------------------------------------------------------------------------- /src/buffers/memory_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/memory_pool.c -------------------------------------------------------------------------------- /src/buffers/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/random.c -------------------------------------------------------------------------------- /src/buffers/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/random.h -------------------------------------------------------------------------------- /src/buffers/trig_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/trig_tables.c -------------------------------------------------------------------------------- /src/buffers/trig_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/trig_tables.h -------------------------------------------------------------------------------- /src/buffers/trig_tables_bss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/buffers/trig_tables_bss.c -------------------------------------------------------------------------------- /src/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/camera.c -------------------------------------------------------------------------------- /src/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/camera.h -------------------------------------------------------------------------------- /src/code_800029B0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_800029B0.c -------------------------------------------------------------------------------- /src/code_800029B0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_800029B0.h -------------------------------------------------------------------------------- /src/code_80005FD0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80005FD0.c -------------------------------------------------------------------------------- /src/code_80005FD0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80005FD0.h -------------------------------------------------------------------------------- /src/code_8003DC40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_8003DC40.c -------------------------------------------------------------------------------- /src/code_8003DC40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_8003DC40.h -------------------------------------------------------------------------------- /src/code_80057C60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80057C60.c -------------------------------------------------------------------------------- /src/code_80057C60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80057C60.h -------------------------------------------------------------------------------- /src/code_80057C60_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80057C60_var.c -------------------------------------------------------------------------------- /src/code_8006E9C0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_8006E9C0.c -------------------------------------------------------------------------------- /src/code_8006E9C0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_8006E9C0.h -------------------------------------------------------------------------------- /src/code_80086E70.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80086E70.c -------------------------------------------------------------------------------- /src/code_80086E70.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80086E70.h -------------------------------------------------------------------------------- /src/code_80091440.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80091440.c -------------------------------------------------------------------------------- /src/code_80091440.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_80091440.h -------------------------------------------------------------------------------- /src/code_800AF9B0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_800AF9B0.c -------------------------------------------------------------------------------- /src/code_800AF9B0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/code_800AF9B0.h -------------------------------------------------------------------------------- /src/course_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/course_metadata.c -------------------------------------------------------------------------------- /src/course_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/course_metadata.h -------------------------------------------------------------------------------- /src/crash_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/crash_screen.c -------------------------------------------------------------------------------- /src/crash_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/crash_screen.h -------------------------------------------------------------------------------- /src/data/kart_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/data/kart_attributes.c -------------------------------------------------------------------------------- /src/data/path_spawn_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/data/path_spawn_metadata.c -------------------------------------------------------------------------------- /src/data/path_spawn_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/data/path_spawn_metadata.h -------------------------------------------------------------------------------- /src/data/some_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/data/some_data.c -------------------------------------------------------------------------------- /src/data/some_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/data/some_data.h -------------------------------------------------------------------------------- /src/data/textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/data/textures.c -------------------------------------------------------------------------------- /src/debug/all_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/debug/all_variables.h -------------------------------------------------------------------------------- /src/debug/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/debug/debug.c -------------------------------------------------------------------------------- /src/debug/debug.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/debug/debug.inc.c -------------------------------------------------------------------------------- /src/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/effects.c -------------------------------------------------------------------------------- /src/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/effects.h -------------------------------------------------------------------------------- /src/ending/camera_junk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/camera_junk.c -------------------------------------------------------------------------------- /src/ending/camera_junk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/camera_junk.h -------------------------------------------------------------------------------- /src/ending/ceremony_and_credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/ceremony_and_credits.c -------------------------------------------------------------------------------- /src/ending/ceremony_and_credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/ceremony_and_credits.h -------------------------------------------------------------------------------- /src/ending/code_80280000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/code_80280000.c -------------------------------------------------------------------------------- /src/ending/code_80280000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/code_80280000.h -------------------------------------------------------------------------------- /src/ending/code_80281780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/code_80281780.c -------------------------------------------------------------------------------- /src/ending/code_80281780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/code_80281780.h -------------------------------------------------------------------------------- /src/ending/code_80281C40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/code_80281C40.c -------------------------------------------------------------------------------- /src/ending/code_80281C40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/code_80281C40.h -------------------------------------------------------------------------------- /src/ending/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/credits.c -------------------------------------------------------------------------------- /src/ending/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/credits.h -------------------------------------------------------------------------------- /src/ending/dl_unk_80284EE0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/ending/dl_unk_80284EE0.c -------------------------------------------------------------------------------- /src/engine/Actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Actor.cpp -------------------------------------------------------------------------------- /src/engine/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Actor.h -------------------------------------------------------------------------------- /src/engine/AllActors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/AllActors.h -------------------------------------------------------------------------------- /src/engine/CoreMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/CoreMath.h -------------------------------------------------------------------------------- /src/engine/Cup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Cup.cpp -------------------------------------------------------------------------------- /src/engine/Cup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Cup.h -------------------------------------------------------------------------------- /src/engine/GameAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/GameAPI.h -------------------------------------------------------------------------------- /src/engine/GarbageCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/GarbageCollector.cpp -------------------------------------------------------------------------------- /src/engine/GarbageCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/GarbageCollector.h -------------------------------------------------------------------------------- /src/engine/HM_Intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/HM_Intro.cpp -------------------------------------------------------------------------------- /src/engine/HM_Intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/HM_Intro.h -------------------------------------------------------------------------------- /src/engine/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Matrix.cpp -------------------------------------------------------------------------------- /src/engine/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Matrix.h -------------------------------------------------------------------------------- /src/engine/PlayerBombKart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/PlayerBombKart.cpp -------------------------------------------------------------------------------- /src/engine/PlayerBombKart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/PlayerBombKart.h -------------------------------------------------------------------------------- /src/engine/RaceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/RaceManager.cpp -------------------------------------------------------------------------------- /src/engine/RaceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/RaceManager.h -------------------------------------------------------------------------------- /src/engine/RegisteredActors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/RegisteredActors.cpp -------------------------------------------------------------------------------- /src/engine/RegisteredActors.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void RegisterGameActors(); 4 | -------------------------------------------------------------------------------- /src/engine/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Registry.cpp -------------------------------------------------------------------------------- /src/engine/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Registry.h -------------------------------------------------------------------------------- /src/engine/Rulesets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Rulesets.cpp -------------------------------------------------------------------------------- /src/engine/Rulesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Rulesets.h -------------------------------------------------------------------------------- /src/engine/Smoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Smoke.cpp -------------------------------------------------------------------------------- /src/engine/Smoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/Smoke.h -------------------------------------------------------------------------------- /src/engine/SpawnParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/SpawnParams.h -------------------------------------------------------------------------------- /src/engine/StaticMeshActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/StaticMeshActor.cpp -------------------------------------------------------------------------------- /src/engine/StaticMeshActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/StaticMeshActor.h -------------------------------------------------------------------------------- /src/engine/TrainCrossing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/TrainCrossing.cpp -------------------------------------------------------------------------------- /src/engine/TrainCrossing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/TrainCrossing.h -------------------------------------------------------------------------------- /src/engine/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/World.cpp -------------------------------------------------------------------------------- /src/engine/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/World.h -------------------------------------------------------------------------------- /src/engine/actors/Banana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Banana.cpp -------------------------------------------------------------------------------- /src/engine/actors/Banana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Banana.h -------------------------------------------------------------------------------- /src/engine/actors/BowserStatue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/BowserStatue.cpp -------------------------------------------------------------------------------- /src/engine/actors/BowserStatue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/BowserStatue.h -------------------------------------------------------------------------------- /src/engine/actors/Cloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Cloud.cpp -------------------------------------------------------------------------------- /src/engine/actors/Cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Cloud.h -------------------------------------------------------------------------------- /src/engine/actors/FallingRock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/FallingRock.cpp -------------------------------------------------------------------------------- /src/engine/actors/FallingRock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/FallingRock.h -------------------------------------------------------------------------------- /src/engine/actors/Finishline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Finishline.cpp -------------------------------------------------------------------------------- /src/engine/actors/Finishline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Finishline.h -------------------------------------------------------------------------------- /src/engine/actors/MarioSign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/MarioSign.cpp -------------------------------------------------------------------------------- /src/engine/actors/MarioSign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/MarioSign.h -------------------------------------------------------------------------------- /src/engine/actors/Ship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Ship.cpp -------------------------------------------------------------------------------- /src/engine/actors/Ship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Ship.h -------------------------------------------------------------------------------- /src/engine/actors/SpaghettiShip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/SpaghettiShip.h -------------------------------------------------------------------------------- /src/engine/actors/Starship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Starship.cpp -------------------------------------------------------------------------------- /src/engine/actors/Starship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Starship.h -------------------------------------------------------------------------------- /src/engine/actors/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Text.cpp -------------------------------------------------------------------------------- /src/engine/actors/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Text.h -------------------------------------------------------------------------------- /src/engine/actors/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Tree.cpp -------------------------------------------------------------------------------- /src/engine/actors/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/Tree.h -------------------------------------------------------------------------------- /src/engine/actors/WarioSign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/WarioSign.cpp -------------------------------------------------------------------------------- /src/engine/actors/WarioSign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/actors/WarioSign.h -------------------------------------------------------------------------------- /src/engine/cameras/FreeCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/cameras/FreeCamera.cpp -------------------------------------------------------------------------------- /src/engine/cameras/FreeCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/cameras/FreeCamera.h -------------------------------------------------------------------------------- /src/engine/cameras/GameCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/cameras/GameCamera.cpp -------------------------------------------------------------------------------- /src/engine/cameras/GameCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/cameras/GameCamera.h -------------------------------------------------------------------------------- /src/engine/cameras/TourCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/cameras/TourCamera.cpp -------------------------------------------------------------------------------- /src/engine/cameras/TourCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/cameras/TourCamera.h -------------------------------------------------------------------------------- /src/engine/editor/Collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Collision.cpp -------------------------------------------------------------------------------- /src/engine/editor/Collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Collision.h -------------------------------------------------------------------------------- /src/engine/editor/Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Editor.cpp -------------------------------------------------------------------------------- /src/engine/editor/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Editor.h -------------------------------------------------------------------------------- /src/engine/editor/EditorMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/EditorMath.cpp -------------------------------------------------------------------------------- /src/engine/editor/EditorMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/EditorMath.h -------------------------------------------------------------------------------- /src/engine/editor/GameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/GameObject.cpp -------------------------------------------------------------------------------- /src/engine/editor/GameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/GameObject.h -------------------------------------------------------------------------------- /src/engine/editor/Gizmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Gizmo.cpp -------------------------------------------------------------------------------- /src/engine/editor/Gizmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Gizmo.h -------------------------------------------------------------------------------- /src/engine/editor/Handles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Handles.cpp -------------------------------------------------------------------------------- /src/engine/editor/Handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Handles.h -------------------------------------------------------------------------------- /src/engine/editor/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Light.cpp -------------------------------------------------------------------------------- /src/engine/editor/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/Light.h -------------------------------------------------------------------------------- /src/engine/editor/ObjectPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/ObjectPicker.cpp -------------------------------------------------------------------------------- /src/engine/editor/ObjectPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/ObjectPicker.h -------------------------------------------------------------------------------- /src/engine/editor/SceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/SceneManager.cpp -------------------------------------------------------------------------------- /src/engine/editor/SceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/editor/SceneManager.h -------------------------------------------------------------------------------- /src/engine/items/Items.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/engine/items/Items.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/engine/mods/ModManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/mods/ModManager.cpp -------------------------------------------------------------------------------- /src/engine/mods/ModManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/mods/ModManager.h -------------------------------------------------------------------------------- /src/engine/mods/ModMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/mods/ModMetadata.cpp -------------------------------------------------------------------------------- /src/engine/mods/ModMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/mods/ModMetadata.h -------------------------------------------------------------------------------- /src/engine/objects/Bat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Bat.cpp -------------------------------------------------------------------------------- /src/engine/objects/Bat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Bat.h -------------------------------------------------------------------------------- /src/engine/objects/BombKart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/BombKart.cpp -------------------------------------------------------------------------------- /src/engine/objects/BombKart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/BombKart.h -------------------------------------------------------------------------------- /src/engine/objects/Boos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Boos.cpp -------------------------------------------------------------------------------- /src/engine/objects/Boos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Boos.h -------------------------------------------------------------------------------- /src/engine/objects/ChainChomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/ChainChomp.cpp -------------------------------------------------------------------------------- /src/engine/objects/ChainChomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/ChainChomp.h -------------------------------------------------------------------------------- /src/engine/objects/CheepCheep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/CheepCheep.cpp -------------------------------------------------------------------------------- /src/engine/objects/CheepCheep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/CheepCheep.h -------------------------------------------------------------------------------- /src/engine/objects/Crab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Crab.cpp -------------------------------------------------------------------------------- /src/engine/objects/Crab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Crab.h -------------------------------------------------------------------------------- /src/engine/objects/Flagpole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Flagpole.cpp -------------------------------------------------------------------------------- /src/engine/objects/Flagpole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Flagpole.h -------------------------------------------------------------------------------- /src/engine/objects/Hedgehog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Hedgehog.cpp -------------------------------------------------------------------------------- /src/engine/objects/Hedgehog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Hedgehog.h -------------------------------------------------------------------------------- /src/engine/objects/HotAirBalloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/HotAirBalloon.h -------------------------------------------------------------------------------- /src/engine/objects/Lakitu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Lakitu.cpp -------------------------------------------------------------------------------- /src/engine/objects/Lakitu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Lakitu.h -------------------------------------------------------------------------------- /src/engine/objects/Mole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Mole.cpp -------------------------------------------------------------------------------- /src/engine/objects/Mole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Mole.h -------------------------------------------------------------------------------- /src/engine/objects/MoleGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/MoleGroup.cpp -------------------------------------------------------------------------------- /src/engine/objects/MoleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/MoleGroup.h -------------------------------------------------------------------------------- /src/engine/objects/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Object.cpp -------------------------------------------------------------------------------- /src/engine/objects/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Object.h -------------------------------------------------------------------------------- /src/engine/objects/Penguin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Penguin.cpp -------------------------------------------------------------------------------- /src/engine/objects/Penguin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Penguin.h -------------------------------------------------------------------------------- /src/engine/objects/Podium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Podium.cpp -------------------------------------------------------------------------------- /src/engine/objects/Podium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Podium.h -------------------------------------------------------------------------------- /src/engine/objects/Seagull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Seagull.cpp -------------------------------------------------------------------------------- /src/engine/objects/Seagull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Seagull.h -------------------------------------------------------------------------------- /src/engine/objects/Snowman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Snowman.cpp -------------------------------------------------------------------------------- /src/engine/objects/Snowman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Snowman.h -------------------------------------------------------------------------------- /src/engine/objects/Thwomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Thwomp.cpp -------------------------------------------------------------------------------- /src/engine/objects/Thwomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Thwomp.h -------------------------------------------------------------------------------- /src/engine/objects/TrashBin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/TrashBin.cpp -------------------------------------------------------------------------------- /src/engine/objects/TrashBin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/TrashBin.h -------------------------------------------------------------------------------- /src/engine/objects/Trophy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Trophy.cpp -------------------------------------------------------------------------------- /src/engine/objects/Trophy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/objects/Trophy.h -------------------------------------------------------------------------------- /src/engine/particles/StarEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/particles/StarEmitter.h -------------------------------------------------------------------------------- /src/engine/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/readme.txt -------------------------------------------------------------------------------- /src/engine/tracks/BigDonut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/BigDonut.cpp -------------------------------------------------------------------------------- /src/engine/tracks/BigDonut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/BigDonut.h -------------------------------------------------------------------------------- /src/engine/tracks/BlockFort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/BlockFort.cpp -------------------------------------------------------------------------------- /src/engine/tracks/BlockFort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/BlockFort.h -------------------------------------------------------------------------------- /src/engine/tracks/BowsersCastle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/BowsersCastle.h -------------------------------------------------------------------------------- /src/engine/tracks/ChocoMountain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/ChocoMountain.h -------------------------------------------------------------------------------- /src/engine/tracks/DKJungle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/DKJungle.cpp -------------------------------------------------------------------------------- /src/engine/tracks/DKJungle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/DKJungle.h -------------------------------------------------------------------------------- /src/engine/tracks/DoubleDeck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/DoubleDeck.cpp -------------------------------------------------------------------------------- /src/engine/tracks/DoubleDeck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/DoubleDeck.h -------------------------------------------------------------------------------- /src/engine/tracks/FrappeSnowland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/FrappeSnowland.h -------------------------------------------------------------------------------- /src/engine/tracks/Harbour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/Harbour.cpp -------------------------------------------------------------------------------- /src/engine/tracks/Harbour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/Harbour.h -------------------------------------------------------------------------------- /src/engine/tracks/KalimariDesert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/KalimariDesert.h -------------------------------------------------------------------------------- /src/engine/tracks/LuigiRaceway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/LuigiRaceway.cpp -------------------------------------------------------------------------------- /src/engine/tracks/LuigiRaceway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/LuigiRaceway.h -------------------------------------------------------------------------------- /src/engine/tracks/MarioRaceway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/MarioRaceway.cpp -------------------------------------------------------------------------------- /src/engine/tracks/MarioRaceway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/MarioRaceway.h -------------------------------------------------------------------------------- /src/engine/tracks/MooMooFarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/MooMooFarm.cpp -------------------------------------------------------------------------------- /src/engine/tracks/MooMooFarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/MooMooFarm.h -------------------------------------------------------------------------------- /src/engine/tracks/PodiumCeremony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/PodiumCeremony.h -------------------------------------------------------------------------------- /src/engine/tracks/RainbowRoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/RainbowRoad.cpp -------------------------------------------------------------------------------- /src/engine/tracks/RainbowRoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/RainbowRoad.h -------------------------------------------------------------------------------- /src/engine/tracks/RoyalRaceway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/RoyalRaceway.cpp -------------------------------------------------------------------------------- /src/engine/tracks/RoyalRaceway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/RoyalRaceway.h -------------------------------------------------------------------------------- /src/engine/tracks/SherbetLand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/SherbetLand.cpp -------------------------------------------------------------------------------- /src/engine/tracks/SherbetLand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/SherbetLand.h -------------------------------------------------------------------------------- /src/engine/tracks/Skyscraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/Skyscraper.cpp -------------------------------------------------------------------------------- /src/engine/tracks/Skyscraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/Skyscraper.h -------------------------------------------------------------------------------- /src/engine/tracks/TestTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/TestTrack.cpp -------------------------------------------------------------------------------- /src/engine/tracks/TestTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/TestTrack.h -------------------------------------------------------------------------------- /src/engine/tracks/Track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/Track.cpp -------------------------------------------------------------------------------- /src/engine/tracks/Track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/Track.h -------------------------------------------------------------------------------- /src/engine/tracks/WarioStadium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/WarioStadium.h -------------------------------------------------------------------------------- /src/engine/tracks/YoshiValley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/tracks/YoshiValley.h -------------------------------------------------------------------------------- /src/engine/vehicles/Boat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Boat.cpp -------------------------------------------------------------------------------- /src/engine/vehicles/Boat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Boat.h -------------------------------------------------------------------------------- /src/engine/vehicles/Bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Bus.cpp -------------------------------------------------------------------------------- /src/engine/vehicles/Bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Bus.h -------------------------------------------------------------------------------- /src/engine/vehicles/Car.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Car.cpp -------------------------------------------------------------------------------- /src/engine/vehicles/Car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Car.h -------------------------------------------------------------------------------- /src/engine/vehicles/Train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Train.cpp -------------------------------------------------------------------------------- /src/engine/vehicles/Train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Train.h -------------------------------------------------------------------------------- /src/engine/vehicles/Truck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Truck.cpp -------------------------------------------------------------------------------- /src/engine/vehicles/Truck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Truck.h -------------------------------------------------------------------------------- /src/engine/vehicles/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Utils.cpp -------------------------------------------------------------------------------- /src/engine/vehicles/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/vehicles/Utils.h -------------------------------------------------------------------------------- /src/engine/wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/wasm.cpp -------------------------------------------------------------------------------- /src/engine/wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/engine/wasm.h -------------------------------------------------------------------------------- /src/enhancements/moon_jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/enhancements/moon_jump.c -------------------------------------------------------------------------------- /src/enhancements/moon_jump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/enhancements/moon_jump.h -------------------------------------------------------------------------------- /src/gbiMacro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/gbiMacro.c -------------------------------------------------------------------------------- /src/harbour_masters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/harbour_masters.c -------------------------------------------------------------------------------- /src/harbour_masters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/harbour_masters.h -------------------------------------------------------------------------------- /src/kart_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/kart_dma.c -------------------------------------------------------------------------------- /src/kart_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/kart_dma.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/main.h -------------------------------------------------------------------------------- /src/math_util_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/math_util_2.c -------------------------------------------------------------------------------- /src/math_util_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/math_util_2.h -------------------------------------------------------------------------------- /src/menu_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/menu_items.c -------------------------------------------------------------------------------- /src/menu_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/menu_items.h -------------------------------------------------------------------------------- /src/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/menus.c -------------------------------------------------------------------------------- /src/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/menus.h -------------------------------------------------------------------------------- /src/os/NaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/NaN.c -------------------------------------------------------------------------------- /src/os/_Ldtob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/_Ldtob.c -------------------------------------------------------------------------------- /src/os/_Litob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/_Litob.c -------------------------------------------------------------------------------- /src/os/_Printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/_Printf.c -------------------------------------------------------------------------------- /src/os/__osAiDeviceBusy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osAiDeviceBusy.c -------------------------------------------------------------------------------- /src/os/__osAtomicDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osAtomicDec.c -------------------------------------------------------------------------------- /src/os/__osDequeueThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osDequeueThread.c -------------------------------------------------------------------------------- /src/os/__osDevMgrMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osDevMgrMain.c -------------------------------------------------------------------------------- /src/os/__osEPiRawReadIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osEPiRawReadIo.c -------------------------------------------------------------------------------- /src/os/__osEPiRawWriteIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osEPiRawWriteIo.c -------------------------------------------------------------------------------- /src/os/__osLeoInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osLeoInterrupt.c -------------------------------------------------------------------------------- /src/os/__osPiCreateAccessQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osPiCreateAccessQueue.c -------------------------------------------------------------------------------- /src/os/__osResetGlobalIntMask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osResetGlobalIntMask.c -------------------------------------------------------------------------------- /src/os/__osSetGlobalIntMask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSetGlobalIntMask.c -------------------------------------------------------------------------------- /src/os/__osSetHWIntrRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSetHWIntrRoutine.c -------------------------------------------------------------------------------- /src/os/__osSiCreateAccessQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSiCreateAccessQueue.c -------------------------------------------------------------------------------- /src/os/__osSiDeviceBusy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSiDeviceBusy.c -------------------------------------------------------------------------------- /src/os/__osSiRawReadIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSiRawReadIo.c -------------------------------------------------------------------------------- /src/os/__osSiRawStartDma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSiRawStartDma.c -------------------------------------------------------------------------------- /src/os/__osSiRawWriteIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSiRawWriteIo.c -------------------------------------------------------------------------------- /src/os/__osSpDeviceBusy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSpDeviceBusy.c -------------------------------------------------------------------------------- /src/os/__osSpGetStatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSpGetStatus.c -------------------------------------------------------------------------------- /src/os/__osSpRawStartDma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSpRawStartDma.c -------------------------------------------------------------------------------- /src/os/__osSpSetPc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSpSetPc.c -------------------------------------------------------------------------------- /src/os/__osSpSetStatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSpSetStatus.c -------------------------------------------------------------------------------- /src/os/__osSyncPutChars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osSyncPutChars.c -------------------------------------------------------------------------------- /src/os/__osViGetCurrentContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osViGetCurrentContext.c -------------------------------------------------------------------------------- /src/os/__osViInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osViInit.c -------------------------------------------------------------------------------- /src/os/__osViSwapContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/__osViSwapContext.c -------------------------------------------------------------------------------- /src/os/alBnkfNew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/alBnkfNew.c -------------------------------------------------------------------------------- /src/os/bstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/bstring.h -------------------------------------------------------------------------------- /src/os/contpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/contpfs.c -------------------------------------------------------------------------------- /src/os/contramread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/contramread.c -------------------------------------------------------------------------------- /src/os/contramwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/contramwrite.c -------------------------------------------------------------------------------- /src/os/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/controller.h -------------------------------------------------------------------------------- /src/os/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/crc.c -------------------------------------------------------------------------------- /src/os/epidma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/epidma.c -------------------------------------------------------------------------------- /src/os/guLookAtF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guLookAtF.c -------------------------------------------------------------------------------- /src/os/guLookAtRef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guLookAtRef.c -------------------------------------------------------------------------------- /src/os/guMtxCatF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guMtxCatF.c -------------------------------------------------------------------------------- /src/os/guMtxCatL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guMtxCatL.c -------------------------------------------------------------------------------- /src/os/guMtxF2L.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guMtxF2L.c -------------------------------------------------------------------------------- /src/os/guNormalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guNormalize.c -------------------------------------------------------------------------------- /src/os/guOrthoF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guOrthoF.c -------------------------------------------------------------------------------- /src/os/guPerspectiveF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guPerspectiveF.c -------------------------------------------------------------------------------- /src/os/guRotateF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guRotateF.c -------------------------------------------------------------------------------- /src/os/guScaleF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guScaleF.c -------------------------------------------------------------------------------- /src/os/guTranslateF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/guTranslateF.c -------------------------------------------------------------------------------- /src/os/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/hardware.h -------------------------------------------------------------------------------- /src/os/is_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/is_debug.c -------------------------------------------------------------------------------- /src/os/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/ldiv.c -------------------------------------------------------------------------------- /src/os/libaudio_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/libaudio_internal.h -------------------------------------------------------------------------------- /src/os/libultra_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/libultra_internal.h -------------------------------------------------------------------------------- /src/os/math/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/math/cosf.c -------------------------------------------------------------------------------- /src/os/math/llconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/math/llconv.c -------------------------------------------------------------------------------- /src/os/math/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/math/sinf.c -------------------------------------------------------------------------------- /src/os/new_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/new_func.h -------------------------------------------------------------------------------- /src/os/osAi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osAi.h -------------------------------------------------------------------------------- /src/os/osAiGetLength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osAiGetLength.c -------------------------------------------------------------------------------- /src/os/osAiSetFrequency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osAiSetFrequency.c -------------------------------------------------------------------------------- /src/os/osAiSetNextBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osAiSetNextBuffer.c -------------------------------------------------------------------------------- /src/os/osCartRomInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osCartRomInit.c -------------------------------------------------------------------------------- /src/os/osContInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osContInit.c -------------------------------------------------------------------------------- /src/os/osContStartReadData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osContStartReadData.c -------------------------------------------------------------------------------- /src/os/osCreateMesgQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osCreateMesgQueue.c -------------------------------------------------------------------------------- /src/os/osCreatePiManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osCreatePiManager.c -------------------------------------------------------------------------------- /src/os/osCreateThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osCreateThread.c -------------------------------------------------------------------------------- /src/os/osCreateViManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osCreateViManager.c -------------------------------------------------------------------------------- /src/os/osDestroyThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osDestroyThread.c -------------------------------------------------------------------------------- /src/os/osEPiRawStartDma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osEPiRawStartDma.c -------------------------------------------------------------------------------- /src/os/osEepromLongRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osEepromLongRead.c -------------------------------------------------------------------------------- /src/os/osEepromLongWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osEepromLongWrite.c -------------------------------------------------------------------------------- /src/os/osEepromProbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osEepromProbe.c -------------------------------------------------------------------------------- /src/os/osEepromRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osEepromRead.c -------------------------------------------------------------------------------- /src/os/osEepromWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osEepromWrite.c -------------------------------------------------------------------------------- /src/os/osGetThreadPri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osGetThreadPri.c -------------------------------------------------------------------------------- /src/os/osGetTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osGetTime.c -------------------------------------------------------------------------------- /src/os/osInitialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osInitialize.c -------------------------------------------------------------------------------- /src/os/osJamMesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osJamMesg.c -------------------------------------------------------------------------------- /src/os/osLeoDiskInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osLeoDiskInit.c -------------------------------------------------------------------------------- /src/os/osPfsAllocateFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsAllocateFile.c -------------------------------------------------------------------------------- /src/os/osPfsChecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsChecker.c -------------------------------------------------------------------------------- /src/os/osPfsDeleteFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsDeleteFile.c -------------------------------------------------------------------------------- /src/os/osPfsFileState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsFileState.c -------------------------------------------------------------------------------- /src/os/osPfsFreeBlocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsFreeBlocks.c -------------------------------------------------------------------------------- /src/os/osPfsInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsInit.c -------------------------------------------------------------------------------- /src/os/osPfsIsPlug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsIsPlug.c -------------------------------------------------------------------------------- /src/os/osPfsNumFiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsNumFiles.c -------------------------------------------------------------------------------- /src/os/osPfsReadWriteFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsReadWriteFile.c -------------------------------------------------------------------------------- /src/os/osPfsSearchFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPfsSearchFile.c -------------------------------------------------------------------------------- /src/os/osPiGetCmdQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPiGetCmdQueue.c -------------------------------------------------------------------------------- /src/os/osPiRawReadIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPiRawReadIo.c -------------------------------------------------------------------------------- /src/os/osPiRawStartDma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPiRawStartDma.c -------------------------------------------------------------------------------- /src/os/osPiStartDma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osPiStartDma.c -------------------------------------------------------------------------------- /src/os/osRecvMesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osRecvMesg.c -------------------------------------------------------------------------------- /src/os/osSendMesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSendMesg.c -------------------------------------------------------------------------------- /src/os/osSetEventMesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSetEventMesg.c -------------------------------------------------------------------------------- /src/os/osSetThreadPri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSetThreadPri.c -------------------------------------------------------------------------------- /src/os/osSetTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSetTime.c -------------------------------------------------------------------------------- /src/os/osSetTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSetTimer.c -------------------------------------------------------------------------------- /src/os/osSpTaskLoadGo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSpTaskLoadGo.c -------------------------------------------------------------------------------- /src/os/osSpTaskYield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSpTaskYield.c -------------------------------------------------------------------------------- /src/os/osSpTaskYielded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSpTaskYielded.c -------------------------------------------------------------------------------- /src/os/osStartThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osStartThread.c -------------------------------------------------------------------------------- /src/os/osSyncPrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osSyncPrintf.c -------------------------------------------------------------------------------- /src/os/osTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osTimer.c -------------------------------------------------------------------------------- /src/os/osViBlack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osViBlack.c -------------------------------------------------------------------------------- /src/os/osViData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osViData.c -------------------------------------------------------------------------------- /src/os/osViSetEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osViSetEvent.c -------------------------------------------------------------------------------- /src/os/osViSetMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osViSetMode.c -------------------------------------------------------------------------------- /src/os/osViSetSpecialFeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osViSetSpecialFeatures.c -------------------------------------------------------------------------------- /src/os/osViSwapBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osViSwapBuffer.c -------------------------------------------------------------------------------- /src/os/osViTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osViTable.c -------------------------------------------------------------------------------- /src/os/osVirtualToPhysical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osVirtualToPhysical.c -------------------------------------------------------------------------------- /src/os/osYieldThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osYieldThread.c -------------------------------------------------------------------------------- /src/os/osint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/osint.h -------------------------------------------------------------------------------- /src/os/piint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/piint.h -------------------------------------------------------------------------------- /src/os/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/printf.h -------------------------------------------------------------------------------- /src/os/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/sprintf.c -------------------------------------------------------------------------------- /src/os/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/os/string.c -------------------------------------------------------------------------------- /src/player_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/player_controller.c -------------------------------------------------------------------------------- /src/player_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/player_controller.h -------------------------------------------------------------------------------- /src/port/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/Engine.cpp -------------------------------------------------------------------------------- /src/port/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/Engine.h -------------------------------------------------------------------------------- /src/port/GBIMiddleware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/GBIMiddleware.cpp -------------------------------------------------------------------------------- /src/port/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/Game.cpp -------------------------------------------------------------------------------- /src/port/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/Game.h -------------------------------------------------------------------------------- /src/port/GameExtractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/GameExtractor.cpp -------------------------------------------------------------------------------- /src/port/GameExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/GameExtractor.h -------------------------------------------------------------------------------- /src/port/ShipUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ShipUtils.cpp -------------------------------------------------------------------------------- /src/port/ShipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ShipUtils.h -------------------------------------------------------------------------------- /src/port/SpaghettiGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/SpaghettiGui.cpp -------------------------------------------------------------------------------- /src/port/SpaghettiGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/SpaghettiGui.h -------------------------------------------------------------------------------- /src/port/Variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/Variables.cpp -------------------------------------------------------------------------------- /src/port/audio/HMAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/audio/HMAS.cpp -------------------------------------------------------------------------------- /src/port/audio/HMAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/audio/HMAS.h -------------------------------------------------------------------------------- /src/port/interpolation/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/interpolation/matrix.c -------------------------------------------------------------------------------- /src/port/interpolation/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/interpolation/matrix.h -------------------------------------------------------------------------------- /src/port/pak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/pak.cpp -------------------------------------------------------------------------------- /src/port/resource/type/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/Array.cpp -------------------------------------------------------------------------------- /src/port/resource/type/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/Array.h -------------------------------------------------------------------------------- /src/port/resource/type/CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/CPU.cpp -------------------------------------------------------------------------------- /src/port/resource/type/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/CPU.h -------------------------------------------------------------------------------- /src/port/resource/type/ColPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/ColPoly.h -------------------------------------------------------------------------------- /src/port/resource/type/Hitbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/Hitbox.h -------------------------------------------------------------------------------- /src/port/resource/type/Limb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/Limb.cpp -------------------------------------------------------------------------------- /src/port/resource/type/Limb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/Limb.h -------------------------------------------------------------------------------- /src/port/resource/type/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/Message.h -------------------------------------------------------------------------------- /src/port/resource/type/Minimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/Minimap.h -------------------------------------------------------------------------------- /src/port/resource/type/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/resource/type/Script.h -------------------------------------------------------------------------------- /src/port/ui/ContentBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/ContentBrowser.cpp -------------------------------------------------------------------------------- /src/port/ui/ContentBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/ContentBrowser.h -------------------------------------------------------------------------------- /src/port/ui/DefaultProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/DefaultProperties.h -------------------------------------------------------------------------------- /src/port/ui/FreecamWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/FreecamWindow.cpp -------------------------------------------------------------------------------- /src/port/ui/FreecamWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/FreecamWindow.h -------------------------------------------------------------------------------- /src/port/ui/ImguiUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/ImguiUI.cpp -------------------------------------------------------------------------------- /src/port/ui/ImguiUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/ImguiUI.h -------------------------------------------------------------------------------- /src/port/ui/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/Menu.cpp -------------------------------------------------------------------------------- /src/port/ui/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/Menu.h -------------------------------------------------------------------------------- /src/port/ui/MenuTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/MenuTypes.h -------------------------------------------------------------------------------- /src/port/ui/PortMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/PortMenu.cpp -------------------------------------------------------------------------------- /src/port/ui/PortMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/PortMenu.h -------------------------------------------------------------------------------- /src/port/ui/Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/Properties.cpp -------------------------------------------------------------------------------- /src/port/ui/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/Properties.h -------------------------------------------------------------------------------- /src/port/ui/ResolutionEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/ResolutionEditor.cpp -------------------------------------------------------------------------------- /src/port/ui/ResolutionEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/ResolutionEditor.h -------------------------------------------------------------------------------- /src/port/ui/SceneExplorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/SceneExplorer.cpp -------------------------------------------------------------------------------- /src/port/ui/SceneExplorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/SceneExplorer.h -------------------------------------------------------------------------------- /src/port/ui/Tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/Tools.cpp -------------------------------------------------------------------------------- /src/port/ui/Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/Tools.h -------------------------------------------------------------------------------- /src/port/ui/TrackProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/TrackProperties.cpp -------------------------------------------------------------------------------- /src/port/ui/TrackProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/TrackProperties.h -------------------------------------------------------------------------------- /src/port/ui/UIWidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/UIWidgets.cpp -------------------------------------------------------------------------------- /src/port/ui/UIWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/port/ui/UIWidgets.h -------------------------------------------------------------------------------- /src/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/profiler.c -------------------------------------------------------------------------------- /src/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/profiler.h -------------------------------------------------------------------------------- /src/racing/actors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/actors.c -------------------------------------------------------------------------------- /src/racing/actors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/actors.h -------------------------------------------------------------------------------- /src/racing/actors_extended.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/actors_extended.c -------------------------------------------------------------------------------- /src/racing/actors_extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/actors_extended.h -------------------------------------------------------------------------------- /src/racing/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/collision.c -------------------------------------------------------------------------------- /src/racing/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/collision.h -------------------------------------------------------------------------------- /src/racing/framebuffer_effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/framebuffer_effects.c -------------------------------------------------------------------------------- /src/racing/framebuffer_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/framebuffer_effects.h -------------------------------------------------------------------------------- /src/racing/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/math_util.c -------------------------------------------------------------------------------- /src/racing/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/math_util.h -------------------------------------------------------------------------------- /src/racing/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/memory.c -------------------------------------------------------------------------------- /src/racing/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/memory.h -------------------------------------------------------------------------------- /src/racing/race_logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/race_logic.c -------------------------------------------------------------------------------- /src/racing/race_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/race_logic.h -------------------------------------------------------------------------------- /src/racing/render_courses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/render_courses.c -------------------------------------------------------------------------------- /src/racing/render_courses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/racing/render_courses.h -------------------------------------------------------------------------------- /src/render_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/render_objects.c -------------------------------------------------------------------------------- /src/render_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/render_objects.h -------------------------------------------------------------------------------- /src/render_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/render_player.c -------------------------------------------------------------------------------- /src/render_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/render_player.h -------------------------------------------------------------------------------- /src/replays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/replays.c -------------------------------------------------------------------------------- /src/replays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/replays.h -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/save.c -------------------------------------------------------------------------------- /src/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/save.h -------------------------------------------------------------------------------- /src/spawn_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/spawn_players.c -------------------------------------------------------------------------------- /src/spawn_players.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/spawn_players.h -------------------------------------------------------------------------------- /src/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/stubs.c -------------------------------------------------------------------------------- /src/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/textures.h -------------------------------------------------------------------------------- /src/update_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/update_objects.c -------------------------------------------------------------------------------- /src/update_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/src/update_objects.h -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/apply_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/apply_patch.sh -------------------------------------------------------------------------------- /tools/asm_processor/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/asm_processor/build.py -------------------------------------------------------------------------------- /tools/asm_processor/prelude.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/asm_processor/prelude.inc -------------------------------------------------------------------------------- /tools/bin2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/bin2c.py -------------------------------------------------------------------------------- /tools/blender/blender_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/blender/blender_export.py -------------------------------------------------------------------------------- /tools/blender/clean_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/blender/clean_scene.py -------------------------------------------------------------------------------- /tools/blender/extract_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/blender/extract_models.py -------------------------------------------------------------------------------- /tools/blender/fast64_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/blender/fast64_run.py -------------------------------------------------------------------------------- /tools/create_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/create_patch.sh -------------------------------------------------------------------------------- /tools/displaylist_packer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/displaylist_packer.c -------------------------------------------------------------------------------- /tools/doxygen_symbol_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/doxygen_symbol_gen.py -------------------------------------------------------------------------------- /tools/extract_data_for_mio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/extract_data_for_mio.c -------------------------------------------------------------------------------- /tools/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/format.py -------------------------------------------------------------------------------- /tools/gfxdis_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/gfxdis_multi.py -------------------------------------------------------------------------------- /tools/ido-recomp/linux/acpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/acpp -------------------------------------------------------------------------------- /tools/ido-recomp/linux/as0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/as0 -------------------------------------------------------------------------------- /tools/ido-recomp/linux/as1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/as1 -------------------------------------------------------------------------------- /tools/ido-recomp/linux/c++filt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/c++filt -------------------------------------------------------------------------------- /tools/ido-recomp/linux/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/cc -------------------------------------------------------------------------------- /tools/ido-recomp/linux/cfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/cfe -------------------------------------------------------------------------------- /tools/ido-recomp/linux/copt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/copt -------------------------------------------------------------------------------- /tools/ido-recomp/linux/crt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/crt1.o -------------------------------------------------------------------------------- /tools/ido-recomp/linux/crtn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/crtn.o -------------------------------------------------------------------------------- /tools/ido-recomp/linux/ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/ld -------------------------------------------------------------------------------- /tools/ido-recomp/linux/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/libc.so -------------------------------------------------------------------------------- /tools/ido-recomp/linux/libc.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/libc.so.1 -------------------------------------------------------------------------------- /tools/ido-recomp/linux/libexc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/libexc.so -------------------------------------------------------------------------------- /tools/ido-recomp/linux/libgen.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/libgen.so -------------------------------------------------------------------------------- /tools/ido-recomp/linux/libm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/libm.so -------------------------------------------------------------------------------- /tools/ido-recomp/linux/strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/strip -------------------------------------------------------------------------------- /tools/ido-recomp/linux/ugen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/ugen -------------------------------------------------------------------------------- /tools/ido-recomp/linux/ujoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/ujoin -------------------------------------------------------------------------------- /tools/ido-recomp/linux/uld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/uld -------------------------------------------------------------------------------- /tools/ido-recomp/linux/umerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/umerge -------------------------------------------------------------------------------- /tools/ido-recomp/linux/uopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/uopt -------------------------------------------------------------------------------- /tools/ido-recomp/linux/upas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/upas -------------------------------------------------------------------------------- /tools/ido-recomp/linux/usplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/linux/usplit -------------------------------------------------------------------------------- /tools/ido-recomp/macos/acpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/acpp -------------------------------------------------------------------------------- /tools/ido-recomp/macos/as0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/as0 -------------------------------------------------------------------------------- /tools/ido-recomp/macos/as1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/as1 -------------------------------------------------------------------------------- /tools/ido-recomp/macos/c++filt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/c++filt -------------------------------------------------------------------------------- /tools/ido-recomp/macos/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/cc -------------------------------------------------------------------------------- /tools/ido-recomp/macos/cfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/cfe -------------------------------------------------------------------------------- /tools/ido-recomp/macos/copt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/copt -------------------------------------------------------------------------------- /tools/ido-recomp/macos/crt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/crt1.o -------------------------------------------------------------------------------- /tools/ido-recomp/macos/crtn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/crtn.o -------------------------------------------------------------------------------- /tools/ido-recomp/macos/ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/ld -------------------------------------------------------------------------------- /tools/ido-recomp/macos/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/libc.so -------------------------------------------------------------------------------- /tools/ido-recomp/macos/libc.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/libc.so.1 -------------------------------------------------------------------------------- /tools/ido-recomp/macos/libexc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/libexc.so -------------------------------------------------------------------------------- /tools/ido-recomp/macos/libgen.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/libgen.so -------------------------------------------------------------------------------- /tools/ido-recomp/macos/libm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/libm.so -------------------------------------------------------------------------------- /tools/ido-recomp/macos/strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/strip -------------------------------------------------------------------------------- /tools/ido-recomp/macos/ugen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/ugen -------------------------------------------------------------------------------- /tools/ido-recomp/macos/ujoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/ujoin -------------------------------------------------------------------------------- /tools/ido-recomp/macos/uld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/uld -------------------------------------------------------------------------------- /tools/ido-recomp/macos/umerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/umerge -------------------------------------------------------------------------------- /tools/ido-recomp/macos/uopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/uopt -------------------------------------------------------------------------------- /tools/ido-recomp/macos/upas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/upas -------------------------------------------------------------------------------- /tools/ido-recomp/macos/usplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/macos/usplit -------------------------------------------------------------------------------- /tools/ido-recomp/versions.txt: -------------------------------------------------------------------------------- 1 | v1.1 -------------------------------------------------------------------------------- /tools/ido-recomp/windows/as0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/as0.exe -------------------------------------------------------------------------------- /tools/ido-recomp/windows/as1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/as1.exe -------------------------------------------------------------------------------- /tools/ido-recomp/windows/cc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/cc.exe -------------------------------------------------------------------------------- /tools/ido-recomp/windows/cfe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/cfe.exe -------------------------------------------------------------------------------- /tools/ido-recomp/windows/crt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/crt1.o -------------------------------------------------------------------------------- /tools/ido-recomp/windows/crtn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/crtn.o -------------------------------------------------------------------------------- /tools/ido-recomp/windows/ld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/ld.exe -------------------------------------------------------------------------------- /tools/ido-recomp/windows/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/libc.so -------------------------------------------------------------------------------- /tools/ido-recomp/windows/libm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/libm.so -------------------------------------------------------------------------------- /tools/ido-recomp/windows/uld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/ido-recomp/windows/uld.exe -------------------------------------------------------------------------------- /tools/libmio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/libmio0.c -------------------------------------------------------------------------------- /tools/libmio0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/libmio0.h -------------------------------------------------------------------------------- /tools/libtkmk00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/libtkmk00.c -------------------------------------------------------------------------------- /tools/libtkmk00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/libtkmk00.h -------------------------------------------------------------------------------- /tools/linkonly_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/linkonly_generator.py -------------------------------------------------------------------------------- /tools/m2ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/m2ctx -------------------------------------------------------------------------------- /tools/mkgccgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/mkgccgen.py -------------------------------------------------------------------------------- /tools/n64cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/n64cksum.c -------------------------------------------------------------------------------- /tools/n64cksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/n64cksum.h -------------------------------------------------------------------------------- /tools/n64graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/n64graphics.c -------------------------------------------------------------------------------- /tools/n64graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/n64graphics.h -------------------------------------------------------------------------------- /tools/new_extract_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/new_extract_assets.py -------------------------------------------------------------------------------- /tools/revert_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/revert_patch.sh -------------------------------------------------------------------------------- /tools/set_o32abi_bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/set_o32abi_bit.py -------------------------------------------------------------------------------- /tools/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/stb/stb_image.h -------------------------------------------------------------------------------- /tools/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/stb/stb_image_write.h -------------------------------------------------------------------------------- /tools/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/utils.c -------------------------------------------------------------------------------- /tools/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/utils.h -------------------------------------------------------------------------------- /tools/windows_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/tools/windows_build.py -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/vcpkg.json -------------------------------------------------------------------------------- /yamls/us/models/common_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/models/common_data.yml -------------------------------------------------------------------------------- /yamls/us/models/startup_logo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/models/startup_logo.yml -------------------------------------------------------------------------------- /yamls/us/other/ceremony_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/other/ceremony_data.yml -------------------------------------------------------------------------------- /yamls/us/other/common_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/other/common_data.yml -------------------------------------------------------------------------------- /yamls/us/other/startup_logo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/other/startup_logo.yml -------------------------------------------------------------------------------- /yamls/us/sound/banks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/sound/banks.yml -------------------------------------------------------------------------------- /yamls/us/sound/root.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/sound/root.yml -------------------------------------------------------------------------------- /yamls/us/sound/samples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/sound/samples.yml -------------------------------------------------------------------------------- /yamls/us/sound/sequences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/sound/sequences.yml -------------------------------------------------------------------------------- /yamls/us/textures/boo_frames.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/textures/boo_frames.yml -------------------------------------------------------------------------------- /yamls/us/textures/some_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarbourMasters/SpaghettiKart/HEAD/yamls/us/textures/some_data.yml --------------------------------------------------------------------------------