mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-19 23:02:41 -05:00
219804cbe4
* Initial controller hud ui * Reverted fbdemo changes * Moved config to json and implemented controller config * fix build on linux, gitignore new config file * fix build * Fix compilation and file directory paths * Call save on cvar save * Fixed cvar loading and added deck slots to the config * Changed control deck port 0 to use a physical device by default * Added gyro and rumble & fixed loading errors * Save config on toggle menubar * fix linux build * Fixed drift calculation * Controller config now saves when pressing F1 * Removed ExitGame hook from ImGuiImpl * Moved mappings to a map * Added GetKeyName * untranslate scancodes * Fixed hud layout on keyboard device * Fixed keyboard read on hud * Fixed crash when reloading controllers * Removed ConfigFile and changed file extension * Changed Dummy to Disconnected and fixed filters * Removed function leftover * Changed ControllerHud to InputEditor Co-authored-by: briaguya <briaguya@alice> Co-authored-by: David Chavez <david@dcvz.io>
92 lines
2.7 KiB
C
92 lines
2.7 KiB
C
#include "bootcommands.h"
|
|
#include "gameconsole.h"
|
|
#include <macros.h>
|
|
#include <z64.h>
|
|
#include <ultra64.h>
|
|
#include <functions.h>
|
|
#include <variables.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <z64.h>
|
|
#include <ultra64/gbi.h>
|
|
#include <ultra64/gs2dex.h>
|
|
#include <ultra64/controller.h>
|
|
|
|
uint8_t gLoadFileSelect = 0, gSkipLogoTest = 0;
|
|
|
|
extern BootCommandFunc BootCommands_Command_SkipLogo(char** argv, s32 argc);
|
|
extern BootCommandFunc BootCommands_Command_LoadFileSelect(char** argv, s32 argc);
|
|
|
|
static BootCommand sCommands[] = { { "--skiplogo", BootCommands_Command_SkipLogo },
|
|
{ "--loadfileselect", BootCommands_Command_LoadFileSelect } };
|
|
|
|
void BootCommands_Init()
|
|
{
|
|
CVar_RegisterS32("gDisableLOD", 0);
|
|
CVar_RegisterS32("gDebugEnabled", 0);
|
|
CVar_RegisterS32("gPauseLiveLink", 0);
|
|
CVar_RegisterS32("gMinimalUI", 0);
|
|
CVar_RegisterS32("gRedGanonBlood", 0);
|
|
CVar_RegisterS32("gHoverFishing", 0);
|
|
CVar_RegisterS32("gN64WeirdFrames", 0);
|
|
CVar_RegisterS32("gBombchusOOB", 0);
|
|
CVar_RegisterS32("gUniformLR", 0);
|
|
CVar_RegisterS32("gTwoHandedIdle", 0);
|
|
CVar_RegisterS32("gDekuNutUpgradeFix", 0);
|
|
CVar_RegisterS32("gNaviTextFix", 0);
|
|
CVar_RegisterS32("gNewDrops", 0);
|
|
CVar_RegisterS32("gVisualAgony", 0);
|
|
CVar_RegisterS32("gLanguages", 0); //0 = English / 1 = German / 2 = French
|
|
CVar_RegisterS32("gForgeTime", 3);
|
|
CVar_RegisterS32("gGravediggingTourFix", 1);
|
|
CVar_RegisterS32("gHudColors", 1); //0 = N64 / 1 = NGC / 2 = Custom
|
|
CVar_RegisterS32("gUseNaviCol", 0);
|
|
CVar_RegisterS32("gUseTunicsCol", 0);
|
|
CVar_RegisterS32("gGuardVision", 0);
|
|
CVar_RegisterS32("gTimeFlowFileSelect", 0);
|
|
}
|
|
|
|
//void BootCommands_ParseBootArgs(char* str)
|
|
void BootCommands_ParseBootArgs(s32 argc, char** argv)
|
|
{
|
|
s32 i;
|
|
|
|
// Parse the commands
|
|
for (i = 0; i < argc; i++) {
|
|
s32 j;
|
|
|
|
for (j = 0; j < ARRAY_COUNT(sCommands); j++) {
|
|
if (!strcmp(argv[i], sCommands[j].name)) {
|
|
s32 numArgsProcessed = sCommands[j].func(&argv[i], argc - i);
|
|
i += numArgsProcessed;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < argc; i++)
|
|
DebugArena_Free(argv[i]);
|
|
|
|
//DebugArena_Free(argv);
|
|
}
|
|
|
|
/*
|
|
* Command Name: --skiplogo
|
|
* Description: Skips the N64 Logo Screen
|
|
* Arguments: None
|
|
*/
|
|
BootCommandFunc BootCommands_Command_SkipLogo(char** argv, s32 argc) {
|
|
gSkipLogoTest = 1;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Command Name: --loadfileselect
|
|
* Description: Loads the file select screen on bootup.
|
|
* Arguments: None
|
|
*/
|
|
BootCommandFunc BootCommands_Command_LoadFileSelect(char** argv, s32 argc) {
|
|
gLoadFileSelect = 1;
|
|
return 0;
|
|
}
|