Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 9019daf9968b038ef940862d1bac203010384a68 (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
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
/*
   render/image.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#include <string>

#include <cstdlib>
#include <cstring>

#include "sys/sys.h"

#include "render/image.h"
#include "render/tgafile.h"
#include "render/pngfile.h"
#include "render/jpgfile.h"

namespace render
{

Image::Image(unsigned int width, unsigned int height, unsigned int channels)
{
	image_width = width;
	image_height = height;
	image_channels = channels;

	image_data = (unsigned char *) malloc(size());
	clear();
}

Image::~Image()
{
	free(image_data);
}

void Image::clear()
{
	memset(image_data, 0, size());
}

void Image::swap_channels()
{
	for (size_t y = 0; y < image_height; y++) {
		for (size_t x = 0; x < image_width; x++) {
			size_t offset = y * image_width * image_channels + x * image_channels;
			unsigned char tmp = image_data[offset];
			image_data[offset] = image_data[offset + 2];
			image_data[offset + 2] = tmp;
		}
	}
}

void Image::pad()
{
	unsigned int w = width();
	unsigned int h = height();

	if ((w % 8) != 0) {
		image_width = w + (8 - (w % 8));
	}

	if ((w % 8) != 0) {
		image_height = h + (8 - (h % 8));
	}

	unsigned char *image_new = (unsigned char *) malloc(size());
	memset(image_new, 0, size());

	for (size_t y = 0; y < h; y++) {
		memcpy((void *)&image_new[y * image_width * image_channels],
		       (void *)&image_data[y * w * image_channels], (size_t) w);
	}

	free(image_data);
	image_data = image_new;
}

void Image::flip_vertical()
{
	unsigned char line[image_width*image_channels];
	for (size_t y = 0; y < image_height / 2; y++) {
		memcpy(line,
		       &image_data[y*image_width*image_channels],
		       image_width*image_channels);
		memcpy(&image_data[y*image_width*image_channels],
		       &image_data[(image_height-1-y)*image_width*image_channels],
		       image_width*image_channels);
		memcpy(&image_data[(image_height-1-y)*image_width*image_channels],
		       line,
		       image_width*image_channels);
	}
}

void Image::flip_horizontal()
{
	unsigned char pixel_data[image_channels];
	for (size_t y = 0; y < image_height; y++) {
		for (size_t x = 0; x < image_width / 2; x++) {
			void *src = pixel(x,y); // &image_data[(y * image_width + x) * image_channels];
			void *dst = pixel(image_width - x - 1, y); // (&image_data[((y+1) * image_width - x - 1) * image_channels];
			memcpy(pixel_data, dst, image_channels);
			memcpy(dst, src, image_channels);
			memcpy(src, pixel_data, image_channels);
		}
	}
}

Image *Image::load(const std::string & name)
{	
	std::string filename;
	Image *image = 0;

	if (!image) {
		// try the png version
		filename.assign(name);
		filename.append(".png");
		image = PNG::load(filename.c_str());
	}

	if (!image) {
		// try the tga version
		filename.assign(name);
		filename.append(".tga");
		image = TGA::load(filename.c_str());
	}

	if (!image) {
		// try the jpg version
		filename.assign(name);
		filename.append(".jpg");
		image = JPG::load(filename.c_str());
	}

	if (!image) {
		con_warn << "Could not open image " << name << std::endl;
		return 0;
	}
	
	return image;
}

}