forked from SKGleba/modoru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scr_printf.c
318 lines (274 loc) · 6.34 KB
/
scr_printf.c
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
* PSP Software Development Kit - http://www.psvdev.org
* -----------------------------------------------------------------------
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
*
* scr_printf.c - Debug screen functions.
*
* Copyright (c) 2005 Marcus R. Brown <[email protected]>
* Copyright (c) 2005 James Forshaw <[email protected]>
* Copyright (c) 2005 John Kelley <[email protected]>
*
* $Id: scr_printf.c 2450 2009-01-04 23:53:02Z oopo $
*/
#include <vitasdk.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include "pspdebug.h"
#define PSV_SCREEN_WIDTH 960
#define PSV_SCREEN_HEIGHT 544
#define PSV_LINE_SIZE 960
/* baseado nas libs do Duke... */
void _psvDebugScreenClearLine( int Y);
static int X = 0, Y = 0;
static int MX=68, MY=34;
static uint32_t bg_col = 0, fg_col = 0xFFFFFFFF;
static int bg_enable = 1;
static void* g_vram_base = NULL;
static int g_vram_offset = 0;
static int g_vram_mode = SCE_DISPLAY_PIXELFORMAT_A8B8G8R8;
static int init = 0;
static int clearline_en = 1;
static void clear_screen_32(uint32_t color)
{
int x;
uint32_t *vram = g_vram_base;
vram += (g_vram_offset>>2);
for(x = 0; x < (PSV_LINE_SIZE * PSV_SCREEN_HEIGHT); x++)
{
*vram++ = color;
}
}
static void clear_screen(uint32_t color)
{
if(g_vram_mode == SCE_DISPLAY_PIXELFORMAT_A8B8G8R8)
{
clear_screen_32(color);
}
}
#define ALIGN(x, align) (((x) + ((align) - 1)) & ~((align) - 1))
void psvDebugScreenInitEx(void *vram_base, int mode, int setup)
{
switch(mode)
{
case SCE_DISPLAY_PIXELFORMAT_A8B8G8R8:
break;
default: mode = SCE_DISPLAY_PIXELFORMAT_A8B8G8R8;
};
X = Y = 0;
/* Place vram in uncached memory */
if(vram_base == NULL)
{
int block = sceKernelAllocMemBlock("", SCE_KERNEL_MEMBLOCK_TYPE_USER_CDRAM_RW, ALIGN(PSV_LINE_SIZE * PSV_SCREEN_HEIGHT * 4, 256 * 1024), NULL);
sceKernelGetMemBlockBase(block, &vram_base);
}
g_vram_base = vram_base;
g_vram_offset = 0;
g_vram_mode = mode;
if(setup)
{
SceDisplayFrameBuf framebuf;
framebuf.size = sizeof(SceDisplayFrameBuf);
framebuf.base = (void *)g_vram_base;
framebuf.pitch = PSV_LINE_SIZE;
framebuf.width = PSV_SCREEN_WIDTH;
framebuf.height = PSV_SCREEN_HEIGHT;
framebuf.pixelformat = mode;
sceDisplaySetFrameBuf(&framebuf, 1);
}
clear_screen(bg_col);
init = 1;
}
void psvDebugScreenInit()
{
X = Y = 0;
psvDebugScreenInitEx(NULL, SCE_DISPLAY_PIXELFORMAT_A8B8G8R8, 1);
}
void psvDebugScreenEnableBackColor(int enable)
{
bg_enable = enable;
}
void psvDebugScreenSetBackColor(uint32_t colour)
{
bg_col = colour;
}
void psvDebugScreenSetTextColor(uint32_t colour)
{
fg_col = colour;
}
void psvDebugScreenSetColorMode(int mode)
{
switch(mode)
{
case SCE_DISPLAY_PIXELFORMAT_A8B8G8R8:
break;
default: mode = SCE_DISPLAY_PIXELFORMAT_A8B8G8R8;
};
g_vram_mode = mode;
}
int psvDebugScreenGetX()
{
return X;
}
int psvDebugScreenGetY()
{
return Y;
}
void psvDebugScreenClear()
{
int y;
if(!init)
{
return;
}
for(y=0;y<MY;y++)
{
_psvDebugScreenClearLine(y);
}
psvDebugScreenSetXY(0,0);
clear_screen(bg_col);
}
void psvDebugScreenSetXY(int x, int y)
{
if( x<MX && x>=0 ) X=x;
if( y<MY && y>=0 ) Y=y;
}
void psvDebugScreenSetOffset(int offset)
{
g_vram_offset = offset;
}
void psvDebugScreenSetBase(uint32_t* base)
{
g_vram_base = base;
}
extern uint8_t msx[];
static void debug_put_char_32(int x, int y, uint32_t color, uint32_t bgc, uint8_t ch)
{
int i,j, l;
uint8_t *font;
uint32_t *vram_ptr;
uint32_t *vram;
if(!init)
{
return;
}
x *= 2;
y *= 2;
vram = g_vram_base;
vram += (g_vram_offset >> 2) + x;
vram += (y * PSV_LINE_SIZE);
font = &msx[ (int)ch * 8];
for (i=l=0; i < 8; i++, l+= 8, font++)
{
vram_ptr = vram;
for (j=0; j < 8; j++)
{
if ((*font & (128 >> j))) {
vram_ptr[0] = color;
vram_ptr[1] = color;
vram_ptr[0 + PSV_LINE_SIZE] = color;
vram_ptr[1 + PSV_LINE_SIZE] = color;
} else if(bg_enable) {
vram_ptr[0] = bgc;
vram_ptr[1] = bgc;
vram_ptr[0 + PSV_LINE_SIZE] = bgc;
vram_ptr[1 + PSV_LINE_SIZE] = bgc;
}
vram_ptr += 2;
}
vram += 2 * PSV_LINE_SIZE;
}
}
void
psvDebugScreenPutChar( int x, int y, uint32_t color, uint8_t ch)
{
if(g_vram_mode == SCE_DISPLAY_PIXELFORMAT_A8B8G8R8)
{
debug_put_char_32(x, y, color, bg_col, ch);
}
}
void _psvDebugScreenClearLine( int Y)
{
if(clearline_en)
{
int i;
if(bg_enable)
{
for (i=0; i < MX; i++)
{
psvDebugScreenPutChar( i*7 , Y * 8, bg_col, 219);
}
}
}
return;
}
void psvDebugScreenClearLineEnable(void)
{
clearline_en = 1;
return;
}
void psvDebugScreenClearLineDisable(void)
{
clearline_en = 0;
return;
}
/* Print non-nul terminated strings */
int psvDebugScreenPrintData(const char *buff, int size)
{
int i;
int j;
char c;
if(!init)
{
return 0;
}
for (i = 0; i < size; i++)
{
c = buff[i];
switch (c)
{
case '\r':
X = 0;
break;
case '\n':
X = 0;
Y ++;
if (Y == MY)
Y = 0;
_psvDebugScreenClearLine(Y);
break;
case '\t':
for (j = 0; j < 5; j++) {
psvDebugScreenPutChar( X*7 , Y * 8, fg_col, ' ');
X++;
}
break;
default:
psvDebugScreenPutChar( X*7 , Y * 8, fg_col, c);
X++;
if (X == MX)
{
X = 0;
Y++;
if (Y == MY)
Y = 0;
_psvDebugScreenClearLine(Y);
}
}
}
return i;
}
int psvDebugScreenPuts(const char *str)
{
return psvDebugScreenPrintData(str, sceClibStrnlen(str, 2048));
}
void psvDebugScreenPrintf(const char *format, ...)
{
va_list opt;
char buff[2048];
int bufsz;
va_start(opt, format);
bufsz = sceClibVsnprintf( buff, (size_t) sizeof(buff), format, opt);
(void) psvDebugScreenPrintData(buff, bufsz);
}