summaryrefslogtreecommitdiff
path: root/tools/playground/font.cpp
blob: b00125020b71c354098deb96728022430aa389ae (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
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
#include <rw.h>
#include <skeleton.h>

using namespace rw;

struct Font
{
	Texture *tex;
	int32 glyphwidth, glyphheight;
	int32 numglyphs;
};
Font vga = { nil, 8, 16, 256 };
Font bios = { nil, 8, 8, 256 };
Font *curfont = &bios;

#define NUMCHARS 100
uint16 indices[NUMCHARS*6];
RWDEVICE::Im2DVertex vertices[NUMCHARS*4];
int32 curVert;
int32 curIndex;

void
printScreen(const char *s, float32 x, float32 y)
{
	char c;
	Camera *cam;
	RWDEVICE::Im2DVertex *vert;
	uint16 *ix;
	curVert = 0;
	curIndex = 0;
	float32 u, v, du, dv;
	float recipZ;

	cam = (Camera*)engine->currentCamera;
	vert = &vertices[curVert];
	ix = &indices[curIndex];
	du = curfont->glyphwidth/(float32)curfont->tex->raster->width;
	dv = curfont->glyphheight/(float32)curfont->tex->raster->height;
	recipZ = 1.0f/cam->nearPlane;
	while(c = *s){
		if(c >= curfont->numglyphs)
			c = 0;
		u = (c % 16)*curfont->glyphwidth / (float32)curfont->tex->raster->width;
		v = (c / 16)*curfont->glyphheight / (float32)curfont->tex->raster->height;

		vert->setScreenX(x);
		vert->setScreenY(y);
		vert->setScreenZ(rw::im2d::GetNearZ());
		vert->setCameraZ(cam->nearPlane);
		vert->setRecipCameraZ(recipZ);
		vert->setColor(255, 255, 255, 255);
		vert->setU(u, recipZ);
		vert->setV(v, recipZ);
		vert++;

		vert->setScreenX(x+curfont->glyphwidth);
		vert->setScreenY(y);
		vert->setScreenZ(rw::im2d::GetNearZ());
		vert->setCameraZ(cam->nearPlane);
		vert->setRecipCameraZ(recipZ);
		vert->setColor(255, 255, 255, 255);
		vert->setU(u+du, recipZ);
		vert->setV(v, recipZ);
		vert++;
		
		vert->setScreenX(x);
		vert->setScreenY(y+curfont->glyphheight);
		vert->setScreenZ(rw::im2d::GetNearZ());
		vert->setCameraZ(cam->nearPlane);
		vert->setRecipCameraZ(recipZ);
		vert->setColor(255, 255, 255, 255);
		vert->setU(u, recipZ);
		vert->setV(v+dv, recipZ);
		vert++;

		vert->setScreenX(x+curfont->glyphwidth);
		vert->setScreenY(y+curfont->glyphheight);
		vert->setScreenZ(rw::im2d::GetNearZ());
		vert->setCameraZ(cam->nearPlane);
		vert->setRecipCameraZ(recipZ);
		vert->setColor(255, 255, 255, 255);
		vert->setU(u+du, recipZ);
		vert->setV(v+dv, recipZ);
		vert++;

		*ix++ = curVert;
		*ix++ = curVert+1;
		*ix++ = curVert+2;
		*ix++ = curVert+2;
		*ix++ = curVert+1;
		*ix++ = curVert+3;

		curVert += 4;
		curIndex += 6;
		x += curfont->glyphwidth+1;
		
		s++;
	}

	rw::SetRenderStatePtr(rw::TEXTURERASTER, curfont->tex->raster);
	rw::SetRenderState(rw::TEXTUREADDRESS, rw::Texture::WRAP);
	rw::SetRenderState(rw::TEXTUREFILTER, rw::Texture::NEAREST);

	im2d::RenderIndexedPrimitive(rw::PRIMTYPETRILIST,
		vertices, curVert, indices, curIndex);

}

void
initFont(void)
{
	vga.tex = Texture::read("files/Bm437_IBM_VGA8", "");
	bios.tex = Texture::read("files/Bm437_IBM_BIOS", "");

/*
	FILE *foo = fopen("font.c", "w");
	assert(foo);
	int x, y;
	rw::Image *img = rw::readTGA("vga_font.tga");
	assert(img);
	for(y = 0; y < img->height; y++){
		for(x = 0; x < img->width; x++)
			fprintf(foo, "%d, ", !!img->pixels[y*img->width + x]);
		fprintf(foo, "\n");
	}
*/
}

/*
#define NUMGLYPHS 256
#define GLYPHWIDTH 8
#define GLYPHHEIGHT 16


void
convertFont(void)
{
	FILE *f;
	Image *img;
	uint8 data[NUMGLYPHS*GLYPHHEIGHT];
	int32 i, x, y;
	uint8 *px, *line, *glyph;
//	f = fopen("font0.bin", "rb");
	f = fopen("files/Bm437_IBM_VGA8.FON", "rb");
//	f = fopen("files/Bm437_IBM_BIOS.FON", "rb");
	if(f == nil)
		return;
fseek(f, 0x65A, 0);
	fread(data, 1, NUMGLYPHS*GLYPHHEIGHT, f);
	fclose(f);

	img = Image::create(16*GLYPHWIDTH, NUMGLYPHS/16*GLYPHHEIGHT, 32);
	img->allocate();
	for(i = 0; i < NUMGLYPHS; i++){
		glyph = &data[i*GLYPHHEIGHT];
		x = (i % 16)*GLYPHWIDTH;
		y = (i / 16)*GLYPHHEIGHT;
		line = &img->pixels[x*4 + y*img->stride];
		for(y = 0; y < GLYPHHEIGHT; y++){
			px = line;
			for(x = 0; x < 8; x++){
				if(*glyph & 1<<(8-x)){
					*px++ = 255;
					*px++ = 255;
					*px++ = 255;
					*px++ = 255;
				}else{
					*px++ = 0;
					*px++ = 0;
					*px++ = 0;
					*px++ = 0;
				}
			}
			glyph++;
			line += img->stride;
		}
	}
//	writeTGA(img, "files/Bm437_IBM_BIOS.tga");
	writeTGA(img, "files/Bm437_IBM_VGA8.tga");
}
*/