aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2003-10-22 09:17:31 +0000
committerTravis Howell2003-10-22 09:17:31 +0000
commit3d229f6c8cb37a7263e0926e91ee37f7d833f40c (patch)
treea21542ef75f5cba04591b3c928223a4f4de17b35 /simon
parent59b72f2b382de8dbcc782712b42a832fe2c91e27 (diff)
downloadscummvm-rg350-3d229f6c8cb37a7263e0926e91ee37f7d833f40c.tar.gz
scummvm-rg350-3d229f6c8cb37a7263e0926e91ee37f7d833f40c.tar.bz2
scummvm-rg350-3d229f6c8cb37a7263e0926e91ee37f7d833f40c.zip
Add load/save game failture messages from original games.
svn-id: r10940
Diffstat (limited to 'simon')
-rw-r--r--simon/simon.cpp54
-rw-r--r--simon/simon.h1
2 files changed, 53 insertions, 2 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index b0800409fa..a4e5feabce 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -2829,10 +2829,10 @@ restart:;
// do_save
if (!save_game(_saveload_row_curpos + unk132_result, buf + unk132_result * 18))
- warning("Save failed");
+ o_file_error(_fcs_ptr_array_3[5], true);
} else {
if (!load_game(_saveload_row_curpos + i))
- warning("Load failed");
+ o_file_error(_fcs_ptr_array_3[5], false);
}
get_out:;
@@ -2858,6 +2858,56 @@ get_out:;
#endif
}
+void SimonEngine::o_file_error(FillOrCopyStruct *fcs, bool save_error) {
+ HitArea *ha;
+ char *string, *string2;
+
+ if (save_error) {
+ string = "\r Save failed.";
+ string2 = "\r Disk error.";
+ } else {
+ string = "\r Load failed.";
+ string2 = "\r File not found.";
+ }
+
+ video_putchar(fcs, 0xC);
+ for (; *string; string++)
+ video_putchar(fcs, *string);
+ for (; *string2; string2++)
+ video_putchar(fcs, *string2);
+
+ fcs->textColumn = (fcs->width >> 1) - 3;
+ fcs->textRow = fcs->height - 1; //height
+ fcs->textLength = 0; // left allign
+
+ string = "[ OK ]";
+ for (; *string; string++)
+ video_putchar(fcs, *string);
+
+ ha = findEmptyHitArea();
+ ha->x = (fcs->width >> 1) + fcs->x - 3 << 3;
+ ha->y = (fcs->height << 3) + fcs->y - 8;
+ ha->width = 48;
+ ha->height = 8;
+ ha->flags = 0x20;
+ ha->id = 0x7FFF;
+ ha->layer = 0x3EF;
+
+loop:;
+ _last_hitarea = _last_hitarea_3 = 0;
+
+ do {
+ delay(1);
+ } while (_last_hitarea_3 == 0);
+
+ ha = _last_hitarea;
+ if (ha == NULL || ha->id != 0x7FFF)
+ goto loop;
+
+ // Return
+ delete_hitarea(0x7FFF);
+}
+
void SimonEngine::o_wait_for_vga(uint a) {
_vga_wait_for = a;
_timer_1 = 0;
diff --git a/simon/simon.h b/simon/simon.h
index 5d825b1338..d5ebf25cc3 100644
--- a/simon/simon.h
+++ b/simon/simon.h
@@ -790,6 +790,7 @@ protected:
int o_unk_132_helper(bool *b, char *buf);
void o_clear_character(FillOrCopyStruct *fcs, int x, byte b = 0);
void savegame_dialog(char *buf);
+ void o_file_error(FillOrCopyStruct *fcs, bool save_error);
int count_savegames();
int display_savegame_list(int curpos, bool load, char *dst);