1
0
mirror of synced 2025-03-01 07:00:29 +01:00

Merge remote-tracking branch 'caviar/master'

This commit is contained in:
Bobby Dilley 2025-01-28 10:01:27 +00:00
commit be1b88b92f
5 changed files with 34 additions and 7 deletions

View File

@ -1,3 +1,5 @@
#include <limits.h>
#include <linux/limits.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
@ -1483,7 +1485,7 @@ KeyMapping getDefaultKeymap()
return defaultKeyMapping; return defaultKeyMapping;
} }
int initConfig() int initConfig(const char* configFilePath)
{ {
config.emulateRideboard = 0; config.emulateRideboard = 0;
config.emulateDriveboard = 0; config.emulateDriveboard = 0;
@ -1551,7 +1553,14 @@ int initConfig()
config.inputMode = 0; // Default to all inputs config.inputMode = 0; // Default to all inputs
configFile = fopen(CONFIG_PATH, "r"); char filePath[PATH_MAX];
strncpy(filePath, CONFIG_PATH, PATH_MAX);
if (configFilePath != NULL && configFilePath[0] != '\0')
{
strncpy(filePath, configFilePath, PATH_MAX);
}
configFile = fopen(filePath, "r");
if (configFile == NULL) if (configFile == NULL)
{ {

View File

@ -280,7 +280,7 @@ typedef struct
} EmulatorConfig; } EmulatorConfig;
KeyMapping getDefaultKeymap(); KeyMapping getDefaultKeymap();
int initConfig(); int initConfig(const char* configFilePath);
EmulatorConfig *getConfig(); EmulatorConfig *getConfig();
char *getGameName(); char *getGameName();
char *getDVPName(); char *getDVPName();

View File

@ -185,7 +185,9 @@ void __attribute__((constructor)) hook_init()
act.sa_flags = SA_SIGINFO; act.sa_flags = SA_SIGINFO;
sigaction(SIGSEGV, &act, NULL); sigaction(SIGSEGV, &act, NULL);
initConfig(); char *(*_getenv)(const char *name) = dlsym(RTLD_NEXT, "getenv");
char* envPath = _getenv("LINDBERGH_CONFIG_PATH");
initConfig(envPath);
if (getConfig()->fpsLimiter == 1) if (getConfig()->fpsLimiter == 1)
{ {

View File

@ -1,4 +1,5 @@
#include <dirent.h> #include <dirent.h>
#include <limits.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
@ -12,6 +13,7 @@
#define LD_PRELOAD "LD_PRELOAD" #define LD_PRELOAD "LD_PRELOAD"
#define PRELOAD_FILE_NAME "lindbergh.so" #define PRELOAD_FILE_NAME "lindbergh.so"
#define TEAM "bobbydilley, retrofan, dkeruza-neo, doozer, francesco, rolel, caviar-x" #define TEAM "bobbydilley, retrofan, dkeruza-neo, doozer, francesco, rolel, caviar-x"
#define LINDBERGH_CONFIG_PATH "LINDBERGH_CONFIG_PATH"
uint32_t elf_crc = 0; uint32_t elf_crc = 0;
@ -119,6 +121,7 @@ void printUsage(char *argv[])
printf(" --list-controllers Lists available controllers and inputs\n"); printf(" --list-controllers Lists available controllers and inputs\n");
printf(" --version Displays the version of the loader and team's names\n"); printf(" --version Displays the version of the loader and team's names\n");
printf(" --help Displays this usage text\n"); printf(" --help Displays this usage text\n");
printf(" --config | -c Specifies configuration path\n");
} }
/** /**
@ -248,8 +251,9 @@ int main(int argc, char *argv[])
int gdb = 0; int gdb = 0;
int forceGame = 0; int forceGame = 0;
int segaboot = 0; int segaboot = 0;
char extConfigPath[PATH_MAX] = {0};
char forceGamePath[128] = {0}; char forceGamePath[128] = {0};
for (int i = 1; i < argc; i++) for (int i = 1; i < argc; i++)
{ {
if (strcmp(argv[i], "-t") == 0 || strcmp(argv[i], "--test") == 0) if (strcmp(argv[i], "-t") == 0 || strcmp(argv[i], "--test") == 0)
@ -269,7 +273,16 @@ int main(int argc, char *argv[])
gdb = 1; gdb = 1;
continue; continue;
} }
if (strcmp(argv[i], "-c") == 0 || strcmp(argv[i], "--config") == 0)
{
if (i+1 >= argc)
{
break;
}
strncpy(extConfigPath, argv[i+1], PATH_MAX);
i += 1;
continue;
}
// Treat the argument as the game name // Treat the argument as the game name
strcpy(forceGamePath, argv[i]); strcpy(forceGamePath, argv[i]);
forceGame = 1; forceGame = 1;
@ -305,6 +318,10 @@ int main(int argc, char *argv[])
strcat(temp, command); strcat(temp, command);
strcpy(command, temp); strcpy(command, temp);
} }
if (extConfigPath[0] != '\0')
{
setenv(LINDBERGH_CONFIG_PATH,extConfigPath,1);
}
log_info("Starting $ %s", command); log_info("Starting $ %s", command);

View File

@ -4,7 +4,6 @@
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>
#include <time.h>
// Structure to hold the formatted message and its size // Structure to hold the formatted message and its size