Welcome to mirror list, hosted at ThFree Co, Russian Federation.

log.c « win « drivers - github.com/ClusterM/fceux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 732f387c79a63b2bc5e46e96b40a76ad5eedff6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#include <stdlib.h>
#include "common.h"

static HWND logwin=0;

static char *logtext[64];
static int logcount=0;

static void RedoText(void)
{
 char textbuf[65536];
 int x;

 textbuf[0]=0;
 if(logcount>=64)
 {
  x=logcount&63;
  for(;;)
  {
   strcat(textbuf,logtext[x]);
   x=(x+1)&63;
   if(x==(logcount&63)) break;
  }
 }
 else
  for(x=0;x<logcount;x++)
  {
   strcat(textbuf,logtext[x]);
  }
 SetDlgItemText(logwin,100,textbuf);
 SendDlgItemMessage(logwin,100,EM_LINESCROLL,0,200);
}

static BOOL CALLBACK LogCon(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
  DSMFix(uMsg);
  switch(uMsg)
  {
   case WM_INITDIALOG:logwin=hwndDlg;
                      RedoText();break;
   case WM_COMMAND:
                   if(HIWORD(wParam)==BN_CLICKED)
                   {
                    DestroyWindow(hwndDlg);
                    logwin=0;
                   }
                   break;

  }
 return 0;
}

void MakeLogWindow(void)
{
 if(!logwin)
  CreateDialog(fceu_hInstance,"MESSAGELOG",0,LogCon);
}

void AddLogText(char *text,int newline)
{
 int x;
 char *t;

 if(logcount>=64) free(logtext[logcount&63]);

 x=0;
 t=text;
 while(*t)
 {
  if(*t=='\n') x++;
  t++;
 }

 if(!(logtext[logcount&63]=malloc(strlen(text)+1+x+newline*2)))
  return;

 t=logtext[logcount&63];

 while(*text)
 {
  if(*text=='\n')
  {
   *t='\r';
   t++;
  }
  *t=*text;
  t++;
  text++;
 }
 if(newline)
 {
  *t='\r';
  t++;
  *t='\n';
  t++;
 }
 *t=0;
 logcount++;
 if(logwin)
  RedoText();
}

void FCEUD_Message(char *text)
{
 AddLogText(text,0);
}