/* SSNES - A frontend for libretro. * Copyright (C) 2010-2012 - Hans-Kristian Arntzen * * SSNES is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Found- * ation, either version 3 of the License, or (at your option) any later version. * * SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with SSNES. * If not, see . */ #undef main #include #include "../console/sgui/sgui.h" #include "../driver.h" #include "../general.h" #include "../libretro.h" #include "driver.h" #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_FILE_LOGGER FILE * log_fp; #endif static uint16_t menu_framebuf[SGUI_WIDTH * SGUI_HEIGHT]; static bool folder_cb(const char *directory, sgui_file_enum_cb_t file_cb, void *userdata, void *ctx) { (void)userdata; DIR *dir = opendir(directory); if (!dir) return false; struct dirent *entry; while ((entry = readdir(dir))) { char stat_path[PATH_MAX]; snprintf(stat_path, sizeof(stat_path), "%s/%s", directory, entry->d_name); struct stat st; if (stat(stat_path, &st) < 0) continue; if (!S_ISDIR(st.st_mode) && !S_ISREG(st.st_mode)) continue; file_cb(ctx, entry->d_name, S_ISDIR(st.st_mode) ? SGUI_FILE_DIRECTORY : SGUI_FILE_PLAIN); } closedir(dir); return true; } static const char *get_rom_path(sgui_handle_t *sgui) { uint16_t old_input_state = 0; bool can_quit = false; sgui_iterate(sgui, SGUI_ACTION_REFRESH); for (;;) { uint16_t input_state = 0; input_wii.poll(NULL); if (input_wii.key_pressed(NULL, SSNES_QUIT_KEY)) { if (can_quit) return NULL; } else can_quit = true; for (unsigned i = 0; i < SSNES_FIRST_META_KEY; i++) { input_state |= input_wii.input_state(NULL, NULL, false, RETRO_DEVICE_JOYPAD, 0, i) ? (1 << i) : 0; } uint16_t trigger_state = input_state & ~old_input_state; sgui_action_t action = SGUI_ACTION_NOOP; if (trigger_state & (1 << RETRO_DEVICE_ID_JOYPAD_B)) action = SGUI_ACTION_CANCEL; else if (trigger_state & (1 << RETRO_DEVICE_ID_JOYPAD_A)) action = SGUI_ACTION_OK; else if (trigger_state & (1 << RETRO_DEVICE_ID_JOYPAD_UP)) action = SGUI_ACTION_UP; else if (trigger_state & (1 << RETRO_DEVICE_ID_JOYPAD_DOWN)) action = SGUI_ACTION_DOWN; const char *ret = sgui_iterate(sgui, action); if (ret) return ret; video_wii.frame(NULL, menu_framebuf, SGUI_WIDTH, SGUI_HEIGHT, SGUI_WIDTH * sizeof(uint16_t), NULL); old_input_state = input_state; ssnes_sleep(10); } } int ssnes_main(int argc, char **argv); extern uint8_t _binary_console_font_bmp_start[]; int main(void) { fatInitDefault(); #ifdef HAVE_FILE_LOGGER g_extern.verbose = true; log_fp = fopen("sd:/ssnes-log.txt", "w"); #endif wii_video_init(); wii_input_init(); sgui_handle_t *sgui = sgui_init("sd:/", menu_framebuf, SGUI_WIDTH * sizeof(uint16_t), _binary_console_font_bmp_start, folder_cb, NULL); const char *rom_path; int ret = 0; while ((rom_path = get_rom_path(sgui)) && ret == 0) { g_console.initialize_ssnes_enable = true; strlcpy(g_console.rom_path, rom_path, sizeof(g_console.rom_path)); ssnes_startup(NULL); bool repeat = false; input_wii.poll(NULL); do{ repeat = ssnes_main_iterate(); }while(repeat && !g_console.frame_advance_enable); } if(g_console.emulator_initialized) ssnes_main_deinit(); wii_input_deinit(); wii_video_deinit(); #ifdef HAVE_FILE_LOGGER fclose(log_fp); #endif sgui_free(sgui); return ret; }