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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
|
/*
* Example program for the Allegro library, by Shawn Hargreaves.
*
* This program demonstrates how to use the 3d matrix functions.
* It isn't a very elegant or efficient piece of code, but it does
* show the stuff in action. I'll leave it to you to design a proper
* model structure and rendering pipeline: after all, the best way to
* do that sort of stuff varies hugely from one game to another.
*/
#include <stdio.h>
#include "allegro.h"
#define NUM_SHAPES 8 /* number of bouncing cubes */
#define NUM_VERTICES 8 /* a cube has eight corners */
#define NUM_FACES 6 /* a cube has six faces */
typedef struct VTX
{
fixed x, y, z;
} VTX;
typedef struct QUAD /* four vertices makes a quad */
{
VTX *vtxlist;
int v1, v2, v3, v4;
} QUAD;
typedef struct SHAPE /* store position of a shape */
{
fixed x, y, z; /* x, y, z position */
fixed rx, ry, rz; /* rotations */
fixed dz; /* speed of movement */
fixed drx, dry, drz; /* speed of rotation */
} SHAPE;
VTX points[] = /* a cube, centered on the origin */
{
/* vertices of the cube */
{ -32 << 16, -32 << 16, -32 << 16 },
{ -32 << 16, 32 << 16, -32 << 16 },
{ 32 << 16, 32 << 16, -32 << 16 },
{ 32 << 16, -32 << 16, -32 << 16 },
{ -32 << 16, -32 << 16, 32 << 16 },
{ -32 << 16, 32 << 16, 32 << 16 },
{ 32 << 16, 32 << 16, 32 << 16 },
{ 32 << 16, -32 << 16, 32 << 16 },
};
QUAD faces[] = /* group the vertices into polygons */
{
{ points, 0, 3, 2, 1 },
{ points, 4, 5, 6, 7 },
{ points, 0, 1, 5, 4 },
{ points, 2, 3, 7, 6 },
{ points, 0, 4, 7, 3 },
{ points, 1, 2, 6, 5 }
};
SHAPE shapes[NUM_SHAPES]; /* a list of shapes */
/* somewhere to put translated vertices */
VTX output_points[NUM_VERTICES * NUM_SHAPES];
QUAD output_faces[NUM_FACES * NUM_SHAPES];
enum {
wireframe,
flat,
gcol,
grgb,
atex,
ptex,
atex_mask,
ptex_mask,
atex_lit,
ptex_lit,
atex_mask_lit,
ptex_mask_lit,
atex_trans,
ptex_trans,
atex_mask_trans,
ptex_mask_trans,
last_mode
} render_mode = wireframe;
int render_type[] =
{
0,
POLYTYPE_FLAT,
POLYTYPE_GCOL,
POLYTYPE_GRGB,
POLYTYPE_ATEX,
POLYTYPE_PTEX,
POLYTYPE_ATEX_MASK,
POLYTYPE_PTEX_MASK,
POLYTYPE_ATEX_LIT,
POLYTYPE_PTEX_LIT,
POLYTYPE_ATEX_MASK_LIT,
POLYTYPE_PTEX_MASK_LIT,
POLYTYPE_ATEX_TRANS,
POLYTYPE_PTEX_TRANS,
POLYTYPE_ATEX_MASK_TRANS,
POLYTYPE_PTEX_MASK_TRANS
};
char *mode_desc[] =
{
"Wireframe",
"Flat shaded",
"Single color gouraud shaded",
"Gouraud shaded",
"Texture mapped",
"Perspective correct texture mapped",
"Masked texture mapped",
"Masked persp. correct texture mapped",
"Lit texture map",
"Lit persp. correct texture map",
"Masked lit texture map",
"Masked lit persp. correct texture map",
"Transparent texture mapped",
"Transparent perspective correct texture mapped",
"Transparent masked texture mapped",
"Transparent masked persp. correct texture mapped",
};
BITMAP *texture;
/* initialise shape positions */
void init_shapes(void)
{
int c;
for (c=0; c<NUM_SHAPES; c++) {
shapes[c].x = ((rand() & 255) - 128) << 16;
shapes[c].y = ((rand() & 255) - 128) << 16;
shapes[c].z = 768 << 16;
shapes[c].rx = 0;
shapes[c].ry = 0;
shapes[c].rz = 0;
shapes[c].dz = ((rand() & 255) - 8) << 12;
shapes[c].drx = ((rand() & 31) - 16) << 12;
shapes[c].dry = ((rand() & 31) - 16) << 12;
shapes[c].drz = ((rand() & 31) - 16) << 12;
}
}
/* update shape positions */
void animate_shapes(void)
{
int c;
for (c=0; c<NUM_SHAPES; c++) {
shapes[c].z += shapes[c].dz;
if ((shapes[c].z > itofix(1024)) ||
(shapes[c].z < itofix(192)))
shapes[c].dz = -shapes[c].dz;
shapes[c].rx += shapes[c].drx;
shapes[c].ry += shapes[c].dry;
shapes[c].rz += shapes[c].drz;
}
}
/* translate shapes from 3d world space to 2d screen space */
void translate_shapes(void)
{
int c, d;
MATRIX matrix;
VTX *outpoint = output_points;
QUAD *outface = output_faces;
for (c=0; c<NUM_SHAPES; c++) {
/* build a transformation matrix */
get_transformation_matrix(&matrix, itofix(1),
shapes[c].rx, shapes[c].ry, shapes[c].rz,
shapes[c].x, shapes[c].y, shapes[c].z);
/* output the vertices */
for (d=0; d<NUM_VERTICES; d++) {
apply_matrix(&matrix, points[d].x, points[d].y, points[d].z, &outpoint[d].x, &outpoint[d].y, &outpoint[d].z);
persp_project(outpoint[d].x, outpoint[d].y, outpoint[d].z, &outpoint[d].x, &outpoint[d].y);
}
/* output the faces */
for (d=0; d<NUM_FACES; d++) {
outface[d] = faces[d];
outface[d].vtxlist = outpoint;
}
outpoint += NUM_VERTICES;
outface += NUM_FACES;
}
}
/* draw a line (for wireframe display) */
void wire(BITMAP *b, VTX *v1, VTX *v2)
{
int col = MID(128, 255 - fixtoi(v1->z+v2->z) / 16, 255);
line(b, fixtoi(v1->x), fixtoi(v1->y), fixtoi(v2->x), fixtoi(v2->y), palette_color[col]);
}
/* draw a quad */
void draw_quad(BITMAP *b, VTX *v1, VTX *v2, VTX *v3, VTX *v4, int mode)
{
int col;
/* four vertices */
V3D vtx1 = { 0, 0, 0, 0, 0, 0 };
V3D vtx2 = { 0, 0, 0, 32<<16, 0, 0 };
V3D vtx3 = { 0, 0, 0, 32<<16, 32<<16, 0 };
V3D vtx4 = { 0, 0, 0, 0, 32<<16, 0 };
vtx1.x = v1->x; vtx1.y = v1->y; vtx1.z = v1->z;
vtx2.x = v2->x; vtx2.y = v2->y; vtx2.z = v2->z;
vtx3.x = v3->x; vtx3.y = v3->y; vtx3.z = v3->z;
vtx4.x = v4->x; vtx4.y = v4->y; vtx4.z = v4->z;
/* cull backfaces */
if ((mode != POLYTYPE_ATEX_MASK) && (mode != POLYTYPE_PTEX_MASK) &&
(mode != POLYTYPE_ATEX_MASK_LIT) && (mode != POLYTYPE_PTEX_MASK_LIT) &&
(polygon_z_normal(&vtx1, &vtx2, &vtx3) < 0))
return;
/* set up the vertex color, differently for each rendering mode */
switch (mode) {
case POLYTYPE_FLAT:
col = MID(128, 255 - fixtoi(v1->z+v2->z) / 16, 255);
vtx1.c = vtx2.c = vtx3.c = vtx4.c = palette_color[col];
break;
case POLYTYPE_GCOL:
vtx1.c = palette_color[0xD0];
vtx2.c = palette_color[0x80];
vtx3.c = palette_color[0xB0];
vtx4.c = palette_color[0xFF];
break;
case POLYTYPE_GRGB:
vtx1.c = 0x000000;
vtx2.c = 0x7F0000;
vtx3.c = 0xFF0000;
vtx4.c = 0x7F0000;
break;
case POLYTYPE_ATEX_LIT:
case POLYTYPE_PTEX_LIT:
case POLYTYPE_ATEX_MASK_LIT:
case POLYTYPE_PTEX_MASK_LIT:
vtx1.c = MID(0, 255 - fixtoi(v1->z) / 4, 255);
vtx2.c = MID(0, 255 - fixtoi(v2->z) / 4, 255);
vtx3.c = MID(0, 255 - fixtoi(v3->z) / 4, 255);
vtx4.c = MID(0, 255 - fixtoi(v4->z) / 4, 255);
break;
}
/* draw the quad */
quad3d(b, mode, texture, &vtx1, &vtx2, &vtx3, &vtx4);
}
/* callback for qsort() */
int quad_cmp(const void *e1, const void *e2)
{
QUAD *q1 = (QUAD *)e1;
QUAD *q2 = (QUAD *)e2;
fixed d1 = q1->vtxlist[q1->v1].z + q1->vtxlist[q1->v2].z +
q1->vtxlist[q1->v3].z + q1->vtxlist[q1->v4].z;
fixed d2 = q2->vtxlist[q2->v1].z + q2->vtxlist[q2->v2].z +
q2->vtxlist[q2->v3].z + q2->vtxlist[q2->v4].z;
return d2 - d1;
}
/* draw the shapes calculated by translate_shapes() */
void draw_shapes(BITMAP *b)
{
int c;
QUAD *face = output_faces;
VTX *v1, *v2, *v3, *v4;
/* depth sort */
qsort(output_faces, NUM_FACES * NUM_SHAPES, sizeof(QUAD), quad_cmp);
for (c=0; c < NUM_FACES * NUM_SHAPES; c++) {
/* find the vertices used by the face */
v1 = face->vtxlist + face->v1;
v2 = face->vtxlist + face->v2;
v3 = face->vtxlist + face->v3;
v4 = face->vtxlist + face->v4;
/* draw the face */
if (render_mode == wireframe) {
wire(b, v1, v2);
wire(b, v2, v3);
wire(b, v3, v4);
wire(b, v4, v1);
}
else {
draw_quad(b, v1, v2, v3, v4, render_type[render_mode]);
}
face++;
}
}
/* RGB -> color mapping table. Not needed, but speeds things up */
RGB_MAP rgb_table;
/* lighting color mapping table */
COLOR_MAP light_table;
/* transparency color mapping table */
COLOR_MAP trans_table;
void print_progress(int pos)
{
#ifdef ALLEGRO_CONSOLE_OK
if ((pos & 3) == 3) {
printf("*");
fflush(stdout);
}
#endif
}
int main(void)
{
BITMAP *buffer;
PALETTE pal;
int c, w, h, bpp;
int last_retrace_count;
allegro_init();
install_keyboard();
install_mouse();
install_timer();
/* color 0 = black */
pal[0].r = pal[0].g = pal[0].b = 0;
/* copy the desktop palette */
for (c=1; c<64; c++)
pal[c] = desktop_palette[c];
/* make a red gradient */
for (c=64; c<96; c++) {
pal[c].r = (c-64)*2;
pal[c].g = pal[c].b = 0;
}
/* make a green gradient */
for (c=96; c<128; c++) {
pal[c].g = (c-96)*2;
pal[c].r = pal[c].b = 0;
}
/* set up a greyscale in the top half of the palette */
for (c=128; c<256; c++)
pal[c].r = pal[c].g = pal[c].b = (c-128)/2;
/* build rgb_map table */
#ifdef ALLEGRO_CONSOLE_OK
printf("Generating rgb_map table:\n");
printf("<................................................................>\r<");
#endif
create_rgb_table(&rgb_table, pal, print_progress);
rgb_map = &rgb_table;
/* build a lighting table */
#ifdef ALLEGRO_CONSOLE_OK
printf("\n\n");
printf("Generating lighting table:\n");
printf("<................................................................>\r<");
#endif
create_light_table(&light_table, pal, 0, 0, 0, print_progress);
color_map = &light_table;
/* build a transparency table */
#ifdef ALLEGRO_CONSOLE_OK
printf("\n\n");
printf("Generating transparency table:\n");
printf("<................................................................>\r<");
#endif
/* textures are 25% transparent (75% opaque) */
create_trans_table(&trans_table, pal, 192, 192, 192, print_progress);
#ifdef ALLEGRO_CONSOLE_OK
printf("\n");
#endif
/* set up the truecolor blending functions */
/* textures are 25% transparent (75% opaque) */
set_trans_blender(0, 0, 0, 192);
/* set the graphics mode */
if (set_gfx_mode(GFX_SAFE, 320, 200, 0, 0) != 0) {
set_gfx_mode(GFX_TEXT, 0, 0, 0, 0);
allegro_message("Unable to set any graphic mode\n%s\n", allegro_error);
return 1;
}
set_palette(desktop_palette);
c = GFX_AUTODETECT;
w = SCREEN_W;
h = SCREEN_H;
bpp = bitmap_color_depth(screen);
if (!gfx_mode_select_ex(&c, &w, &h, &bpp)) {
allegro_exit();
return 1;
}
set_color_depth(bpp);
if (set_gfx_mode(c, w, h, 0, 0) != 0) {
set_gfx_mode(GFX_TEXT, 0, 0, 0, 0);
allegro_message("Error setting graphics mode\n%s\n", allegro_error);
return 1;
}
set_palette(pal);
/* make a bitmap for use as a texture map */
texture = create_bitmap(32, 32);
clear_to_color(texture, bitmap_mask_color(texture));
line(texture, 0, 0, 31, 31, palette_color[1]);
line(texture, 0, 31, 31, 0, palette_color[1]);
rect(texture, 0, 0, 31, 31, palette_color[1]);
text_mode(-1);
textout(texture, font, "dead", 0, 0, palette_color[2]);
textout(texture, font, "pigs", 0, 8, palette_color[2]);
textout(texture, font, "cant", 0, 16, palette_color[2]);
textout(texture, font, "fly.", 0, 24, palette_color[2]);
/* double buffer the animation */
buffer = create_bitmap(SCREEN_W, SCREEN_H);
/* set up the viewport for the perspective projection */
set_projection_viewport(0, 0, SCREEN_W, SCREEN_H);
/* initialise the bouncing shapes */
init_shapes();
last_retrace_count = retrace_count;
for (;;) {
clear_bitmap(buffer);
while (last_retrace_count < retrace_count) {
animate_shapes();
last_retrace_count++;
}
translate_shapes();
draw_shapes(buffer);
textprintf(buffer, font, 0, 0, palette_color[192], "%s, %d bpp", mode_desc[render_mode], bitmap_color_depth(screen));
textout(buffer, font, "Press a key to change", 0, 12, palette_color[192]);
vsync();
blit(buffer, screen, 0, 0, 0, 0, SCREEN_W, SCREEN_H);
if (keypressed()) {
if ((readkey() & 0xFF) == 27)
break;
else {
render_mode++;
if (render_mode >= last_mode) {
render_mode = wireframe;
color_map = &light_table;
}
if (render_type[render_mode] >= POLYTYPE_ATEX_TRANS)
color_map = &trans_table;
}
}
}
destroy_bitmap(buffer);
destroy_bitmap(texture);
return 0;
}
END_OF_MAIN();
|