-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathBitmap.cpp
119 lines (105 loc) · 1.95 KB
/
Bitmap.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
#include "Bitmap.hpp"
#include <Windows.h>
#include <stdio.h>
void Bitmap::Blit(Bitmap* to, Bitmap* from, int toX, int toY, int fromX, int fromY, int w, int h)
{
// TODO: assert if (to->bitwidth != from->bitwidth)
if (toX >= to->w || toY >= to->h || fromX >= from->w || fromY >= from->h)
{
return;
}
for (int y0 = 0; y0 < h; y0++)
{
for (int x0 = 0; x0 < w; x0++)
{
int fromXReal = fromX + x0;
int fromYReal = fromY + y0;
int fromPixel = (fromYReal * from->w) + fromXReal;
if (fromPixel < 0 || fromPixel >= from->h * from->w) {
continue;
}
int toXReal = toX + x0;
int toYReal = toY + y0;
int toPixel = (toYReal * to->w) + toXReal;
if (toPixel < 0 || toPixel >= to->h * to->w) {
continue;
}
to->pixels[toPixel] = from->pixels[fromPixel];
}
}
}
void SubBitmap::Blit(Bitmap* to, SubBitmap& from, int toX, int toY, int fromX, int fromY, int w, int h)
{
for (int y0 = toY; y0 < toY + h && y0 < to->h; y0++)
{
if (y0 < 0)
{
continue;
}
int y1 = fromY + (y0 - toY);
if (y1 < 0)
{
continue;
}
if (y1 >= from.h)
{
break;
}
for (int x0 = toX; x0 < toX + w && x0 < to->w; x0++)
{
if (x0 < 0)
{
continue;
}
int x1 = fromX + (x0 - toX);
if (x1 < 0)
{
continue;
}
if (x1 >= from.w)
{
break;
}
basicCoord c;
c.x = x1;
c.y = y1;
*to->GetAt(x0, y0) = from.rows[y1][x1];
}
}
}
void SubBitmap::Blit(SubBitmap& to, Bitmap* from, int toX, int toY, int fromX, int fromY, int w, int h)
{
for (int y0 = toY; y0 < toY + h && y0 < to.h; y0++)
{
if (y0 < 0)
{
continue;
}
int y1 = fromY + (y0 - toY);
if (y1 < 0)
{
continue;
}
if (y1 >= from->h)
{
break;
}
for (int x0 = toX; x0 < toX + w && x0 < to.w; x0++)
{
if (x0 < 0)
{
continue;
}
int x1 = fromX + (x0 - toX);
if (x1 < 0)
{
continue;
}
if (x1 >= from->w)
{
break;
}
to.rows[y0][x0] = from->pixels[(y1 * from->w) + x1];
}
}
}