-
Notifications
You must be signed in to change notification settings - Fork 0
/
screenshot.cpp
259 lines (202 loc) · 7.19 KB
/
screenshot.cpp
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
/*******************************************************************************
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
(c) Copyright 1996 - 2002 Gary Henderson ([email protected]) and
Jerremy Koot ([email protected])
(c) Copyright 2001 - 2004 John Weidman ([email protected])
(c) Copyright 2002 - 2004 Brad Jorsch ([email protected]),
funkyass ([email protected]),
Joel Yliluoma (http://iki.fi/bisqwit/)
Kris Bleakley ([email protected]),
Matthew Kendora,
Nach ([email protected]),
Peter Bortas ([email protected]) and
zones ([email protected])
C4 x86 assembler and some C emulation code
(c) Copyright 2000 - 2003 zsKnight ([email protected]),
_Demo_ ([email protected]), and Nach
C4 C++ code
(c) Copyright 2003 Brad Jorsch
DSP-1 emulator code
(c) Copyright 1998 - 2004 Ivar ([email protected]), _Demo_, Gary Henderson,
John Weidman, neviksti ([email protected]),
Kris Bleakley, Andreas Naive
DSP-2 emulator code
(c) Copyright 2003 Kris Bleakley, John Weidman, neviksti, Matthew Kendora, and
Lord Nightmare ([email protected]
OBC1 emulator code
(c) Copyright 2001 - 2004 zsKnight, pagefault ([email protected]) and
Kris Bleakley
Ported from x86 assembler to C by sanmaiwashi
SPC7110 and RTC C++ emulator code
(c) Copyright 2002 Matthew Kendora with research by
zsKnight, John Weidman, and Dark Force
S-DD1 C emulator code
(c) Copyright 2003 Brad Jorsch with research by
Andreas Naive and John Weidman
S-RTC C emulator code
(c) Copyright 2001 John Weidman
ST010 C++ emulator code
(c) Copyright 2003 Feather, Kris Bleakley, John Weidman and Matthew Kendora
Super FX x86 assembler emulator code
(c) Copyright 1998 - 2003 zsKnight, _Demo_, and pagefault
Super FX C emulator code
(c) Copyright 1997 - 1999 Ivar, Gary Henderson and John Weidman
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt ([email protected])
Specific ports contains the works of other authors. See headers in
individual files.
Snes9x homepage: http://www.snes9x.com
Permission to use, copy, modify and distribute Snes9x in both binary and
source form, for non-commercial purposes, is hereby granted without fee,
providing that this license information and copyright notice appear with
all copies and any derived work.
This software is provided 'as-is', without any express or implied
warranty. In no event shall the authors be held liable for any damages
arising from the use of this software.
Snes9x is freeware for PERSONAL USE only. Commercial users should
seek permission of the copyright holders first. Commercial use includes
charging money for Snes9x or software derived from Snes9x.
The copyright holders request that bug fixes and improvements to the code
should be forwarded to them so everyone can benefit from the modifications
in future versions.
Super NES and Super Nintendo Entertainment System are trademarks of
Nintendo Co., Limited and its subsidiary companies.
*******************************************************************************/
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <png.h>
#include "snes9x.h"
#include "memmap.h"
#include "gfx.h"
#include "ppu.h"
#include "screenshot.h"
typedef struct {
png_bytep buffer;
png_size_t size;
png_size_t buf_size;
} ScreenshotPriv;
static void write_data(png_structp png_ptr, png_bytep data, png_size_t length)
{
ScreenshotPriv *p = (ScreenshotPriv*) png_get_io_ptr(png_ptr);
png_size_t new_size = p->size + length;
if (!p->buffer) {
p->buf_size = new_size + 256;
p->size = 0;
p->buffer = (png_bytep) malloc(p->buf_size);
if (!p->buffer) {
png_error(png_ptr, "Out of memory");
return;
}
}
if (new_size > p->buf_size) {
png_size_t new_buf_size = p->buf_size;
do {
new_buf_size *= 2;
} while (new_size > new_buf_size);
png_bytep new_buf = (png_bytep) realloc(p->buffer, new_buf_size);
if (!new_buf) {
png_error(png_ptr, "Out of memory");
return;
}
p->buffer = new_buf;
p->buf_size = new_buf_size;
}
memcpy(p->buffer + p->size, data, length);
p->size += length;
}
static void flush_data(png_structp png_ptr)
{
ScreenshotPriv *p = (ScreenshotPriv*) png_get_io_ptr(png_ptr);
if (p->size < p->buf_size) {
png_bytep newbuf = (png_bytep) realloc(p->buffer, p->size);
if (!newbuf) {
png_error(png_ptr, "Out of memory");
return;
}
p->buffer = newbuf;
p->buf_size = p->size;
}
}
static void write_png(png_structp png_ptr, png_infop info_ptr)
{
const int width = IPPU.RenderedScreenWidth, height = IPPU.RenderedScreenHeight;
png_set_IHDR(png_ptr, info_ptr, width, height, 8, PNG_COLOR_TYPE_RGB,
PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
/* 5 bits per color is around what SNES is capable */
png_color_8 sig_bit;
sig_bit.red = 5;
sig_bit.green = 5;
sig_bit.blue = 5;
png_set_sBIT(png_ptr, info_ptr, &sig_bit);
png_set_shift(png_ptr, &sig_bit);
png_write_info(png_ptr, info_ptr);
png_byte *row_data = new png_byte[png_get_rowbytes(png_ptr, info_ptr)];
uint8 *screen = GFX.Screen;
for (int y = 0; y < height; y++, screen += GFX.Pitch) {
png_byte *pix_data = row_data;
for (int x = 0; x < width; x++) {
uint32 r, g, b;
DECOMPOSE_PIXEL((*(uint16*)(screen+2*x)), r, g, b);
*(pix_data++) = r;
*(pix_data++) = g;
*(pix_data++) = b;
}
png_write_row(png_ptr, row_data);
}
delete [] row_data;
png_write_end(png_ptr, info_ptr);
}
void * S9xScreenshot(size_t *size)
{
ScreenshotPriv priv = { 0 };
png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
if (!png_ptr) {
return 0;
}
png_infop info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
goto clean_png;
}
if(setjmp(png_jmpbuf(png_ptr))){
if (priv.buffer) {
free(priv.buffer);
priv.buffer = 0;
}
priv.size = 0;
goto clean_png;
}
png_set_write_fn(png_ptr, &priv, write_data, flush_data);
png_set_compression_level(png_ptr, Z_BEST_SPEED);
write_png(png_ptr, info_ptr);
clean_png:
png_destroy_write_struct(&png_ptr, &info_ptr);
if (priv.size && size) *size = priv.size;
return priv.buffer;
}
bool S9xSaveScreenshot(const char * file)
{
FILE *f = fopen(file, "wb");
if (!f) return false;
png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
if (!png_ptr) {
return 0;
}
png_infop info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
fclose(f);
png_destroy_write_struct(&png_ptr, 0);
return false;
}
if(setjmp(png_jmpbuf(png_ptr))){
fclose(f);
png_destroy_write_struct(&png_ptr, &info_ptr);
return false;
}
png_init_io(png_ptr, f);
png_set_compression_level(png_ptr, Z_BEST_COMPRESSION);
write_png(png_ptr, info_ptr);
png_destroy_write_struct(&png_ptr, &info_ptr);
fclose(f);
return true;
}