This commit is contained in:
p.kosyh 2010-06-08 03:25:41 +00:00
parent 12f07c268c
commit a24c731c4b
3 changed files with 16 additions and 9 deletions

View file

@ -2381,7 +2381,7 @@ static int game_input(int down, const char *key, int x, int y, int mb)
extern char zip_game_dirname[];
extern int unpack(const char *zipfilename, const char *dirname);
#ifdef _USE_BROWSE
int game_from_disk(void)
{
int i = 0;
@ -2396,9 +2396,11 @@ int game_from_disk(void)
game_menu(old_menu);
}
mouse_cursor(1);
game_cursor(CURSOR_OFF);
browse_dialog = 1;
g = p = open_file_dialog();
browse_dialog = 0;
game_cursor(CURSOR_ON);
mouse_cursor(0);
if (!p)
return -1;
@ -2446,7 +2448,7 @@ clean:
return -1;
#endif
}
#endif
int game_loop(void)
{
static int alt_pressed = 0;
@ -2513,10 +2515,12 @@ int game_loop(void)
menu_toggle();
} else if (!is_key(&ev, "f4")) {
#ifdef _USE_UNPACK
#ifdef _USE_BROWSE
mouse_reset(1);
if (!game_from_disk()) {
shift_pressed = alt_pressed = 0;
}
#endif
#endif
} else if (!is_key(&ev, "escape")) {
if (use_xref)

View file

@ -414,7 +414,14 @@ static const luaL_Reg base_funcs[] = {
static int instead_package(void)
{
char *p;
char stead_path[PATH_MAX] = "package.path=\"";
char stead_path[PATH_MAX] = "package.path=\"./?.lua;";
p = game_local_stead_path();
if (p) {
strcat(stead_path, p);
strcat(stead_path, "/?.lua");
strcat(stead_path, ";");
}
if (STEAD_PATH[0] == '.') {
strcat(stead_path, game_cwd);
@ -424,12 +431,6 @@ static int instead_package(void)
strcat(stead_path, STEAD_PATH);
}
strcat(stead_path, "/?.lua");
p = game_local_stead_path();
if (p) {
strcat(stead_path, ";");
strcat(stead_path, p);
strcat(stead_path, "/?.lua");
}
strcat(stead_path, "\"");
instead_eval(stead_path); instead_clear();
/* putenv(stead_path); */

View file

@ -571,9 +571,11 @@ int game_menu_act(const char *a)
game_menu_box(1, game_menu_gen());
} else if (!strcmp(a,"/quit")) {
return -1;
#ifdef _USE_BROWSE
} else if (!strcmp(a,"/browse")) {
game_from_disk();
return 0;
#endif
} else if (cur_menu == menu_games) {
char *p;
p = strdup(a);