Skip to content

Latest commit

 

History

History
1059 lines (859 loc) · 30.5 KB

SDL_render_psp.c

File metadata and controls

1059 lines (859 loc) · 30.5 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 5, 2019
Jan 5, 2019
3
Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"
#if SDL_VIDEO_RENDER_PSP
#include "SDL_hints.h"
Oct 4, 2018
Oct 4, 2018
26
#include "SDL_assert.h"
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
#include "../SDL_sysrender.h"
#include <pspkernel.h>
#include <pspdisplay.h>
#include <pspgu.h>
#include <pspgum.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <pspge.h>
#include <stdarg.h>
#include <stdlib.h>
#include <vram.h>
/* PSP renderer implementation, based on the PGE */
#define PSP_SCREEN_WIDTH 480
#define PSP_SCREEN_HEIGHT 272
#define PSP_FRAME_BUFFER_WIDTH 512
#define PSP_FRAME_BUFFER_SIZE (PSP_FRAME_BUFFER_WIDTH*PSP_SCREEN_HEIGHT)
static unsigned int __attribute__((aligned(16))) DisplayList[262144];
#define COL5650(r,g,b,a) ((r>>3) | ((g>>2)<<5) | ((b>>3)<<11))
#define COL5551(r,g,b,a) ((r>>3) | ((g>>3)<<5) | ((b>>3)<<10) | (a>0?0x7000:0))
#define COL4444(r,g,b,a) ((r>>4) | ((g>>4)<<4) | ((b>>4)<<8) | ((a>>4)<<12))
#define COL8888(r,g,b,a) ((r) | ((g)<<8) | ((b)<<16) | ((a)<<24))
typedef struct
{
void* frontbuffer ;
void* backbuffer ;
SDL_bool initialized ;
SDL_bool displayListAvail ;
unsigned int psm ;
unsigned int bpp ;
SDL_bool vsync;
unsigned int currentColor;
int currentBlendMode;
} PSP_RenderData;
typedef struct
{
void *data; /**< Image data. */
unsigned int size; /**< Size of data in bytes. */
unsigned int width; /**< Image width. */
unsigned int height; /**< Image height. */
unsigned int textureWidth; /**< Texture width (power of two). */
unsigned int textureHeight; /**< Texture height (power of two). */
unsigned int bits; /**< Image bits per pixel. */
unsigned int format; /**< Image format - one of ::pgePixelFormat. */
unsigned int pitch;
SDL_bool swizzled; /**< Is image swizzled. */
} PSP_TextureData;
typedef struct
{
float x, y, z;
} VertV;
typedef struct
{
float u, v;
float x, y, z;
} VertTV;
Oct 4, 2018
Oct 4, 2018
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
#define PI 3.14159265358979f
#define radToDeg(x) ((x)*180.f/PI)
#define degToRad(x) ((x)*PI/180.f)
float MathAbs(float x)
{
float result;
__asm__ volatile (
"mtv %1, S000\n"
"vabs.s S000, S000\n"
"mfv %0, S000\n"
: "=r"(result) : "r"(x));
return result;
}
void MathSincos(float r, float *s, float *c)
{
__asm__ volatile (
"mtv %2, S002\n"
"vcst.s S003, VFPU_2_PI\n"
"vmul.s S002, S002, S003\n"
"vrot.p C000, S002, [s, c]\n"
"mfv %0, S000\n"
"mfv %1, S001\n"
: "=r"(*s), "=r"(*c): "r"(r));
}
void Swap(float *a, float *b)
{
float n=*a;
*a = *b;
*b = n;
}
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
/* Return next power of 2 */
static int
TextureNextPow2(unsigned int w)
{
if(w == 0)
return 0;
unsigned int n = 2;
while(w > n)
n <<= 1;
return n;
}
static int
PixelFormatToPSPFMT(Uint32 format)
{
switch (format) {
case SDL_PIXELFORMAT_BGR565:
return GU_PSM_5650;
case SDL_PIXELFORMAT_ABGR1555:
return GU_PSM_5551;
case SDL_PIXELFORMAT_ABGR4444:
return GU_PSM_4444;
case SDL_PIXELFORMAT_ABGR8888:
return GU_PSM_8888;
default:
return GU_PSM_8888;
}
}
void
StartDrawing(SDL_Renderer * renderer)
{
PSP_RenderData *data = (PSP_RenderData *) renderer->driverdata;
if(data->displayListAvail)
return;
sceGuStart(GU_DIRECT, DisplayList);
data->displayListAvail = SDL_TRUE;
}
int
TextureSwizzle(PSP_TextureData *psp_texture)
{
if(psp_texture->swizzled)
return 1;
int bytewidth = psp_texture->textureWidth*(psp_texture->bits>>3);
int height = psp_texture->size / bytewidth;
int rowblocks = (bytewidth>>4);
int rowblocksadd = (rowblocks-1)<<7;
unsigned int blockaddress = 0;
unsigned int *src = (unsigned int*) psp_texture->data;
unsigned char *data = NULL;
data = malloc(psp_texture->size);
int j;
for(j = 0; j < height; j++, blockaddress += 16)
{
unsigned int *block;
block = (unsigned int*)&data[blockaddress];
int i;
for(i = 0; i < rowblocks; i++)
{
*block++ = *src++;
*block++ = *src++;
*block++ = *src++;
*block++ = *src++;
block += 28;
}
if((j & 0x7) == 0x7)
blockaddress += rowblocksadd;
}
free(psp_texture->data);
psp_texture->data = data;
psp_texture->swizzled = SDL_TRUE;
return 1;
}
int TextureUnswizzle(PSP_TextureData *psp_texture)
{
if(!psp_texture->swizzled)
return 1;
int blockx, blocky;
int bytewidth = psp_texture->textureWidth*(psp_texture->bits>>3);
int height = psp_texture->size / bytewidth;
int widthblocks = bytewidth/16;
int heightblocks = height/8;
int dstpitch = (bytewidth - 16)/4;
int dstrow = bytewidth * 8;
unsigned int *src = (unsigned int*) psp_texture->data;
unsigned char *data = NULL;
data = malloc(psp_texture->size);
if(!data)
return 0;
sceKernelDcacheWritebackAll();
int j;
unsigned char *ydst = (unsigned char *)data;
for(blocky = 0; blocky < heightblocks; ++blocky)
{
unsigned char *xdst = ydst;
for(blockx = 0; blockx < widthblocks; ++blockx)
{
unsigned int *block;
block = (unsigned int*)xdst;
for(j = 0; j < 8; ++j)
{
*(block++) = *(src++);
*(block++) = *(src++);
*(block++) = *(src++);
*(block++) = *(src++);
block += dstpitch;
}
xdst += 16;
}
ydst += dstrow;
}
free(psp_texture->data);
psp_texture->data = data;
psp_texture->swizzled = SDL_FALSE;
return 1;
}
static void
PSP_WindowEvent(SDL_Renderer * renderer, const SDL_WindowEvent *event)
{
}
static int
PSP_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
/* PSP_RenderData *renderdata = (PSP_RenderData *) renderer->driverdata; */
PSP_TextureData* psp_texture = (PSP_TextureData*) SDL_calloc(1, sizeof(*psp_texture));
if(!psp_texture)
return -1;
psp_texture->swizzled = SDL_FALSE;
psp_texture->width = texture->w;
psp_texture->height = texture->h;
psp_texture->textureHeight = TextureNextPow2(texture->h);
psp_texture->textureWidth = TextureNextPow2(texture->w);
psp_texture->format = PixelFormatToPSPFMT(texture->format);
switch(psp_texture->format)
{
case GU_PSM_5650:
case GU_PSM_5551:
case GU_PSM_4444:
psp_texture->bits = 16;
break;
case GU_PSM_8888:
psp_texture->bits = 32;
break;
default:
return -1;
}
psp_texture->pitch = psp_texture->textureWidth * SDL_BYTESPERPIXEL(texture->format);
psp_texture->size = psp_texture->textureHeight*psp_texture->pitch;
psp_texture->data = SDL_calloc(1, psp_texture->size);
if(!psp_texture->data)
{
SDL_free(psp_texture);
return SDL_OutOfMemory();
}
texture->driverdata = psp_texture;
return 0;
}
Apr 1, 2016
Apr 1, 2016
350
351
352
353
354
static int
PSP_SetTextureColorMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
return SDL_Unsupported();
}
355
356
357
358
359
void
TextureActivate(SDL_Texture * texture)
{
PSP_TextureData *psp_texture = (PSP_TextureData *) texture->driverdata;
May 8, 2018
May 8, 2018
360
int scaleMode = (texture->scaleMode == SDL_ScaleModeNearest) ? GU_NEAREST : GU_LINEAR;
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/* Swizzling is useless with small textures. */
if (texture->w >= 16 || texture->h >= 16)
{
TextureSwizzle(psp_texture);
}
sceGuEnable(GU_TEXTURE_2D);
sceGuTexWrap(GU_REPEAT, GU_REPEAT);
sceGuTexMode(psp_texture->format, 0, 0, psp_texture->swizzled);
sceGuTexFilter(scaleMode, scaleMode); /* GU_NEAREST good for tile-map */
/* GU_LINEAR good for scaling */
sceGuTexImage(0, psp_texture->textureWidth, psp_texture->textureHeight, psp_texture->textureWidth, psp_texture->data);
sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGBA);
}
static int
PSP_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels, int pitch)
{
/* PSP_TextureData *psp_texture = (PSP_TextureData *) texture->driverdata; */
const Uint8 *src;
Uint8 *dst;
int row, length,dpitch;
src = pixels;
PSP_LockTexture(renderer, texture,rect,(void **)&dst, &dpitch);
length = rect->w * SDL_BYTESPERPIXEL(texture->format);
if (length == pitch && length == dpitch) {
SDL_memcpy(dst, src, length*rect->h);
} else {
for (row = 0; row < rect->h; ++row) {
SDL_memcpy(dst, src, length);
src += pitch;
dst += dpitch;
}
}
sceKernelDcacheWritebackAll();
return 0;
}
static int
PSP_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, void **pixels, int *pitch)
{
PSP_TextureData *psp_texture = (PSP_TextureData *) texture->driverdata;
*pixels =
(void *) ((Uint8 *) psp_texture->data + rect->y * psp_texture->pitch +
rect->x * SDL_BYTESPERPIXEL(texture->format));
*pitch = psp_texture->pitch;
return 0;
}
static void
PSP_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
PSP_TextureData *psp_texture = (PSP_TextureData *) texture->driverdata;
SDL_Rect rect;
/* We do whole texture updates, at least for now */
rect.x = 0;
rect.y = 0;
rect.w = texture->w;
rect.h = texture->h;
PSP_UpdateTexture(renderer, texture, &rect, psp_texture->data, psp_texture->pitch);
}
Dec 22, 2019
Dec 22, 2019
431
432
433
434
435
436
static void
PSP_SetTextureScaleMode(SDL_Renderer * renderer, SDL_Texture * texture, SDL_ScaleMode scaleMode)
{
/* Nothing to do because TextureActivate takes care of it */
}
437
438
439
440
441
442
443
static int
PSP_SetRenderTarget(SDL_Renderer * renderer, SDL_Texture * texture)
{
return 0;
}
static int
Oct 4, 2018
Oct 4, 2018
444
PSP_QueueSetViewport(SDL_Renderer * renderer, SDL_RenderCommand *cmd)
Oct 4, 2018
Oct 4, 2018
446
return 0; /* nothing to do in this backend. */
Oct 4, 2018
Oct 4, 2018
450
PSP_QueueDrawPoints(SDL_Renderer * renderer, SDL_RenderCommand *cmd, const SDL_FPoint * points, int count)
Oct 4, 2018
Oct 4, 2018
452
VertV *verts = (VertV *) SDL_AllocateRenderVertices(renderer, count * sizeof (VertV), 4, &cmd->data.draw.first);
Mar 19, 2019
Mar 19, 2019
453
int i;
Oct 4, 2018
Oct 4, 2018
455
456
457
if (!verts) {
return -1;
}
Oct 4, 2018
Oct 4, 2018
459
cmd->data.draw.count = count;
Oct 4, 2018
Oct 4, 2018
461
462
463
464
for (i = 0; i < count; i++, verts++, points++) {
verts->x = points->x;
verts->y = points->y;
verts->z = 0.0f;
465
466
467
468
469
470
}
return 0;
}
static int
Oct 4, 2018
Oct 4, 2018
471
PSP_QueueFillRects(SDL_Renderer * renderer, SDL_RenderCommand *cmd, const SDL_FRect * rects, int count)
Oct 4, 2018
Oct 4, 2018
473
VertV *verts = (GLfloat *) SDL_AllocateRenderVertices(renderer, count * 2 * sizeof (VertV), 4, &cmd->data.draw.first);
Mar 19, 2019
Mar 19, 2019
474
int i;
Oct 4, 2018
Oct 4, 2018
476
477
if (!verts) {
return -1;
Oct 4, 2018
Oct 4, 2018
480
481
cmd->data.draw.count = count;
for (i = 0; i < count; i++, rects++) {
482
const SDL_FRect *rect = &rects[i];
Oct 4, 2018
Oct 4, 2018
483
484
485
486
487
488
489
490
491
verts->x = rect->x;
verts->y = rect->y;
verts->z = 0.0f;
verts++;
verts->x = rect->x + rect->w;
verts->y = rect->y + rect->h;
verts->z = 0.0f;
verts++;
492
493
494
495
496
497
}
return 0;
}
static int
Oct 4, 2018
Oct 4, 2018
498
499
PSP_QueueCopy(SDL_Renderer * renderer, SDL_RenderCommand *cmd, SDL_Texture * texture,
const SDL_Rect * srcrect, const SDL_FRect * dstrect)
Oct 4, 2018
Oct 4, 2018
501
502
503
504
505
VertTV *verts;
const float x = dstrect->x;
const float y = dstrect->y;
const float width = dstrect->w;
const float height = dstrect->h;
Oct 4, 2018
Oct 4, 2018
507
508
509
510
const float u0 = srcrect->x;
const float v0 = srcrect->y;
const float u1 = srcrect->x + srcrect->w;
const float v1 = srcrect->y + srcrect->h;
511
512
513
if((MathAbs(u1) - MathAbs(u0)) < 64.0f)
{
Oct 4, 2018
Oct 4, 2018
514
515
516
517
verts = (VertTV *) SDL_AllocateRenderVertices(renderer, 2 * sizeof (VertTV), 4, &cmd->data.draw.first);
if (!verts) {
return -1;
}
Oct 4, 2018
Oct 4, 2018
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
cmd->data.draw.count = 1;
verts->u = u0;
verts->v = v0;
verts->x = x;
verts->y = y;
verts->z = 0;
verts++;
verts->u = u1;
verts->v = v1;
verts->x = x + width;
verts->y = y + height;
verts->z = 0;
verts++;
534
535
536
537
538
539
}
else
{
float start, end;
float curU = u0;
float curX = x;
Oct 4, 2018
Oct 4, 2018
540
541
542
543
const float endX = x + width;
const float slice = 64.0f;
const size_t count = SDL_ceilf(width / slice);
size_t i;
544
545
546
547
548
float ustep = (u1 - u0)/width * slice;
if(ustep < 0.0f)
ustep = -ustep;
Oct 4, 2018
Oct 4, 2018
549
550
551
552
553
554
555
556
557
cmd->data.draw.count = count;
verts = (VertTV *) SDL_AllocateRenderVertices(renderer, count * sizeof (VertTV), 4, &cmd->data.draw.first);
if (!verts) {
return -1;
}
for(i = 0, start = 0, end = width; i < count; i++, start += slice)
Oct 4, 2018
Oct 4, 2018
559
560
const float polyWidth = ((curX + slice) > endX) ? (endX - curX) : slice;
const float sourceWidth = ((curU + ustep) > u1) ? (u1 - curU) : ustep;
Oct 4, 2018
Oct 4, 2018
562
SDL_assert(start < end);
Oct 4, 2018
Oct 4, 2018
564
565
566
567
568
verts->u = curU;
verts->v = v0;
verts->x = curX;
verts->y = y;
verts->z = 0;
569
570
571
572
curU += sourceWidth;
curX += polyWidth;
Oct 4, 2018
Oct 4, 2018
573
574
575
576
577
verts->u = curU;
verts->v = v1;
verts->x = curX;
verts->y = (y + height);
verts->z = 0;
578
579
580
581
582
583
584
}
}
return 0;
}
static int
Oct 4, 2018
Oct 4, 2018
585
586
587
PSP_QueueCopyEx(SDL_Renderer * renderer, SDL_RenderCommand *cmd, SDL_Texture * texture,
const SDL_Rect * srcrect, const SDL_FRect * dstrect,
const double angle, const SDL_FPoint *center, const SDL_RendererFlip flip)
Oct 4, 2018
Oct 4, 2018
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
VertTV *verts = (VertTV *) SDL_AllocateRenderVertices(renderer, 4 * sizeof (VertTV), 4, &cmd->data.draw.first);
const float centerx = center->x;
const float centery = center->y;
const float x = dstrect->x + centerx;
const float y = dstrect->y + centery;
const float width = dstrect->w - centerx;
const float height = dstrect->h - centery;
float s, c;
float u0 = srcrect->x;
float v0 = srcrect->y;
float u1 = srcrect->x + srcrect->w;
float v1 = srcrect->y + srcrect->h;
if (!verts) {
return -1;
}
Oct 4, 2018
Oct 4, 2018
608
cmd->data.draw.count = 1;
Oct 4, 2018
Oct 4, 2018
610
MathSincos(degToRad(angle), &s, &c);
Oct 4, 2018
Oct 4, 2018
612
613
614
615
const float cw = c * width;
const float sw = s * width;
const float ch = c * height;
const float sh = s * height;
Oct 4, 2018
Oct 4, 2018
617
618
619
if (flip & SDL_FLIP_VERTICAL) {
Swap(&v0, &v1);
}
Oct 4, 2018
Oct 4, 2018
621
622
623
if (flip & SDL_FLIP_HORIZONTAL) {
Swap(&u0, &u1);
}
Oct 4, 2018
Oct 4, 2018
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
verts->u = u0;
verts->v = v0;
verts->x = x - cw + sh;
verts->y = y - sw - ch;
verts->z = 0;
verts++;
verts->u = u0;
verts->v = v1;
verts->x = x - cw - sh;
verts->y = y - sw + ch;
verts->z = 0;
verts++;
verts->u = u1;
verts->v = v1;
verts->x = x + cw - sh;
verts->y = y + sw + ch;
verts->z = 0;
verts++;
verts->u = u1;
verts->v = v0;
verts->x = x + cw + sh;
verts->y = y + sw - ch;
verts->z = 0;
verts++;
Oct 4, 2018
Oct 4, 2018
653
654
return 0;
}
Oct 4, 2018
Oct 4, 2018
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
static void
PSP_SetBlendMode(SDL_Renderer * renderer, int blendMode)
{
PSP_RenderData *data = (PSP_RenderData *) renderer->driverdata;
if (blendMode != data-> currentBlendMode) {
switch (blendMode) {
case SDL_BLENDMODE_NONE:
sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGBA);
sceGuDisable(GU_BLEND);
break;
case SDL_BLENDMODE_BLEND:
sceGuTexFunc(GU_TFX_MODULATE , GU_TCC_RGBA);
sceGuEnable(GU_BLEND);
sceGuBlendFunc(GU_ADD, GU_SRC_ALPHA, GU_ONE_MINUS_SRC_ALPHA, 0, 0 );
break;
case SDL_BLENDMODE_ADD:
sceGuTexFunc(GU_TFX_MODULATE , GU_TCC_RGBA);
sceGuEnable(GU_BLEND);
sceGuBlendFunc(GU_ADD, GU_SRC_ALPHA, GU_FIX, 0, 0x00FFFFFF );
break;
case SDL_BLENDMODE_MOD:
sceGuTexFunc(GU_TFX_MODULATE , GU_TCC_RGBA);
sceGuEnable(GU_BLEND);
Jan 16, 2020
Jan 16, 2020
679
680
681
682
683
684
sceGuBlendFunc(GU_ADD, GU_FIX, GU_SRC_COLOR, 0, 0);
break;
case SDL_BLENDMODE_MUL:
sceGuTexFunc(GU_TFX_MODULATE , GU_TCC_RGBA);
sceGuEnable(GU_BLEND);
sceGuBlendFunc(GU_ADD, GU_DST_COLOR, GU_ONE_MINUS_SRC_ALPHA, 0, 0);
Oct 4, 2018
Oct 4, 2018
685
686
687
break;
}
data->currentBlendMode = blendMode;
Oct 4, 2018
Oct 4, 2018
689
}
Oct 4, 2018
Oct 4, 2018
691
692
693
694
695
static int
PSP_RunCommandQueue(SDL_Renderer * renderer, SDL_RenderCommand *cmd, void *vertices, size_t vertsize)
{
PSP_RenderData *data = (PSP_RenderData *) renderer->driverdata;
size_t i;
Oct 4, 2018
Oct 4, 2018
697
StartDrawing(renderer);
Oct 4, 2018
Oct 4, 2018
699
700
701
702
703
704
705
706
707
708
709
/* note that before the renderer interface change, this would do extrememly small
batches with sceGuGetMemory()--a few vertices at a time--and it's not clear that
this won't fail if you try to push 100,000 draw calls in a single batch.
I don't know what the limits on PSP hardware are. It might be useful to have
rendering backends report a reasonable maximum, so the higher level can flush
if we appear to be exceeding that. */
Uint8 *gpumem = (Uint8 *) sceGuGetMemory(vertsize);
if (!gpumem) {
return SDL_SetError("Couldn't obtain a %d-byte vertex buffer!", (int) vertsize);
}
SDL_memcpy(gpumem, vertices, vertsize);
Oct 4, 2018
Oct 4, 2018
711
712
713
714
715
while (cmd) {
switch (cmd->command) {
case SDL_RENDERCMD_SETDRAWCOLOR: {
break; /* !!! FIXME: we could cache drawstate like color */
}
Oct 4, 2018
Oct 4, 2018
717
718
719
720
721
722
723
724
case SDL_RENDERCMD_SETVIEWPORT: {
SDL_Rect *viewport = &data->drawstate.viewport;
if (SDL_memcmp(viewport, &cmd->data.viewport.rect, sizeof (SDL_Rect)) != 0) {
SDL_memcpy(viewport, &cmd->data.viewport.rect, sizeof (SDL_Rect));
data->drawstate.viewport_dirty = SDL_TRUE;
}
break;
}
Oct 4, 2018
Oct 4, 2018
726
727
728
729
730
731
732
733
734
735
736
737
case SDL_RENDERCMD_SETCLIPRECT: {
const SDL_Rect *rect = &cmd->data.cliprect.rect;
if (data->drawstate.cliprect_enabled != cmd->data.cliprect.enabled) {
data->drawstate.cliprect_enabled = cmd->data.cliprect.enabled;
data->drawstate.cliprect_enabled_dirty = SDL_TRUE;
}
if (SDL_memcmp(&data->drawstate.cliprect, rect, sizeof (SDL_Rect)) != 0) {
SDL_memcpy(&data->drawstate.cliprect, rect, sizeof (SDL_Rect));
data->drawstate.cliprect_dirty = SDL_TRUE;
}
break;
}
Oct 4, 2018
Oct 4, 2018
739
740
741
742
743
744
745
746
747
748
749
750
case SDL_RENDERCMD_CLEAR: {
const Uint8 r = cmd->data.color.r;
const Uint8 g = cmd->data.color.g;
const Uint8 b = cmd->data.color.b;
const Uint8 a = cmd->data.color.a;
const Uint32 color = ((a << 24) | (b << 16) | (g << 8) | r);
/* !!! FIXME: we could cache drawstate like clear color */
sceGuClearColor(color);
sceGuClearDepth(0);
sceGuClear(GU_COLOR_BUFFER_BIT|GU_DEPTH_BUFFER_BIT|GU_FAST_CLEAR_BIT);
break;
}
Oct 4, 2018
Oct 4, 2018
752
753
754
case SDL_RENDERCMD_DRAW_POINTS: {
const size_t count = cmd->data.draw.count;
const VertV *verts = (VertV *) (gpumem + cmd->data.draw.first);
Dec 29, 2018
Dec 29, 2018
755
756
757
758
const Uint8 r = cmd->data.draw.r;
const Uint8 g = cmd->data.draw.g;
const Uint8 b = cmd->data.draw.b;
const Uint8 a = cmd->data.draw.a;
Oct 4, 2018
Oct 4, 2018
759
760
761
762
763
764
765
766
767
768
const Uint32 color = ((a << 24) | (b << 16) | (g << 8) | r);
/* !!! FIXME: we could cache draw state like color, texturing, etc */
sceGuColor(color);
sceGuDisable(GU_TEXTURE_2D);
sceGuShadeModel(GU_FLAT);
sceGuDrawArray(GU_POINTS, GU_VERTEX_32BITF|GU_TRANSFORM_2D, count, 0, verts);
sceGuShadeModel(GU_SMOOTH);
sceGuEnable(GU_TEXTURE_2D);
break;
}
Oct 4, 2018
Oct 4, 2018
770
771
772
case SDL_RENDERCMD_DRAW_LINES: {
const size_t count = cmd->data.draw.count;
const VertV *verts = (VertV *) (gpumem + cmd->data.draw.first);
Dec 29, 2018
Dec 29, 2018
773
774
775
776
const Uint8 r = cmd->data.draw.r;
const Uint8 g = cmd->data.draw.g;
const Uint8 b = cmd->data.draw.b;
const Uint8 a = cmd->data.draw.a;
Oct 4, 2018
Oct 4, 2018
777
778
779
780
781
782
783
784
785
786
const Uint32 color = ((a << 24) | (b << 16) | (g << 8) | r);
/* !!! FIXME: we could cache draw state like color, texturing, etc */
sceGuColor(color);
sceGuDisable(GU_TEXTURE_2D);
sceGuShadeModel(GU_FLAT);
sceGuDrawArray(GU_LINE_STRIP, GU_VERTEX_32BITF|GU_TRANSFORM_2D, count, 0, verts);
sceGuShadeModel(GU_SMOOTH);
sceGuEnable(GU_TEXTURE_2D);
break;
}
Oct 4, 2018
Oct 4, 2018
788
789
790
case SDL_RENDERCMD_FILL_RECTS: {
const size_t count = cmd->data.draw.count;
const VertV *verts = (VertV *) (gpumem + cmd->data.draw.first);
Dec 29, 2018
Dec 29, 2018
791
792
793
794
const Uint8 r = cmd->data.draw.r;
const Uint8 g = cmd->data.draw.g;
const Uint8 b = cmd->data.draw.b;
const Uint8 a = cmd->data.draw.a;
Oct 4, 2018
Oct 4, 2018
795
796
797
798
799
800
801
802
803
804
const Uint32 color = ((a << 24) | (b << 16) | (g << 8) | r);
/* !!! FIXME: we could cache draw state like color, texturing, etc */
sceGuColor(color);
sceGuDisable(GU_TEXTURE_2D);
sceGuShadeModel(GU_FLAT);
sceGuDrawArray(GU_SPRITES, GU_VERTEX_32BITF|GU_TRANSFORM_2D, 2 * count, 0, verts);
sceGuShadeModel(GU_SMOOTH);
sceGuEnable(GU_TEXTURE_2D);
break;
}
Oct 4, 2018
Oct 4, 2018
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
case SDL_RENDERCMD_COPY: {
const size_t count = cmd->data.draw.count;
const VertTV *verts = (VertTV *) (gpumem + cmd->data.draw.first);
const Uint8 alpha = cmd->data.draw.a;
TextureActivate(cmd->data.draw.texture);
PSP_SetBlendMode(renderer, cmd->data.draw.blend);
if(alpha != 255) { /* !!! FIXME: is this right? */
sceGuTexFunc(GU_TFX_MODULATE, GU_TCC_RGBA);
sceGuColor(GU_RGBA(255, 255, 255, alpha));
} else {
sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGBA);
sceGuColor(0xFFFFFFFF);
}
sceGuDrawArray(GU_SPRITES, GU_TEXTURE_32BITF|GU_VERTEX_32BITF|GU_TRANSFORM_2D, 2 * count, 0, verts);
if(alpha != 255) {
sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGBA);
}
break;
}
Oct 4, 2018
Oct 4, 2018
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
case SDL_RENDERCMD_COPY_EX: {
const VertTV *verts = (VertTV *) (gpumem + cmd->data.draw.first);
const Uint8 alpha = cmd->data.draw.a;
TextureActivate(cmd->data.draw.texture);
PSP_SetBlendMode(renderer, cmd->data.draw.blend);
if(alpha != 255) { /* !!! FIXME: is this right? */
sceGuTexFunc(GU_TFX_MODULATE, GU_TCC_RGBA);
sceGuColor(GU_RGBA(255, 255, 255, alpha));
} else {
sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGBA);
sceGuColor(0xFFFFFFFF);
}
sceGuDrawArray(GU_TRIANGLE_FAN, GU_TEXTURE_32BITF|GU_VERTEX_32BITF|GU_TRANSFORM_2D, 4, 0, verts);
if(alpha != 255) {
sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGBA);
}
break;
}
case SDL_RENDERCMD_NO_OP:
break;
}
Oct 4, 2018
Oct 4, 2018
855
856
cmd = cmd->next;
}
857
858
859
860
return 0;
}
Oct 4, 2018
Oct 4, 2018
861
862
863
864
865
866
867
static int
PSP_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Uint32 pixel_format, void * pixels, int pitch)
{
return SDL_Unsupported();
}
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
static void
PSP_RenderPresent(SDL_Renderer * renderer)
{
PSP_RenderData *data = (PSP_RenderData *) renderer->driverdata;
if(!data->displayListAvail)
return;
data->displayListAvail = SDL_FALSE;
sceGuFinish();
sceGuSync(0,0);
/* if(data->vsync) */
sceDisplayWaitVblankStart();
data->backbuffer = data->frontbuffer;
data->frontbuffer = vabsptr(sceGuSwapBuffers());
}
static void
PSP_DestroyTexture(SDL_Renderer * renderer, SDL_Texture * texture)
{
PSP_RenderData *renderdata = (PSP_RenderData *) renderer->driverdata;
PSP_TextureData *psp_texture = (PSP_TextureData *) texture->driverdata;
if (renderdata == 0)
return;
if(psp_texture == 0)
return;
SDL_free(psp_texture->data);
SDL_free(psp_texture);
texture->driverdata = NULL;
}
static void
PSP_DestroyRenderer(SDL_Renderer * renderer)
{
PSP_RenderData *data = (PSP_RenderData *) renderer->driverdata;
if (data) {
if (!data->initialized)
return;
StartDrawing(renderer);
sceGuTerm();
/* vfree(data->backbuffer); */
/* vfree(data->frontbuffer); */
data->initialized = SDL_FALSE;
data->displayListAvail = SDL_FALSE;
SDL_free(data);
}
SDL_free(renderer);
}
Oct 4, 2018
Oct 4, 2018
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
SDL_Renderer *
PSP_CreateRenderer(SDL_Window * window, Uint32 flags)
{
SDL_Renderer *renderer;
PSP_RenderData *data;
int pixelformat;
renderer = (SDL_Renderer *) SDL_calloc(1, sizeof(*renderer));
if (!renderer) {
SDL_OutOfMemory();
return NULL;
}
data = (PSP_RenderData *) SDL_calloc(1, sizeof(*data));
if (!data) {
PSP_DestroyRenderer(renderer);
SDL_OutOfMemory();
return NULL;
}
renderer->WindowEvent = PSP_WindowEvent;
renderer->CreateTexture = PSP_CreateTexture;
renderer->SetTextureColorMod = PSP_SetTextureColorMod;
renderer->UpdateTexture = PSP_UpdateTexture;
renderer->LockTexture = PSP_LockTexture;
renderer->UnlockTexture = PSP_UnlockTexture;
Dec 22, 2019
Dec 22, 2019
952
renderer->SetTextureScaleMode = PSP_SetTextureScaleMode;
Oct 4, 2018
Oct 4, 2018
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
renderer->SetRenderTarget = PSP_SetRenderTarget;
renderer->QueueSetViewport = PSP_QueueSetViewport;
renderer->QueueSetDrawColor = PSP_QueueSetViewport; /* SetViewport and SetDrawColor are (currently) no-ops. */
renderer->QueueDrawPoints = PSP_QueueDrawPoints;
renderer->QueueDrawLines = PSP_QueueDrawPoints; /* lines and points queue vertices the same way. */
renderer->QueueFillRects = PSP_QueueFillRects;
renderer->QueueCopy = PSP_QueueCopy;
renderer->QueueCopyEx = PSP_QueueCopyEx;
renderer->RunCommandQueue = PSP_RunCommandQueue;
renderer->RenderReadPixels = PSP_RenderReadPixels;
renderer->RenderPresent = PSP_RenderPresent;
renderer->DestroyTexture = PSP_DestroyTexture;
renderer->DestroyRenderer = PSP_DestroyRenderer;
renderer->info = PSP_RenderDriver.info;
renderer->info.flags = (SDL_RENDERER_ACCELERATED | SDL_RENDERER_TARGETTEXTURE);
renderer->driverdata = data;
renderer->window = window;
if (data->initialized != SDL_FALSE)
return 0;
data->initialized = SDL_TRUE;
if (flags & SDL_RENDERER_PRESENTVSYNC) {
data->vsync = SDL_TRUE;
} else {
data->vsync = SDL_FALSE;
}
pixelformat=PixelFormatToPSPFMT(SDL_GetWindowPixelFormat(window));
switch(pixelformat)
{
case GU_PSM_4444:
case GU_PSM_5650:
case GU_PSM_5551:
data->frontbuffer = (unsigned int *)(PSP_FRAME_BUFFER_SIZE<<1);
data->backbuffer = (unsigned int *)(0);
data->bpp = 2;
data->psm = pixelformat;
break;
default:
data->frontbuffer = (unsigned int *)(PSP_FRAME_BUFFER_SIZE<<2);
data->backbuffer = (unsigned int *)(0);
data->bpp = 4;
data->psm = GU_PSM_8888;
break;
}
sceGuInit();