2012-11-19 02:22:43 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
2013-01-02 01:08:19 +04:00
|
|
|
#include <stdbool.h>
|
2012-11-19 02:22:43 +04:00
|
|
|
#include <gem.h>
|
|
|
|
#include "gemtk.h"
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2013-01-07 23:04:44 +04:00
|
|
|
/* GEM Utillity functions: */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
unsigned short _systype_v;
|
|
|
|
unsigned short _systype (void)
|
|
|
|
{
|
|
|
|
int32_t * cptr = NULL;
|
|
|
|
_systype_v = SYS_TOS;
|
2012-11-19 02:22:43 +04:00
|
|
|
|
2013-01-07 23:04:44 +04:00
|
|
|
cptr = (int32_t *)Setexc(0x0168, -1L);
|
|
|
|
if (cptr == NULL ) {
|
|
|
|
return _systype_v; /* stone old TOS without any cookie support */
|
|
|
|
}
|
|
|
|
while (*cptr) {
|
|
|
|
if (*cptr == C_MgMc || *cptr == C_MgMx ) {
|
|
|
|
_systype_v = (_systype_v & ~0xF) | SYS_MAGIC;
|
|
|
|
} else if (*cptr == C_MiNT ) {
|
|
|
|
_systype_v = (_systype_v & ~0xF) | SYS_MINT;
|
|
|
|
} else if (*cptr == C_Gnva /* Gnva */ ) {
|
|
|
|
_systype_v |= SYS_GENEVA;
|
|
|
|
} else if (*cptr == C_nAES /* nAES */ ) {
|
|
|
|
_systype_v |= SYS_NAES;
|
|
|
|
}
|
|
|
|
cptr += 2;
|
|
|
|
}
|
|
|
|
if (_systype_v & SYS_MINT) { /* check for XaAES */
|
|
|
|
short out = 0, u;
|
|
|
|
if (wind_get (0, (((short)'X') <<8)|'A', &out, &u,&u,&u) && out) {
|
|
|
|
_systype_v |= SYS_XAAES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return _systype_v;
|
2012-11-19 02:22:43 +04:00
|
|
|
}
|
|
|
|
|
2013-01-02 01:08:19 +04:00
|
|
|
bool rc_intersect_ro(GRECT *a, GRECT *b)
|
|
|
|
{
|
2013-01-07 23:04:44 +04:00
|
|
|
GRECT r1, r2;
|
|
|
|
|
|
|
|
r1 = *a;
|
|
|
|
r2 = *b;
|
|
|
|
|
|
|
|
return((bool)rc_intersect(&r1, &r2));
|
|
|
|
}
|
|
|
|
|
2013-01-02 01:08:19 +04:00
|
|
|
|
2013-01-07 23:04:44 +04:00
|
|
|
typedef struct {
|
|
|
|
char *unshift;
|
|
|
|
char *shift;
|
|
|
|
char *capslock;
|
2013-01-11 05:12:30 +04:00
|
|
|
} KEYTAB;
|
2013-01-02 01:08:19 +04:00
|
|
|
|
2013-01-07 23:04:44 +04:00
|
|
|
int keybd2ascii( int keybd, int shift)
|
|
|
|
{
|
|
|
|
|
2013-01-11 05:12:30 +04:00
|
|
|
KEYTAB *key;
|
|
|
|
key = (KEYTAB *)Keytbl( (char*)-1, (char*)-1, (char*)-1);
|
2013-01-07 23:04:44 +04:00
|
|
|
return (shift)?key->shift[keybd>>8]:key->unshift[keybd>>8];
|
2013-01-02 01:08:19 +04:00
|
|
|
}
|
2013-01-07 23:04:44 +04:00
|
|
|
|
2013-01-11 05:12:30 +04:00
|
|
|
void gemtk_clip_grect(VdiHdl vh, GRECT *rect)
|
|
|
|
{
|
|
|
|
short pxy[4];
|
|
|
|
|
|
|
|
pxy[0] = rect->g_x;
|
|
|
|
pxy[1] = rect->g_y;
|
|
|
|
pxy[2] = pxy[0] + rect->g_w-1;
|
|
|
|
pxy[3] = pxy[1] + rect->g_h-1;
|
|
|
|
|
|
|
|
vs_clip_pxy(vh, pxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
|