Diff for /np2/x11/np2.c between versions 1.4 and 1.20

version 1.4, 2003/11/27 17:24:20 version 1.20, 2004/06/26 15:48:35
Line 31 Line 31
 #include "pccore.h"  #include "pccore.h"
 #include "dosio.h"  #include "dosio.h"
 #include "scrndraw.h"  #include "scrndraw.h"
 #include "statsave.h"  
 #include "timing.h"  #include "timing.h"
 #include "toolkit.h"  #include "toolkit.h"
   
 #include "keydisp.h"  #include "kdispwin.h"
 #include "toolwin.h"  #include "toolwin.h"
   #include "viewer.h"
   #include "debugwin.h"
   #include "skbdwin.h"
   
 #include "commng.h"  #include "commng.h"
 #include "joymng.h"  #include "joymng.h"
Line 45 Line 47
 #include "scrnmng.h"  #include "scrnmng.h"
 #include "soundmng.h"  #include "soundmng.h"
 #include "sysmng.h"  #include "sysmng.h"
   #include "taskmng.h"
   
   
 NP2OSCFG np2oscfg = {  NP2OSCFG np2oscfg = {
 #if !defined(CPU386)            /* titles */  #if !defined(CPUCORE_IA32)              /* titles */
         "Neko Project II",          "Neko Project II",
 #else  #else
         "Neko Project II + IA32",          "Neko Project II + IA32",
Line 58  NP2OSCFG np2oscfg = { Line 61  NP2OSCFG np2oscfg = {
         0,                      /* paddingy */          0,                      /* paddingy */
   
         0,                      /* NOWAIT */          0,                      /* NOWAIT */
         2,                      /* DRAW_SKIP */          0,                      /* DRAW_SKIP */
   
         0,                      /* DISPCLK */          0,                      /* DISPCLK */
   
         KEY_KEY106,             /* KEYBOARD */          KEY_KEY106,             /* KEYBOARD */
         0,                      /* F12COPY */          0,                      /* F12KEY */
   
         0,                      /* MOUSE_SW */          0,                      /* MOUSE_SW */
         0,                      /* JOYPAD1 */          0,                      /* JOYPAD1 */
Line 71  NP2OSCFG np2oscfg = { Line 74  NP2OSCFG np2oscfg = {
         { 0, 0, 0, 0 },         /* JOY1BTN */          { 0, 0, 0, 0 },         /* JOY1BTN */
   
         { COMPORT_MIDI, 0, 0x3e, 19200, "", "", "", "" },       /* mpu */          { COMPORT_MIDI, 0, 0x3e, 19200, "", "", "", "" },       /* mpu */
           {
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com1 */
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com2 */
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com3 */
           },
   
         0,                      /* confirm */          0,                      /* confirm */
   
Line 79  NP2OSCFG np2oscfg = { Line 87  NP2OSCFG np2oscfg = {
         0,                      /* statsave */          0,                      /* statsave */
         0,                      /* toolwin */          0,                      /* toolwin */
         0,                      /* keydisp */          0,                      /* keydisp */
           0,                      /* softkbd */
         0,                      /* hostdrv_write */          0,                      /* hostdrv_write */
           0,                      /* jastsnd */
         0,                      /* I286SAVE */          0,                      /* I286SAVE */
   
         SNDDRV_NODRV,           /* snddrv */          SNDDRV_NODRV,           /* snddrv */
Line 91  NP2OSCFG np2oscfg = { Line 101  NP2OSCFG np2oscfg = {
   
 #if defined(USE_GTK)            /* toolkit */  #if defined(USE_GTK)            /* toolkit */
         "gtk",          "gtk",
 #else  #elif defined(USE_QT)
         "qt",          "qt",
   #elif defined(USE_SDL)
           "sdl",
   #else
           "unknown",
 #endif  #endif
   
         MMXFLAG_DISABLE,        /* disablemmx */          MMXFLAG_DISABLE,        /* disablemmx */
Line 115  char bmpfilefolder[MAX_PATH]; Line 129  char bmpfilefolder[MAX_PATH];
 char modulefile[MAX_PATH];  char modulefile[MAX_PATH];
 char statpath[MAX_PATH];  char statpath[MAX_PATH];
   
   #ifndef FONTFACE
   #define FONTFACE "-misc-fixed-%s-r-normal--%d-*-*-*-*-*-*-*"
   #endif
   char fontname[1024] = FONTFACE;
   
   #ifndef FONTNAME_DEFAULT
   #define FONTNAME_DEFAULT        "./default.ttf"
   #endif
   char fontfilename[MAX_PATH] = FONTNAME_DEFAULT;
   
 char timidity_cfgfile_path[MAX_PATH];  char timidity_cfgfile_path[MAX_PATH];
   
 BOOL use_shared_pixmap;  BOOL use_shared_pixmap;
Line 185  flagload(const char* ext, const char* ti Line 209  flagload(const char* ext, const char* ti
   
         getstatfilename(path, ext, sizeof(path));          getstatfilename(path, ext, sizeof(path));
         ret = statsave_check(path, buf, sizeof(buf));          ret = statsave_check(path, buf, sizeof(buf));
         if (ret & (~NP2FLAG_DISKCHG)) {          if (ret & (~STATFLAG_DISKCHG)) {
                 fprintf(stderr, "Couldn't restart\n");                  fprintf(stderr, "Couldn't restart\n");
                 rv = 1;                  rv = 1;
         } else if ((!force) && (ret & NP2FLAG_DISKCHG)) {          } else if ((!force) && (ret & STATFLAG_DISKCHG)) {
                 fprintf(stderr, "Conflict\n");                  fprintf(stderr, "Conflict\n");
                 rv = 1;                  rv = 1;
         }          }
Line 219  changescreen(BYTE newmode) Line 243  changescreen(BYTE newmode)
         if (renewal) {          if (renewal) {
                 if (renewal & SCRNMODE_FULLSCREEN) {                  if (renewal & SCRNMODE_FULLSCREEN) {
                         toolwin_destroy();                          toolwin_destroy();
                         keydisp_destroy();                          kdispwin_destroy();
                 }                  }
                 soundmng_stop();                  soundmng_stop();
                 mouse_running(MOUSE_STOP);                  mouse_running(MOUSE_STOP);
Line 239  changescreen(BYTE newmode) Line 263  changescreen(BYTE newmode)
                                         toolwin_create();                                          toolwin_create();
                                 }                                  }
                                 if (np2oscfg.keydisp) {                                  if (np2oscfg.keydisp) {
                                         keydisp_create();                                          kdispwin_create();
                                 }                                  }
                         }                          }
                 }                  }
Line 256  framereset(UINT cnt) Line 280  framereset(UINT cnt)
   
         framecnt = 0;          framecnt = 0;
         scrnmng_dispclock();          scrnmng_dispclock();
         keydisp_draw((BYTE)cnt);          kdispwin_draw((BYTE)cnt);
           skbdwin_process();
           debugwin_process();
         toolwin_draw((BYTE)cnt);          toolwin_draw((BYTE)cnt);
           viewer_allreload(FALSE);
         if (np2oscfg.DISPCLK & 3) {          if (np2oscfg.DISPCLK & 3) {
                 if (sysmng_workclockrenewal()) {                  if (sysmng_workclockrenewal()) {
                         sysmng_updatecaption(3);                          sysmng_updatecaption(3);
Line 273  processwait(UINT cnt) Line 300  processwait(UINT cnt)
                 timing_setcount(0);                  timing_setcount(0);
                 framereset(cnt);                  framereset(cnt);
         } else {          } else {
                 usleep(1);                  taskmng_sleep(1);
         }          }
 }  }
   
Line 344  mainloop(void *p) Line 371  mainloop(void *p)
         return TRUE;          return TRUE;
 }  }
   
 #if defined(__GNUC__) && (defined(i386) || defined(__i386__))  #if defined(GCC_CPU_ARCH_IA32)
 int mmxflag;  int mmxflag;
   
 int  int
Line 352  havemmx(void) Line 379  havemmx(void)
 {  {
         int rv;          int rv;
   
   #if defined(GCC_CPU_ARCH_AMD64)
           rv = 1;
   #else   /* !GCC_CPU_ARCH_AMD64 */
         asm volatile (          asm volatile (
                 "pushf;"                  "pushf;"
                 "popl   %%eax;"                  "popl   %%eax;"
Line 372  havemmx(void) Line 402  havemmx(void)
                 "andl   $0x00800000, %0;"                  "andl   $0x00800000, %0;"
         ".nocpuid:"          ".nocpuid:"
                 : "=a" (rv));                  : "=a" (rv));
   #endif /* GCC_CPU_ARCH_AMD64 */
         return rv;          return rv;
 }  }
 #endif  
   #endif /* GCC_CPU_ARCH_IA32 */

Removed from v.1.4  
changed lines
  Added in v.1.20


RetroPC.NET-CVS <cvs@retropc.net>