├── .gitattributes ├── .github └── Logo.png ├── .gitignore ├── .gitmodules ├── Docs ├── Code Style Conventions.docx └── Design Document.pdf ├── Engine └── N64 │ ├── MemoryMap_HD.json │ ├── MemoryMap_HD.png │ ├── MemoryMap_SD.json │ ├── MemoryMap_SD.png │ ├── audio.c │ ├── audio.h │ ├── controller.c │ ├── controller.h │ ├── datatype │ ├── engine │ │ ├── bool.h │ │ ├── color.c │ │ ├── color.h │ │ ├── transform2d.c │ │ ├── transform2d.h │ │ └── transform3d.h │ └── math │ │ ├── octagon.h │ │ ├── quaternion.c │ │ ├── quaternion.h │ │ ├── vector2d.c │ │ ├── vector2d.h │ │ ├── vector3d.c │ │ └── vector3d.h │ ├── debug.c │ ├── debug.h │ ├── engine.c │ ├── engine.h │ ├── game │ └── levels │ │ ├── level_boot.c │ │ ├── levels.c │ │ └── levels.h │ ├── graphics.c │ ├── graphics.h │ ├── helper.c │ ├── helper.h │ ├── libs │ └── memory │ │ ├── p64malloc.c │ │ └── p64malloc.h │ ├── main.c │ ├── osconfig.h │ ├── platform.nbp │ ├── rcp.c │ ├── rcp.h │ ├── scheduler.c │ ├── scheduler.h │ ├── spec │ ├── types.h │ ├── usb.c │ └── usb.h ├── LICENSE ├── README.md ├── Tools ├── Builder │ ├── Builder.fbp │ ├── Builder.rc │ ├── Builder.sln │ ├── Builder.vcxproj │ ├── Builder.vcxproj.filters │ ├── Builder.vcxproj.user │ ├── README.md │ ├── app.cpp │ ├── app.h │ ├── compunit.cpp │ ├── compunit.h │ ├── helper.cpp │ ├── helper.h │ ├── main.cpp │ ├── main.h │ ├── preferences.cpp │ ├── preferences.h │ ├── resource.h │ ├── resources │ │ ├── c.png │ │ ├── config.png │ │ ├── generate.bat │ │ ├── h.png │ │ ├── icon_c.h │ │ ├── icon_config.h │ │ ├── icon_h.h │ │ ├── icon_prog.h │ │ └── prog.ico │ ├── traverser.cpp │ └── traverser.h └── SDK │ ├── Include │ └── json.hpp │ ├── Makefile │ ├── Platform64SDK.fbp │ ├── Platform64SDK.rc │ ├── Platform64SDK.sln │ ├── Platform64SDK.vcxproj │ ├── Platform64SDK.vcxproj.filters │ ├── Platform64SDK.vcxproj.user │ ├── Resources │ ├── Cursors │ │ ├── Cursor_Pipette.h │ │ └── Cursor_Pipette.png │ ├── Default │ │ ├── MISSING.h │ │ └── MISSING.png │ ├── Icons │ │ ├── Icon_Back.h │ │ ├── Icon_Back.png │ │ ├── Icon_Folder.h │ │ ├── Icon_Folder.png │ │ ├── Icon_Folder_Large.h │ │ ├── Icon_Folder_Large.png │ │ ├── Icon_Main.h │ │ ├── Icon_Main.ico │ │ ├── Icon_Main.png │ │ ├── Icon_Material.h │ │ ├── Icon_Material.png │ │ ├── Icon_Material_Large.png │ │ ├── Icon_NewAsset.h │ │ ├── Icon_NewAsset.png │ │ ├── Icon_NewFolder.h │ │ ├── Icon_NewFolder.png │ │ ├── Icon_Palette.h │ │ ├── Icon_Palette.png │ │ ├── Icon_Pipette.h │ │ ├── Icon_Pipette.png │ │ ├── Icon_Save.h │ │ ├── Icon_Save.png │ │ ├── Icon_Search.h │ │ ├── Icon_Search.png │ │ ├── Icon_Sound.h │ │ ├── Icon_Sound.png │ │ ├── Icon_Texture.h │ │ ├── Icon_Texture.png │ │ ├── Icon_ToggleAlpha.h │ │ ├── Icon_ToggleAlpha.png │ │ ├── Icon_ToggleFilter.h │ │ ├── Icon_ToggleFilter.png │ │ ├── Icon_ToggleMask.h │ │ ├── Icon_ToggleMask.png │ │ ├── Icon_ToggleStatistics.h │ │ ├── Icon_ToggleStatistics.png │ │ ├── Icon_ToggleTiling.h │ │ ├── Icon_ToggleTiling.png │ │ ├── Icon_USBUpload.h │ │ ├── Icon_USBUpload.png │ │ ├── Icon_ViewGrid.h │ │ ├── Icon_ViewGrid.png │ │ ├── Icon_ViewList.h │ │ ├── Icon_ViewList.png │ │ ├── Icon_Waveform.h │ │ ├── Icon_Waveform.png │ │ ├── Icon_Waveform_Large.h │ │ ├── Icon_Waveform_Large.png │ │ ├── Icon_ZoomFit.h │ │ ├── Icon_ZoomFit.png │ │ ├── Icon_ZoomIn.h │ │ ├── Icon_ZoomIn.png │ │ ├── Icon_ZoomOut.h │ │ └── Icon_ZoomOut.png │ └── generate.bat │ ├── Tools │ ├── Image │ │ ├── asset_image.cpp │ │ ├── asset_image.h │ │ ├── frame_image.cpp │ │ ├── frame_image.h │ │ ├── panel_imgview.cpp │ │ └── panel_imgview.h │ ├── Sound │ │ ├── asset_sound.cpp │ │ ├── asset_sound.h │ │ ├── frame_sound.cpp │ │ └── frame_sound.h │ ├── asset_thumbnail.cpp │ ├── asset_thumbnail.h │ ├── panel_search.cpp │ └── panel_search.h │ ├── app.cpp │ ├── app.h │ ├── json.cpp │ ├── json.h │ ├── main.cpp │ ├── main.h │ ├── resource.h │ ├── serializer.cpp │ └── serializer.h └── azure-pipelines.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/.github/Logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/.gitmodules -------------------------------------------------------------------------------- /Docs/Code Style Conventions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Docs/Code Style Conventions.docx -------------------------------------------------------------------------------- /Docs/Design Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Docs/Design Document.pdf -------------------------------------------------------------------------------- /Engine/N64/MemoryMap_HD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/MemoryMap_HD.json -------------------------------------------------------------------------------- /Engine/N64/MemoryMap_HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/MemoryMap_HD.png -------------------------------------------------------------------------------- /Engine/N64/MemoryMap_SD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/MemoryMap_SD.json -------------------------------------------------------------------------------- /Engine/N64/MemoryMap_SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/MemoryMap_SD.png -------------------------------------------------------------------------------- /Engine/N64/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/audio.c -------------------------------------------------------------------------------- /Engine/N64/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/audio.h -------------------------------------------------------------------------------- /Engine/N64/controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/controller.c -------------------------------------------------------------------------------- /Engine/N64/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/controller.h -------------------------------------------------------------------------------- /Engine/N64/datatype/engine/bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/engine/bool.h -------------------------------------------------------------------------------- /Engine/N64/datatype/engine/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/engine/color.c -------------------------------------------------------------------------------- /Engine/N64/datatype/engine/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/engine/color.h -------------------------------------------------------------------------------- /Engine/N64/datatype/engine/transform2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/engine/transform2d.c -------------------------------------------------------------------------------- /Engine/N64/datatype/engine/transform2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/engine/transform2d.h -------------------------------------------------------------------------------- /Engine/N64/datatype/engine/transform3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/engine/transform3d.h -------------------------------------------------------------------------------- /Engine/N64/datatype/math/octagon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/math/octagon.h -------------------------------------------------------------------------------- /Engine/N64/datatype/math/quaternion.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Engine/N64/datatype/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/math/quaternion.h -------------------------------------------------------------------------------- /Engine/N64/datatype/math/vector2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/math/vector2d.c -------------------------------------------------------------------------------- /Engine/N64/datatype/math/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/math/vector2d.h -------------------------------------------------------------------------------- /Engine/N64/datatype/math/vector3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/math/vector3d.c -------------------------------------------------------------------------------- /Engine/N64/datatype/math/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/datatype/math/vector3d.h -------------------------------------------------------------------------------- /Engine/N64/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/debug.c -------------------------------------------------------------------------------- /Engine/N64/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/debug.h -------------------------------------------------------------------------------- /Engine/N64/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/engine.c -------------------------------------------------------------------------------- /Engine/N64/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/engine.h -------------------------------------------------------------------------------- /Engine/N64/game/levels/level_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/game/levels/level_boot.c -------------------------------------------------------------------------------- /Engine/N64/game/levels/levels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/game/levels/levels.c -------------------------------------------------------------------------------- /Engine/N64/game/levels/levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/game/levels/levels.h -------------------------------------------------------------------------------- /Engine/N64/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/graphics.c -------------------------------------------------------------------------------- /Engine/N64/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/graphics.h -------------------------------------------------------------------------------- /Engine/N64/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/helper.c -------------------------------------------------------------------------------- /Engine/N64/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/helper.h -------------------------------------------------------------------------------- /Engine/N64/libs/memory/p64malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/libs/memory/p64malloc.c -------------------------------------------------------------------------------- /Engine/N64/libs/memory/p64malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/libs/memory/p64malloc.h -------------------------------------------------------------------------------- /Engine/N64/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/main.c -------------------------------------------------------------------------------- /Engine/N64/osconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/osconfig.h -------------------------------------------------------------------------------- /Engine/N64/platform.nbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/platform.nbp -------------------------------------------------------------------------------- /Engine/N64/rcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/rcp.c -------------------------------------------------------------------------------- /Engine/N64/rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/rcp.h -------------------------------------------------------------------------------- /Engine/N64/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/scheduler.c -------------------------------------------------------------------------------- /Engine/N64/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/scheduler.h -------------------------------------------------------------------------------- /Engine/N64/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/spec -------------------------------------------------------------------------------- /Engine/N64/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/types.h -------------------------------------------------------------------------------- /Engine/N64/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/usb.c -------------------------------------------------------------------------------- /Engine/N64/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Engine/N64/usb.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/README.md -------------------------------------------------------------------------------- /Tools/Builder/Builder.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/Builder.fbp -------------------------------------------------------------------------------- /Tools/Builder/Builder.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/Builder.rc -------------------------------------------------------------------------------- /Tools/Builder/Builder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/Builder.sln -------------------------------------------------------------------------------- /Tools/Builder/Builder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/Builder.vcxproj -------------------------------------------------------------------------------- /Tools/Builder/Builder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/Builder.vcxproj.filters -------------------------------------------------------------------------------- /Tools/Builder/Builder.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/Builder.vcxproj.user -------------------------------------------------------------------------------- /Tools/Builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/README.md -------------------------------------------------------------------------------- /Tools/Builder/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/app.cpp -------------------------------------------------------------------------------- /Tools/Builder/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/app.h -------------------------------------------------------------------------------- /Tools/Builder/compunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/compunit.cpp -------------------------------------------------------------------------------- /Tools/Builder/compunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/compunit.h -------------------------------------------------------------------------------- /Tools/Builder/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/helper.cpp -------------------------------------------------------------------------------- /Tools/Builder/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/helper.h -------------------------------------------------------------------------------- /Tools/Builder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/main.cpp -------------------------------------------------------------------------------- /Tools/Builder/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/main.h -------------------------------------------------------------------------------- /Tools/Builder/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/preferences.cpp -------------------------------------------------------------------------------- /Tools/Builder/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/preferences.h -------------------------------------------------------------------------------- /Tools/Builder/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resource.h -------------------------------------------------------------------------------- /Tools/Builder/resources/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/c.png -------------------------------------------------------------------------------- /Tools/Builder/resources/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/config.png -------------------------------------------------------------------------------- /Tools/Builder/resources/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/generate.bat -------------------------------------------------------------------------------- /Tools/Builder/resources/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/h.png -------------------------------------------------------------------------------- /Tools/Builder/resources/icon_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/icon_c.h -------------------------------------------------------------------------------- /Tools/Builder/resources/icon_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/icon_config.h -------------------------------------------------------------------------------- /Tools/Builder/resources/icon_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/icon_h.h -------------------------------------------------------------------------------- /Tools/Builder/resources/icon_prog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/icon_prog.h -------------------------------------------------------------------------------- /Tools/Builder/resources/prog.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/resources/prog.ico -------------------------------------------------------------------------------- /Tools/Builder/traverser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/traverser.cpp -------------------------------------------------------------------------------- /Tools/Builder/traverser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/Builder/traverser.h -------------------------------------------------------------------------------- /Tools/SDK/Include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Include/json.hpp -------------------------------------------------------------------------------- /Tools/SDK/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Makefile -------------------------------------------------------------------------------- /Tools/SDK/Platform64SDK.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Platform64SDK.fbp -------------------------------------------------------------------------------- /Tools/SDK/Platform64SDK.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Platform64SDK.rc -------------------------------------------------------------------------------- /Tools/SDK/Platform64SDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Platform64SDK.sln -------------------------------------------------------------------------------- /Tools/SDK/Platform64SDK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Platform64SDK.vcxproj -------------------------------------------------------------------------------- /Tools/SDK/Platform64SDK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Platform64SDK.vcxproj.filters -------------------------------------------------------------------------------- /Tools/SDK/Platform64SDK.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Platform64SDK.vcxproj.user -------------------------------------------------------------------------------- /Tools/SDK/Resources/Cursors/Cursor_Pipette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Cursors/Cursor_Pipette.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Cursors/Cursor_Pipette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Cursors/Cursor_Pipette.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Default/MISSING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Default/MISSING.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Default/MISSING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Default/MISSING.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Back.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Back.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Back.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Folder.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Folder.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Folder_Large.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Folder_Large.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Folder_Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Folder_Large.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Main.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Main.ico -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Main.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Material.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Material.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Material_Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Material_Large.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_NewAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_NewAsset.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_NewAsset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_NewAsset.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_NewFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_NewFolder.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_NewFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_NewFolder.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Palette.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Palette.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Pipette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Pipette.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Pipette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Pipette.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Save.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Save.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Search.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Search.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Sound.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Sound.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Texture.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Texture.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleAlpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleAlpha.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleAlpha.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleFilter.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleFilter.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleMask.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleMask.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleStatistics.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleStatistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleStatistics.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleTiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleTiling.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ToggleTiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ToggleTiling.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_USBUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_USBUpload.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_USBUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_USBUpload.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ViewGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ViewGrid.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ViewGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ViewGrid.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ViewList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ViewList.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ViewList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ViewList.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Waveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Waveform.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Waveform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Waveform.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Waveform_Large.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Waveform_Large.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_Waveform_Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_Waveform_Large.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ZoomFit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ZoomFit.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ZoomFit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ZoomFit.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ZoomIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ZoomIn.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ZoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ZoomIn.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ZoomOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ZoomOut.h -------------------------------------------------------------------------------- /Tools/SDK/Resources/Icons/Icon_ZoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/Icons/Icon_ZoomOut.png -------------------------------------------------------------------------------- /Tools/SDK/Resources/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Resources/generate.bat -------------------------------------------------------------------------------- /Tools/SDK/Tools/Image/asset_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Image/asset_image.cpp -------------------------------------------------------------------------------- /Tools/SDK/Tools/Image/asset_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Image/asset_image.h -------------------------------------------------------------------------------- /Tools/SDK/Tools/Image/frame_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Image/frame_image.cpp -------------------------------------------------------------------------------- /Tools/SDK/Tools/Image/frame_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Image/frame_image.h -------------------------------------------------------------------------------- /Tools/SDK/Tools/Image/panel_imgview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Image/panel_imgview.cpp -------------------------------------------------------------------------------- /Tools/SDK/Tools/Image/panel_imgview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Image/panel_imgview.h -------------------------------------------------------------------------------- /Tools/SDK/Tools/Sound/asset_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Sound/asset_sound.cpp -------------------------------------------------------------------------------- /Tools/SDK/Tools/Sound/asset_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Sound/asset_sound.h -------------------------------------------------------------------------------- /Tools/SDK/Tools/Sound/frame_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Sound/frame_sound.cpp -------------------------------------------------------------------------------- /Tools/SDK/Tools/Sound/frame_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/Sound/frame_sound.h -------------------------------------------------------------------------------- /Tools/SDK/Tools/asset_thumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/asset_thumbnail.cpp -------------------------------------------------------------------------------- /Tools/SDK/Tools/asset_thumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/asset_thumbnail.h -------------------------------------------------------------------------------- /Tools/SDK/Tools/panel_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/panel_search.cpp -------------------------------------------------------------------------------- /Tools/SDK/Tools/panel_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/Tools/panel_search.h -------------------------------------------------------------------------------- /Tools/SDK/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/app.cpp -------------------------------------------------------------------------------- /Tools/SDK/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/app.h -------------------------------------------------------------------------------- /Tools/SDK/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/json.cpp -------------------------------------------------------------------------------- /Tools/SDK/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/json.h -------------------------------------------------------------------------------- /Tools/SDK/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/main.cpp -------------------------------------------------------------------------------- /Tools/SDK/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/main.h -------------------------------------------------------------------------------- /Tools/SDK/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/resource.h -------------------------------------------------------------------------------- /Tools/SDK/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/serializer.cpp -------------------------------------------------------------------------------- /Tools/SDK/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/Tools/SDK/serializer.h -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Platform64/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------