all-in-one application

This commit is contained in:
Denis 2023-12-13 03:11:08 +01:00
parent 82a3d8575d
commit ca92513634
No known key found for this signature in database
GPG key ID: DD9B63F805CF5C03
2 changed files with 155 additions and 0 deletions

View file

@ -11,6 +11,7 @@ project(
set(ROGUE_EXECUTABLE_NAME "rogue-enemy") set(ROGUE_EXECUTABLE_NAME "rogue-enemy")
set(STRAY_EXECUTABLE_NAME "stray-ally") set(STRAY_EXECUTABLE_NAME "stray-ally")
set(ALLINONE_EXECUTABLE_NAME "allynone")
set(THREADS_PREFER_PTHREAD_FLAG ON) set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED) find_package(Threads REQUIRED)
@ -37,6 +38,32 @@ add_executable(${STRAY_EXECUTABLE_NAME}
devices_status.c devices_status.c
) )
add_executable(${ALLINONE_EXECUTABLE_NAME}
dev_out.c
allynone.c
settings.c
virt_ds4.c
virt_ds5.c
devices_status.c
dev_evdev.c
dev_iio.c
dev_hidraw.c
dev_in.c
settings.c
rog_ally.c
legion_go.c
xbox360.c
rogue_enemy.c
)
set_property(TARGET ${ALLINONE_EXECUTABLE_NAME} PROPERTY C_STANDARD 17)
target_link_libraries(${ALLINONE_EXECUTABLE_NAME} PRIVATE Threads::Threads -levdev -ludev -lconfig -lm)
set_target_properties(${ALLINONE_EXECUTABLE_NAME} PROPERTIES LINKER_LANGUAGE C)
install(TARGETS ${ALLINONE_EXECUTABLE_NAME} DESTINATION bin)
set_property(TARGET ${ROGUE_EXECUTABLE_NAME} PROPERTY C_STANDARD 17) set_property(TARGET ${ROGUE_EXECUTABLE_NAME} PROPERTY C_STANDARD 17)
target_link_libraries(${ROGUE_EXECUTABLE_NAME} PRIVATE Threads::Threads -levdev -ludev -lconfig -lm) target_link_libraries(${ROGUE_EXECUTABLE_NAME} PRIVATE Threads::Threads -levdev -ludev -lconfig -lm)

128
allynone.c Normal file
View file

@ -0,0 +1,128 @@
#include <signal.h>
#include <stdlib.h>
#include "input_dev.h"
#include "dev_in.h"
#include "dev_out.h"
#include "ipc.h"
#include "settings.h"
#include "rog_ally.h"
#include "legion_go.h"
/*
logic_t global_logic;
static output_dev_t out_gamepadd_dev = {
.logic = &global_logic,
};
void sig_handler(int signo)
{
if (signo == SIGINT) {
logic_request_termination(&global_logic);
printf("Received SIGINT\n");
}
}
*/
static const char* configuration_file = "/etc/ROGueENEMY/config.cfg";
dev_in_data_t dev_in_thread_data;
dev_out_data_t dev_out_thread_data;
controller_settings_t settings;
int main(int argc, char ** argv) {
int ret = 0;
init_config(&settings);
fill_config(&settings, configuration_file);
/*
const int logic_creation_res = logic_create(&global_logic);
if (logic_creation_res < 0) {
fprintf(stderr, "Unable to create logic: %d", logic_creation_res);
return EXIT_FAILURE;
}
*/
input_dev_composite_t* in_devs = NULL;
int dmi_name_fd = open("/sys/class/dmi/id/board_name", O_RDONLY | O_NONBLOCK);
if (dmi_name_fd < 0) {
fprintf(stderr, "Cannot get the board name\n");
return EXIT_FAILURE;
}
char bname[256];
memset(bname, 0, sizeof(bname));
read(dmi_name_fd, bname, sizeof(bname));
if (strstr(bname, "RC71L") != NULL) {
printf("Running in an Asus ROG Ally device\n");
in_devs = rog_ally_device_def(&settings);
} else if (strstr(bname, "LNVNB161216")) {
printf("Running in an Lenovo Legion Go device\n");
in_devs = legion_go_device_def(&settings);
}
close(dmi_name_fd);
int dev_in_thread_creation = -1;
int dev_out_thread_creation = -1;
int out_message_pipes[2];
pipe(out_message_pipes);
int in_message_pipes[2];
pipe(in_message_pipes);
// populate the input device thread data
dev_in_thread_data.timeout_ms = 400;
dev_in_thread_data.communication.type = ipc_unix_pipe;
dev_in_thread_data.communication.endpoint.pipe.in_message_pipe_fd = in_message_pipes[1];
dev_in_thread_data.communication.endpoint.pipe.out_message_pipe_fd = out_message_pipes[0];
dev_in_thread_data.input_dev_decl = in_devs;
// populate the output device thread data
dev_in_thread_data.communication.type = ipc_unix_pipe;
dev_out_thread_data.communication.endpoint.pipe.in_message_pipe_fd = in_message_pipes[0];
dev_out_thread_data.communication.endpoint.pipe.out_message_pipe_fd = out_message_pipes[1];
dev_out_thread_data.gamepad = GAMEPAD_DUALSENSE;
pthread_t dev_in_thread;
dev_in_thread_creation = pthread_create(&dev_in_thread, NULL, dev_in_thread_func, (void*)(&dev_in_thread_data));
if (dev_in_thread_creation != 0) {
fprintf(stderr, "Error creating dev_in thread: %d\n", dev_in_thread_creation);
ret = -1;
//logic_request_termination(&global_logic);
goto main_err;
}
pthread_t dev_out_thread;
dev_out_thread_creation = pthread_create(&dev_out_thread, NULL, dev_out_thread_func, (void*)(&dev_out_thread_data));
if (dev_out_thread_creation != 0) {
fprintf(stderr, "Error creating dev_out thread: %d\n", dev_out_thread_creation);
ret = -1;
//logic_request_termination(&global_logic);
goto main_err;
}
/*
// TODO: once the application is able to exit de-comment this
__sighandler_t sigint_hndl = signal(SIGINT, sig_handler);
if (sigint_hndl == SIG_ERR) {
fprintf(stderr, "Error registering SIGINT handler\n");
return EXIT_FAILURE;
}
*/
main_err:
if (dev_in_thread_creation == 0) {
pthread_join(dev_in_thread, NULL);
}
if (dev_out_thread_creation == 0) {
pthread_join(dev_out_thread, NULL);
}
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}