File: mat2ppm.cpp

package info (click to toggle)
scummvm-tools 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,940 kB
  • sloc: cpp: 76,819; python: 6,550; sh: 4,661; perl: 1,530; ansic: 646; makefile: 360
file content (139 lines) | stat: -rw-r--r-- 3,062 bytes parent folder | download | duplicates (2)
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
/* ScummVM Tools
 *
 * ScummVM Tools is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>

#include <ppm.h>

static pixel cmap[256];

int32_t read_LEint32(FILE *f) {
	unsigned char c[4];
	int i;

	fread(c, 1, 4, f);
	return (c[0]) | (c[1] << 8) | (c[2] << 16) | (c[3] << 24);
}

void read_cmp(const char *fname) {
	unsigned char col[3];
	FILE *cmp;
	int i;

	cmp = fopen(fname, "r");
	if (cmp == NULL) {
		perror(fname);
		exit(1);
	}
	fseek(cmp, 48, SEEK_SET);
	for (i = 0; i < 256; i++) {
		col[0] = getc(cmp);
		col[1] = getc(cmp);
		col[2] = getc(cmp);
		PPM_ASSIGN(cmap[i], col[0], col[1], col[2]);
	}
	fclose(cmp);
}

void write_img(FILE *f, const char *fname, int n, int num_img) {
	FILE *out;
	int32_t width, height;
	int x, y;
	unsigned char p;
	pixel **img;
	char newname[1024];
	const char *basename;

	fseek(f, 116 + 40 * (num_img - 1), SEEK_SET);
	width = read_LEint32(f);
	height = read_LEint32(f);
	img = ppm_allocarray(width, height);
	fseek(f, 100 + 40 * num_img + (width * height + 24) * n, SEEK_SET);
	for (y = 0; y < height; y++)
		for (x = 0; x < width; x++) {
			p = getc(f);
			img[y][x] = cmap[p];
		}

	basename = strrchr(fname, '/');
	if (basename != NULL) {
		basename++;
	} else {
		basename = fname;
	}
	strcpy(newname, basename);
	if (strlen(newname) > 4 &&
			strcasecmp(newname + strlen(newname) - 4, ".mat") == 0) {
		newname[strlen(newname) - 4] = '\0';
	}
	sprintf(newname + strlen(newname), "_%d.ppm", n);

	out = fopen(newname, "wb");
	if (out == NULL) {
		perror(newname);
		exit(1);
	}

	ppm_writeppm(out, img, width, height, 255, 0);
	ppm_freearray(img, height);
	fclose(out);
}

void process_file(const char *fname) {
	FILE *in;
	int32_t num_img;
	int i;

	in = fopen(fname, "rb");
	if (in == NULL) {
		perror(fname);
		exit(1);
	}
	fseek(in, 12, SEEK_SET);
	num_img = read_LEint32(in);
	for (i = 0; i < num_img; i++) {
		write_img(in, fname, i, num_img);
	}
	fclose(in);
}

int main(int argc, char **argv) {
	int i;

	ppm_init(&argc, argv);
	for (i = 0; i < 256; i++) {
		PPM_ASSIGN(cmap[i], i, i, i);
	}

	i = 1;
	if (argc >= 3 && strncmp(argv[1], "-c", 2) == 0) {
		read_cmp(argv[2]);
		i = 3;
	}
	for (; i < argc; i++) {
		process_file(argv[i]);
	}

	return 0;
}