mirror of
https://github.com/dborth/snes9xgx.git
synced 2025-02-25 15:43:36 +01:00
Backport Add special S9xDisplayStringType to pass additional info.
This commit is contained in:
parent
7fd74e91a4
commit
4373c0fb94
@ -132,13 +132,13 @@ static const char *font[] =
|
|||||||
" ",
|
" ",
|
||||||
//2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678
|
//2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678
|
||||||
" ",
|
" ",
|
||||||
" ",
|
" . . ",
|
||||||
" ",
|
" .#. .#. . ..... ",
|
||||||
" ",
|
" .##. .##. .#. .#####. ",
|
||||||
" ",
|
" .###. .###. .###. .###. ",
|
||||||
" ",
|
" .##. .##. .#####. .#. ",
|
||||||
" ",
|
" .#. .#. ..... . ",
|
||||||
" ",
|
" . . ",
|
||||||
" ",
|
" ",
|
||||||
//2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678
|
//2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678/2345678
|
||||||
" ",
|
" ",
|
||||||
|
@ -23,6 +23,7 @@ extern struct SLineMatrixData LineMatrixData[240];
|
|||||||
void S9xComputeClipWindows (void);
|
void S9xComputeClipWindows (void);
|
||||||
|
|
||||||
static int font_width = 8, font_height = 9;
|
static int font_width = 8, font_height = 9;
|
||||||
|
void (*S9xCustomDisplayString) (const char *, int, int, bool, int) = NULL;
|
||||||
|
|
||||||
static void SetupOBJ (void);
|
static void SetupOBJ (void);
|
||||||
static void DrawOBJS (int);
|
static void DrawOBJS (int);
|
||||||
@ -38,6 +39,7 @@ static inline void DrawBackgroundMode7 (int, void (*DrawMath) (uint32, uint32, i
|
|||||||
static inline void DrawBackdrop (void);
|
static inline void DrawBackdrop (void);
|
||||||
static inline void RenderScreen (bool8);
|
static inline void RenderScreen (bool8);
|
||||||
static uint16 get_crosshair_color (uint8);
|
static uint16 get_crosshair_color (uint8);
|
||||||
|
static void S9xDisplayStringType (const char *, int, int, bool, int);
|
||||||
|
|
||||||
#define TILE_PLUS(t, x) (((t) & 0xfc00) | ((t + x) & 0x3ff))
|
#define TILE_PLUS(t, x) (((t) & 0xfc00) | ((t + x) & 0x3ff))
|
||||||
|
|
||||||
@ -1825,6 +1827,12 @@ void S9xDisplayChar (uint16 *s, uint8 c)
|
|||||||
|
|
||||||
static void DisplayStringFromBottom (const char *string, int linesFromBottom, int pixelsFromLeft, bool allowWrap)
|
static void DisplayStringFromBottom (const char *string, int linesFromBottom, int pixelsFromLeft, bool allowWrap)
|
||||||
{
|
{
|
||||||
|
if (S9xCustomDisplayString)
|
||||||
|
{
|
||||||
|
S9xCustomDisplayString (string, linesFromBottom, pixelsFromLeft, allowWrap, S9X_NO_INFO);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (linesFromBottom <= 0)
|
if (linesFromBottom <= 0)
|
||||||
linesFromBottom = 1;
|
linesFromBottom = 1;
|
||||||
|
|
||||||
@ -1856,6 +1864,16 @@ static void DisplayStringFromBottom (const char *string, int linesFromBottom, in
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void S9xDisplayStringType (const char *string, int linesFromBottom, int pixelsFromLeft, bool allowWrap, int type)
|
||||||
|
{
|
||||||
|
if (S9xCustomDisplayString)
|
||||||
|
{
|
||||||
|
S9xCustomDisplayString (string, linesFromBottom, pixelsFromLeft, allowWrap, type);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
S9xDisplayString (string, linesFromBottom, pixelsFromLeft, allowWrap);
|
||||||
|
}
|
||||||
|
|
||||||
static void DisplayFrameRate (void)
|
static void DisplayFrameRate (void)
|
||||||
{
|
{
|
||||||
char string[10];
|
char string[10];
|
||||||
@ -1886,7 +1904,7 @@ static void DisplayFrameRate (void)
|
|||||||
|
|
||||||
static void DisplayPressedKeys (void)
|
static void DisplayPressedKeys (void)
|
||||||
{
|
{
|
||||||
static char KeyMap[] = { '0', '1', '2', 'R', 'L', 'X', 'A', '>', '<', 'v', '^', 'S', 's', 'Y', 'B' };
|
static unsigned char KeyMap[] = { '0', '1', '2', 'R', 'L', 'X', 'A', 225, 224, 227, 226, 'S', 's', 'Y', 'B' };
|
||||||
static int KeyOrder[] = { 8, 10, 7, 9, 0, 6, 14, 13, 5, 1, 4, 3, 2, 11, 12 }; // < ^ > v A B Y X L R S s
|
static int KeyOrder[] = { 8, 10, 7, 9, 0, 6, 14, 13, 5, 1, 4, 3, 2, 11, 12 }; // < ^ > v A B Y X L R S s
|
||||||
|
|
||||||
enum controllers controller;
|
enum controllers controller;
|
||||||
@ -1910,7 +1928,7 @@ static void DisplayPressedKeys (void)
|
|||||||
uint8 buttons = buf[4];
|
uint8 buttons = buf[4];
|
||||||
sprintf(string, "#%d %d: (%03d,%03d) %c%c", port + 1, ids[0] + 1, x, y,
|
sprintf(string, "#%d %d: (%03d,%03d) %c%c", port + 1, ids[0] + 1, x, y,
|
||||||
(buttons & 0x40) ? 'L' : ' ', (buttons & 0x80) ? 'R' : ' ');
|
(buttons & 0x40) ? 'L' : ' ', (buttons & 0x80) ? 'R' : ' ');
|
||||||
S9xDisplayString(string, line++, 1, false);
|
S9xDisplayStringType(string, line++, 1, false, S9X_PRESSED_KEYS_INFO);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1925,7 +1943,7 @@ static void DisplayPressedKeys (void)
|
|||||||
sprintf(string, "#%d %d: (%03d,%03d) %c%c%c%c", port + 1, ids[0] + 1, x, y,
|
sprintf(string, "#%d %d: (%03d,%03d) %c%c%c%c", port + 1, ids[0] + 1, x, y,
|
||||||
(buttons & 0x80) ? 'F' : ' ', (buttons & 0x40) ? 'C' : ' ',
|
(buttons & 0x80) ? 'F' : ' ', (buttons & 0x40) ? 'C' : ' ',
|
||||||
(buttons & 0x20) ? 'T' : ' ', (buttons & 0x10) ? 'P' : ' ');
|
(buttons & 0x20) ? 'T' : ' ', (buttons & 0x10) ? 'P' : ' ');
|
||||||
S9xDisplayString(string, line++, 1, false);
|
S9xDisplayStringType(string, line++, 1, false, S9X_PRESSED_KEYS_INFO);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1944,7 +1962,7 @@ static void DisplayPressedKeys (void)
|
|||||||
sprintf(string, "#%d %d: (%03d,%03d) %c%c%c / (%03d,%03d) %c%c%c", port + 1, ids[0] + 1,
|
sprintf(string, "#%d %d: (%03d,%03d) %c%c%c / (%03d,%03d) %c%c%c", port + 1, ids[0] + 1,
|
||||||
x1, y1, (buttons & 0x80) ? 'T' : ' ', (buttons & 0x20) ? 'S' : ' ', offscreen1 ? 'O' : ' ',
|
x1, y1, (buttons & 0x80) ? 'T' : ' ', (buttons & 0x20) ? 'S' : ' ', offscreen1 ? 'O' : ' ',
|
||||||
x2, y2, (buttons & 0x40) ? 'T' : ' ', (buttons & 0x10) ? 'S' : ' ', offscreen2 ? 'O' : ' ');
|
x2, y2, (buttons & 0x40) ? 'T' : ' ', (buttons & 0x10) ? 'S' : ' ', offscreen2 ? 'O' : ' ');
|
||||||
S9xDisplayString(string, line++, 1, false);
|
S9xDisplayStringType(string, line++, 1, false, S9X_PRESSED_KEYS_INFO);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1959,7 +1977,7 @@ static void DisplayPressedKeys (void)
|
|||||||
string[6 + i]= (pad & mask) ? KeyMap[j] : ' ';
|
string[6 + i]= (pad & mask) ? KeyMap[j] : ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
S9xDisplayString(string, line++, 1, false);
|
S9xDisplayStringType(string, line++, 1, false, S9X_PRESSED_KEYS_INFO);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1978,7 +1996,7 @@ static void DisplayPressedKeys (void)
|
|||||||
string[6 + i]= (pad & mask) ? KeyMap[j] : ' ';
|
string[6 + i]= (pad & mask) ? KeyMap[j] : ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
S9xDisplayString(string, line++, 1, false);
|
S9xDisplayStringType(string, line++, 1, false, S9X_PRESSED_KEYS_INFO);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -192,6 +192,6 @@ void S9xSetPalette (void);
|
|||||||
void S9xSyncSpeed (void);
|
void S9xSyncSpeed (void);
|
||||||
|
|
||||||
// called instead of S9xDisplayString if set to non-NULL
|
// called instead of S9xDisplayString if set to non-NULL
|
||||||
extern void (*S9xCustomDisplayString) (const char *, int, int, bool);
|
extern void (*S9xCustomDisplayString) (const char *, int, int, bool, int type);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -22,6 +22,7 @@ enum
|
|||||||
// Individual message numbers
|
// Individual message numbers
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
S9X_NO_INFO,
|
||||||
S9X_ROM_INFO,
|
S9X_ROM_INFO,
|
||||||
S9X_HEADERS_INFO,
|
S9X_HEADERS_INFO,
|
||||||
S9X_CONFIG_INFO,
|
S9X_CONFIG_INFO,
|
||||||
@ -52,7 +53,8 @@ enum
|
|||||||
S9X_WRONG_MOVIE_SNAPSHOT,
|
S9X_WRONG_MOVIE_SNAPSHOT,
|
||||||
S9X_NOT_A_MOVIE_SNAPSHOT,
|
S9X_NOT_A_MOVIE_SNAPSHOT,
|
||||||
S9X_SNAPSHOT_INCONSISTENT,
|
S9X_SNAPSHOT_INCONSISTENT,
|
||||||
S9X_AVI_INFO
|
S9X_AVI_INFO,
|
||||||
|
S9X_PRESSED_KEYS_INFO,
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user