summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2017-11-21 18:55:33 -0800
committerMichael Pavone <pavone@retrodev.com>2017-11-21 18:55:33 -0800
commitc5f80591a0f8cbc2a6a3ab30b28754a16042c6f3 (patch)
tree8b6c4601ba3f94d4f4ab295f95ef7226b14c8c98
parent15b6f9038a33cdab77f7fe380d6f41fd284fd9c5 (diff)
Moved initial path logic out of menu so it can be shared with new UI
--HG-- branch : nuklear_ui
-rw-r--r--menu.c96
-rw-r--r--paths.c103
-rw-r--r--paths.h6
3 files changed, 111 insertions, 94 deletions
diff --git a/menu.c b/menu.c
index 864edd4..be5090c 100644
--- a/menu.c
+++ b/menu.c
@@ -8,71 +8,15 @@
#include "backend.h"
#include "util.h"
#include "gst.h"
+#include "paths.h"
#include "m68k_internal.h" //needed for get_native_address_trans, should be eliminated once handling of PC is cleaned up
-static menu_context *persist_path_menu;
-static void persist_path(void)
-{
- char const *parts[] = {get_userdata_dir(), PATH_SEP, "sticky_path"};
- char *pathfname = alloc_concat_m(3, parts);
- FILE *f = fopen(pathfname, "wb");
- if (f) {
- if (fwrite(persist_path_menu->curpath, 1, strlen(persist_path_menu->curpath), f) != strlen(persist_path_menu->curpath)) {
- warning("Failed to save menu path");
- }
- fclose(f);
- } else {
- warning("Failed to save menu path: Could not open %s for writing\n", pathfname);
-
- }
- free(pathfname);
-}
-
static menu_context *get_menu(genesis_context *gen)
{
menu_context *menu = gen->extra;
if (!menu) {
gen->extra = menu = calloc(1, sizeof(menu_context));
- menu->curpath = NULL;
- char *remember_path = tern_find_path(config, "ui\0remember_path\0", TVAL_PTR).ptrval;
- if (!remember_path || !strcmp("on", remember_path)) {
- char const *parts[] = {get_userdata_dir(), PATH_SEP, "sticky_path"};
- char *pathfname = alloc_concat_m(3, parts);
- FILE *f = fopen(pathfname, "rb");
- if (f) {
- long pathsize = file_size(f);
- if (pathsize > 0) {
- menu->curpath = malloc(pathsize + 1);
- if (fread(menu->curpath, 1, pathsize, f) != pathsize) {
- warning("Error restoring saved menu path");
- free(menu->curpath);
- menu->curpath = NULL;
- } else {
- menu->curpath[pathsize] = 0;
- }
- }
- fclose(f);
- }
- free(pathfname);
- if (!persist_path_menu) {
- atexit(persist_path);
- }
- persist_path_menu = menu;
- }
- if (!menu->curpath) {
- menu->curpath = tern_find_path(config, "ui\0initial_path\0", TVAL_PTR).ptrval;
- }
- if (!menu->curpath){
-#ifdef __ANDROID__
- menu->curpath = get_external_storage_path();
-#else
- menu->curpath = "$HOME";
-#endif
- }
- tern_node *vars = tern_insert_ptr(NULL, "HOME", get_home_dir());
- vars = tern_insert_ptr(vars, "EXEDIR", get_exe_dir());
- menu->curpath = replace_vars(menu->curpath, vars, 1);
- tern_free(vars);
+ get_initial_browse_path(&menu->curpath);
}
return menu;
}
@@ -150,42 +94,6 @@ void copy_to_guest(m68k_context *m68k, uint32_t guest_addr, char *src, size_t to
#define SAVE_INFO_BUFFER_SIZE (11*40)
-#ifdef __ANDROID__
-#include <SDL.h>
-#include <jni.h>
-char *get_external_storage_path()
-{
- static char *ret;
- if (ret) {
- return ret;
- }
- JNIEnv *env = SDL_AndroidGetJNIEnv();
- if ((*env)->PushLocalFrame(env, 8) < 0) {
- return NULL;
- }
-
- jclass Environment = (*env)->FindClass(env, "android/os/Environment");
- jmethodID getExternalStorageDirectory =
- (*env)->GetStaticMethodID(env, Environment, "getExternalStorageDirectory", "()Ljava/io/File;");
- jobject file = (*env)->CallStaticObjectMethod(env, Environment, getExternalStorageDirectory);
- if (!file) {
- goto cleanup;
- }
-
- jmethodID getAbsolutePath = (*env)->GetMethodID(env, (*env)->GetObjectClass(env, file),
- "getAbsolutePath", "()Ljava/lang/String;");
- jstring path = (*env)->CallObjectMethod(env, file, getAbsolutePath);
-
- char const *tmp = (*env)->GetStringUTFChars(env, path, NULL);
- ret = strdup(tmp);
- (*env)->ReleaseStringUTFChars(env, path, tmp);
-
-cleanup:
- (*env)->PopLocalFrame(env, NULL);
- return ret;
-}
-#endif
-
#ifdef _WIN32
#define localtime_r(a,b) localtime(a)
//windows inclues seem not to like certain single letter defines from m68k_internal.h
diff --git a/paths.c b/paths.c
new file mode 100644
index 0000000..c3c4ad9
--- /dev/null
+++ b/paths.c
@@ -0,0 +1,103 @@
+#include <string.h>
+#include <stdlib.h>
+#include "blastem.h"
+#include "util.h"
+
+static char **current_path;
+
+static void persist_path(void)
+{
+ char const *parts[] = {get_userdata_dir(), PATH_SEP, "sticky_path"};
+ char *pathfname = alloc_concat_m(3, parts);
+ FILE *f = fopen(pathfname, "wb");
+ if (f) {
+ if (fwrite(*current_path, 1, strlen(*current_path), f) != strlen(*current_path)) {
+ warning("Failed to save menu path");
+ }
+ fclose(f);
+ } else {
+ warning("Failed to save menu path: Could not open %s for writing\n", pathfname);
+
+ }
+ free(pathfname);
+}
+
+#ifdef __ANDROID__
+#include <SDL.h>
+#include <jni.h>
+static char *get_external_storage_path()
+{
+ static char *ret;
+ if (ret) {
+ return ret;
+ }
+ JNIEnv *env = SDL_AndroidGetJNIEnv();
+ if ((*env)->PushLocalFrame(env, 8) < 0) {
+ return NULL;
+ }
+
+ jclass Environment = (*env)->FindClass(env, "android/os/Environment");
+ jmethodID getExternalStorageDirectory =
+ (*env)->GetStaticMethodID(env, Environment, "getExternalStorageDirectory", "()Ljava/io/File;");
+ jobject file = (*env)->CallStaticObjectMethod(env, Environment, getExternalStorageDirectory);
+ if (!file) {
+ goto cleanup;
+ }
+
+ jmethodID getAbsolutePath = (*env)->GetMethodID(env, (*env)->GetObjectClass(env, file),
+ "getAbsolutePath", "()Ljava/lang/String;");
+ jstring path = (*env)->CallObjectMethod(env, file, getAbsolutePath);
+
+ char const *tmp = (*env)->GetStringUTFChars(env, path, NULL);
+ ret = strdup(tmp);
+ (*env)->ReleaseStringUTFChars(env, path, tmp);
+
+cleanup:
+ (*env)->PopLocalFrame(env, NULL);
+ return ret;
+}
+#endif
+
+void get_initial_browse_path(char **dst)
+{
+ *dst = NULL;
+ char *remember_path = tern_find_path(config, "ui\0remember_path\0", TVAL_PTR).ptrval;
+ if (!remember_path || !strcmp("on", remember_path)) {
+ char const *parts[] = {get_userdata_dir(), PATH_SEP, "sticky_path"};
+ char *pathfname = alloc_concat_m(3, parts);
+ FILE *f = fopen(pathfname, "rb");
+ if (f) {
+ long pathsize = file_size(f);
+ if (pathsize > 0) {
+ *dst = malloc(pathsize + 1);
+ if (fread(*dst, 1, pathsize, f) != pathsize) {
+ warning("Error restoring saved file browser path");
+ free(*dst);
+ *dst = NULL;
+ } else {
+ (*dst)[pathsize] = 0;
+ }
+ }
+ fclose(f);
+ }
+ free(pathfname);
+ if (!current_path) {
+ atexit(persist_path);
+ current_path = dst;
+ }
+ }
+ if (!*dst) {
+ *dst = tern_find_path(config, "ui\0initial_path\0", TVAL_PTR).ptrval;
+ }
+ if (!*dst){
+#ifdef __ANDROID__
+ *dst = get_external_storage_path();
+#else
+ *dst = "$HOME";
+#endif
+ }
+ tern_node *vars = tern_insert_ptr(NULL, "HOME", get_home_dir());
+ vars = tern_insert_ptr(vars, "EXEDIR", get_exe_dir());
+ *dst = replace_vars(*dst, vars, 1);
+ tern_free(vars);
+}
diff --git a/paths.h b/paths.h
new file mode 100644
index 0000000..77e878d
--- /dev/null
+++ b/paths.h
@@ -0,0 +1,6 @@
+#ifndef PATHS_H_
+#define PATHS_H_
+
+void get_initial_browse_path(char **dst);
+
+#endif //PATHS_H_ \ No newline at end of file