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 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* pacman --- Mr. Pacman and his ghost friends */
#if 0
static const char sccsid[] = "@(#)pacman.c 5.00 2000/11/01 xlockmore";
#endif
/*-
* Copyright (c) 2002 by Edwin de Jong <mauddib@gmx.net>.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation.
*
* This file is provided AS IS with no warranties of any kind. The author
* shall have no liability with respect to the infringement of copyrights,
* trade secrets or any patents by this file or any part thereof. In no
* event will the author be liable for any lost revenue or profits or
* other special, indirect and consequential damages.
*
* Revision History:
* 25-Feb-2005: Added bonus dots. I am using a recursive back track algorithm
* to help the ghost find there way home. This also means that
* they do not know the shorts path.
* Jeremy English jhe@jeremyenglish.org
* 15-Aug-2004: Added support for pixmap pacman.
* Jeremy English jhe@jeremyenglish.org
* 11-Aug-2004: Added support for pixmap ghost.
* Jeremy English jhe@jeremyenglish.org
* 13-May-2002: Added -trackmouse feature thanks to code from 'maze.c'.
* splitted up code into several files. Retouched AI code, cleaned
* up code.
* 3-May-2002: Added AI to pacman and ghosts, slowed down ghosts.
* 26-Nov-2001: Random level generator added
* 01-Nov-2000: Allocation checks
* 04-Jun-1997: Compatible with xscreensaver
*
*/
/* TODO:
1. think of a better level generation algorithm
*/
#define DEF_TRACKMOUSE "False"
#ifdef STANDALONE
# define MODE_pacman
# define DEFAULTS "*delay: 10000 \n" \
"*size: 0 \n" \
"*ncolors: 6 \n" \
"*fpsTop: true \n" \
"*fpsSolid: true \n" \
# define UNIFORM_COLORS
# define BRIGHT_COLORS
# define release_pacman 0
# define pacman_handle_event 0
# include "xlockmore.h" /* in xscreensaver distribution */
# include <assert.h>
#else /* STANDALONE */
# include "xlock.h" /* in xlockmore distribution */
#endif /* STANDALONE */
#ifdef MODE_pacman
#include "pacman.h"
#include "pacman_ai.h"
#include "pacman_level.h"
#include "ximage-loader.h"
#include "images/gen/pacman_png.h"
#ifdef DISABLE_INTERACTIVE
ENTRYPOINT ModeSpecOpt pacman_opts = {
0,
(XrmOptionDescRec *) NULL,
0,
(argtype *) NULL,
(OptionStruct *) NULL
};
#else
static XrmOptionDescRec opts[] = {
{"-trackmouse", ".pacman.trackmouse", XrmoptionNoArg, "on"},
{"+trackmouse", ".pacman.trackmouse", XrmoptionNoArg, "off"}
};
static argtype vars[] = {
{&pacman_trackmouse, "trackmouse", "TrackMouse", DEF_TRACKMOUSE, t_Bool}
};
static OptionStruct desc[] = {
{"-/+trackmouse", "turn on/off the tracking of the mouse"}
};
ENTRYPOINT ModeSpecOpt pacman_opts =
{ sizeof opts / sizeof opts[0], opts, sizeof vars / sizeof vars[0], vars,
desc };
#endif
#ifdef USE_MODULES
ModStruct pacman_description = {
"pacman", /* *cmdline_arg; */
"init_pacman", /* *init_name; */
"draw_pacman", /* *callback_name; */
(char *) NULL, /* *release_name; */
"refresh_pacman", /* *refresh_name; */
"change_pacman", /* *change_name; */
"free_pacman", /* *free_name; */
&pacman_opts, /* *msopts */
10000, 4, 1, 0, 64, 1.0, "", "Shows Pacman(tm)", 0, NULL
};
#endif
Bool pacman_trackmouse;
pacmangamestruct *pacman_games = (pacmangamestruct *) NULL;
static void repopulate (ModeInfo * mi);
static void drawlevel (ModeInfo * mi);
ENTRYPOINT void
free_pacman (ModeInfo * mi)
{
Display * display = MI_DISPLAY (mi);
pacmangamestruct * pp = &pacman_games[MI_SCREEN (mi)];
int dir, mouth, i, j, k;
if (pp->tiles) free (pp->tiles);
if (pp->ghosts != NULL) {
free (pp->ghosts);
pp->ghosts = (ghoststruct *) NULL;
}
if (pp->stippledGC != None) {
XFreeGC (display, pp->stippledGC);
pp->stippledGC = None;
}
for (i = 0; i < 4; i++) {
for (j = 0; j < MAXGDIR; j++) {
for (k = 0; k < MAXGWAG; k++) {
if (pp->ghostPixmap[i][j][k] != None) {
XFreePixmap (display, pp->ghostPixmap[i][j][k]);
pp->ghostPixmap[i][j][k] = None;
}
}
}
}
for (dir = 0; dir < 4; dir++)
for (mouth = 0; mouth < MAXMOUTH; mouth++)
if (pp->pacmanPixmap[dir][mouth] != None) {
XFreePixmap (display, pp->pacmanPixmap[dir][mouth]);
pp->pacmanPixmap[dir][mouth] = None;
}
}
/* set pacman and the ghost in there starting positions, but don't draw a new
level */
static void
reset_level (ModeInfo * mi, int n, int pac_init)
{
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
unsigned int ghost;
XClearWindow (MI_DISPLAY(mi), MI_WINDOW(mi));
drawlevel (mi);
pp->gamestate = GHOST_DANGER;
if ( pac_init ){
pp->pacman.row = (LEVHEIGHT + JAILHEIGHT) / 2 - n;
pp->pacman.init_row = pp->pacman.row;
}
else{
pp->pacman.row = pp->pacman.init_row;
}
pp->pacman.col = (LEVWIDTH / 2);
pp->pacman.nextrow = NOWHERE;
pp->pacman.nextcol = NOWHERE;
pp->pacman.cf = NOWHERE;
pp->pacman.rf = NOWHERE;
pp->pacman.oldcf = NOWHERE;
pp->pacman.oldrf = NOWHERE;
pp->pacman.oldlx = NOWHERE;
pp->pacman.oldly = NOWHERE;
pp->pacman.aistate = ps_eating;
pp->pacman.cur_trace = 0;
pp->pacman.roundscore = 0;
pp->pacman.speed = 4;
pp->pacman.lastturn = 0;
pp->pacman.delta.x = 0;
pp->pacman.delta.y = 0;
for (ghost = 0; ghost < pp->nghosts; ghost++) {
pp->ghosts[ghost].col = (LEVWIDTH / 2);
pp->ghosts[ghost].row = (LEVHEIGHT / 2);
pp->ghosts[ghost].nextcol = NOWHERE;
pp->ghosts[ghost].nextrow = NOWHERE;
pp->ghosts[ghost].dead = 0;
pp->ghosts[ghost].lastbox = START;
pp->ghosts[ghost].cf = NOWHERE;
pp->ghosts[ghost].rf = NOWHERE;
pp->ghosts[ghost].oldcf = NOWHERE;
pp->ghosts[ghost].oldrf = NOWHERE;
pp->ghosts[ghost].aistate = inbox;
pp->ghosts[ghost].timeleft = ghost * 20;
pp->ghosts[ghost].speed = 3;
pp->ghosts[ghost].delta.x = 0;
pp->ghosts[ghost].delta.y = 0;
pp->ghosts[ghost].flash_scared = False;
pp->ghosts[ghost].wait_pos = False;
pacman_ghost_update (pp, &(pp->ghosts[ghost]));
}
pacman_update (mi, pp, &(pp->pacman));
}
static int
pacman_ghost_collision(unsigned int ghost, pacmangamestruct * pp)
{
return (((pp->ghosts[ghost].nextrow == pp->pacman.nextrow) &&
(pp->ghosts[ghost].nextcol == pp->pacman.nextcol)) ||
((pp->ghosts[ghost].nextrow == pp->pacman.row) &&
(pp->ghosts[ghost].nextcol == pp->pacman.col) &&
(pp->ghosts[ghost].row == pp->pacman.nextrow) &&
(pp->ghosts[ghost].col == pp->pacman.nextcol)));
}
/* Checks for death of any ghosts/pacman and updates. It also makes a new
level if all ghosts are dead or all dots are eaten. */
static void
check_death (ModeInfo * mi, pacmangamestruct * pp)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
unsigned int ghost;
if (pp->pacman.aistate == ps_dieing) return;
for (ghost = 0; ghost < pp->nghosts; ghost++) {
/* The ghost have to be scared before you can kill them */
if ( pacman_ghost_collision ( ghost, pp ) ) {
if (pp->ghosts[ghost].aistate == goingin) continue;
if (pp->ghosts[ghost].aistate == hiding) {
pp->ghosts[ghost].dead = 1;
pp->ghosts[ghost].aistate = goingin;
pp->ghosts[ghost].wait_pos = True;
XSetForeground (display, pp->stippledGC, MI_BLACK_PIXEL (mi));
XFillRectangle (display, window,
pp->stippledGC,
pp->ghosts[ghost].cf,
pp->ghosts[ghost].rf,
pp->spritexs, pp->spriteys);
}
/* DIE PACMAN... */
else {
pp->pacman.deaths++;
pp->pacman.aistate = ps_dieing;
}
continue;
}
}
}
/* Resets state of ghosts + pacman. Creates a new level, draws that level. */
static void
repopulate (ModeInfo * mi)
{
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
pp->pacman.deaths = 0;
reset_level (mi, pacman_createnewlevel (pp), True);
check_death (mi, pp);
}
/* Sets the color to the color of a wall. */
static void
setwallcolor (ModeInfo * mi)
{
Display *display = MI_DISPLAY (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
if (MI_NPIXELS (mi) > 2)
XSetForeground (display, pp->stippledGC, MI_PIXEL (mi, BLUE));
else
XSetForeground (display, pp->stippledGC, MI_WHITE_PIXEL (mi));
}
/* Sets the color to the color of a dot. */
static void
setdotcolor (ModeInfo * mi)
{
Display *display = MI_DISPLAY (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
XSetForeground (display, pp->stippledGC, MI_WHITE_PIXEL (mi));
}
static void
cleardotcolor (ModeInfo * mi)
{
Display *display = MI_DISPLAY (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
XSetForeground (display, pp->stippledGC, MI_BLACK_PIXEL (mi));
}
#if 0
static void
draw_position (ModeInfo * mi, int x, int y, int color)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
XFontStruct *font = NULL;
char *f_name = "Utopia 60, Helvetica 60";
char *s = NULL;
font = load_font_retry (display, f_name);
assert (font != NULL);
s = (char *) malloc (256);
assert (s != NULL);
sprintf (s, "(%d,%d)", x, y);
XSetForeground (display, pp->stippledGC, color);
XDrawString (display, window, pp->stippledGC, x, y, s, strlen (s));
free (s);
free (font);
}
#endif
#if 0
static void
draw_number (ModeInfo * mi, int x, int y, int num, int color)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
XFontStruct *font = NULL;
char *f_name = "Utopia 60, Helvetica 60";
char *s = NULL;
font = load_font_retry (display, f_name);
assert (font != NULL);
s = (char *) malloc (256);
assert (s != NULL);
sprintf (s, "%d", num);
XSetForeground (display, pp->stippledGC, color);
XDrawString (display, window, pp->stippledGC, x, y, s, strlen (s));
free (s);
free (font);
}
#endif
#if 0
/* draw_grid - draws a grid on top of the playing field.
* Used so that I can determine if I'm converting from rows and columns to x and y
* coordinates correctly.
*/
static void
draw_grid (ModeInfo * mi)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
int h = MI_HEIGHT (mi);
int w = MI_WIDTH (mi);
int y = 0;
int x = 0;
XSetForeground (display, pp->stippledGC, 0xff0000);
while (y < h) {
while (x < w) {
XDrawLine (display, window, pp->stippledGC, x, 0, x, h);
x += 10;
}
x = 0;
XDrawLine (display, window, pp->stippledGC, 0, y, w, y);
y += 10;
}
}
#endif
#if 0
static void
draw_string (ModeInfo * mi, int x, int y, char *s, int color)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
XFontStruct *font = NULL;
char *f_name = "Utopia 60, Helvetica 60";
font = load_font_retry (display, f_name);
assert (font != NULL);
assert (s != NULL);
XSetForeground (display, pp->stippledGC, color);
XDrawString (display, window, pp->stippledGC, x, y, s, strlen (s));
free (font);
}
/* I think this function has a memory leak. Be careful if you enable it. */
/* I only used it briefly to help me debug the ghost's aistate. It prints */
/* the state of each ghost on the left hand side of the screen */
static void
print_ghost_stats (ModeInfo *mi, ghoststruct *g , int ghost_num)
{
char s[1024];
sprintf (s, "GHOST: %d", ghost_num );
switch (g->aistate){
case inbox:
sprintf (s, "%s inbox", s);
break;
case goingout:
sprintf (s, "%s goingout", s);
break;
case randdir:
sprintf (s, "%s randdir", s);
break;
case chasing:
sprintf (s, "%s chasing", s);
break;
case hiding:
sprintf (s, "%s hiding", s);
break;
case goingin:
sprintf (s, "%s goingin",s);
break;
}
draw_string (mi, 0, (ghost_num *3) *10+50, g->last_stat, 0x000000);
draw_string (mi, 0, (ghost_num *3) *10+50, s, 0xff0000);
strcpy(g->last_stat,s);
}
/* prints the number of times pacman has died and his aistate on the left hand */
/* side of the screen */
static void
print_pac_stats ( ModeInfo *mi, pacmanstruct *pac )
{
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
char s[1024];
sprintf (s, "Pacman, Deaths: %d", pac->deaths );
switch ( pac->aistate ){
case ps_eating:
sprintf(s, "%s ps_eating",s );
break;
case ps_chasing:
sprintf(s, "%s ps_chasing",s );
break;
case ps_hiding:
sprintf(s, "%s ps_hiding",s );
break;
case ps_random:
sprintf(s, "%s ps_random",s );
break;
case ps_dieing:
sprintf(s, "%s ps_dieing",s );
break;
}
draw_string ( mi, 0, 200, pp->last_pac_stat, 0x000000);
draw_string ( mi, 0, 200, s, 0xff0000);
strcpy(pp->last_pac_stat, s );
}
#endif
/*Ok, yeah whatever?*/
/*dot_rc_to_pixel - magic that converts row and columns into
*the x and y coordinates of the screen.
*/
static void
dot_rc_to_pixel (ModeInfo * mi, int *x, int *y)
{
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
*x = (pp->xs * *x) +
(pp->xs / 2) - (pp->xs > 32 ? (pp->xs / 16) : 1) + pp->xb;
*y = (pp->ys * *y) +
(pp->ys / 2) - (pp->ys > 32 ? (pp->ys / 16) : 1) + pp->yb;
}
/* dot_width_height - magic used to get the width and height of
* a dot. This dot can also be scaled by a value.
*/
static void
dot_width_height (ModeInfo *mi, int *w, int *h)
{
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
if (pp->xs > 32){
*w = *h = (pp->xs / 16 );
}else {
*w = *h = 1;
}
}
static void
bonus_dot_width_height (ModeInfo *mi, int *w, int *h )
{
*w = *h = MI_HEIGHT (mi) / 65;
}
static void
draw_dot (ModeInfo * mi, pacmangamestruct * pp, int x, int y,
void (*width_height)(ModeInfo * mi, int *w, int *h),
int (*arc_func) (Display * display, Drawable d, GC gc,
int x, int y, unsigned int width,
unsigned int height, int angle1,
int angle2))
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
int w, h;
dot_rc_to_pixel (mi, &x, &y);
width_height(mi, &w, &h);
(void) arc_func (display, window, pp->stippledGC,
x, y, w, h, 0, 23040);
}
static void
draw_bonus_dot (ModeInfo * mi, pacmangamestruct * pp, int x, int y)
{
int x2 = x;
int y2 = y;
setdotcolor (mi);
draw_dot (mi, pp, x, y, bonus_dot_width_height, XFillArc);
dot_rc_to_pixel (mi, &x2, &y2);
#if 0
draw_position (mi, x2, y2, 0xff0000);
#endif
}
static void
clear_bonus_dot (ModeInfo * mi, pacmangamestruct * pp, int x, int y)
{
cleardotcolor (mi);
draw_dot (mi, pp, x, y, bonus_dot_width_height, XFillArc);
}
static void
draw_regular_dot (ModeInfo * mi, pacmangamestruct * pp, int x, int y)
{
setdotcolor (mi);
draw_dot (mi, pp, x, y, dot_width_height, XDrawArc);
}
/* Draws a block in the level at the specified x and y locations. */
static void
drawlevelblock (ModeInfo * mi, pacmangamestruct * pp,
const unsigned x, const unsigned y)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
int dx = 0, dy = 0;
if (pp->xs % 2 == 1)
dx = -1;
if (pp->ys % 2 == 1)
dy = -1;
#ifndef HAVE_JWXYZ
XSetFillStyle (display, pp->stippledGC, FillSolid);
#endif /* !HAVE_JWXYZ */
XSetLineAttributes (display, pp->stippledGC, pp->wallwidth,
LineSolid, CapRound, JoinMiter);
if (pp->xs < 2 || pp->ys < 2) {
switch (pp->level[y * LEVWIDTH + x]) {
case ' ':
case '=':
break;
case '.':
setdotcolor (mi);
(void) XDrawPoint (display, window,
pp->stippledGC,
x * pp->xs + pp->xb, y * pp->ys + pp->yb);
break;
default:
setwallcolor (mi);
(void) XDrawPoint (display, window,
pp->stippledGC,
x * pp->xs + pp->xb, y * pp->ys + pp->yb);
}
return;
}
switch (pp->level[y * LEVWIDTH + x]) {
case ' ':
case '=':
break;
case '.':
setdotcolor (mi);
if (pp->xs < 8 || pp->ys < 8) {
(void) XDrawPoint (display, window,
pp->stippledGC,
x * pp->xs + pp->xb +
pp->xs / 2, y * pp->ys + pp->yb + pp->ys / 2);
break;
}
draw_regular_dot (mi, pp, x, y);
break;
/* What we will probably want to do here is have the pp->level store a 'o' for
* the bonus dots. The we can use the drawing routine above just with a bigger
* radius.
*/
case 'o':
draw_bonus_dot (mi, pp, x, y);
break;
case '-':
setwallcolor (mi);
(void) XDrawLine (display, window, pp->stippledGC,
(pp->xs * x) + pp->xb,
(pp->ys * y) + (pp->ys / 2) + pp->yb,
(pp->xs * (x + 1)) + pp->xb,
(pp->ys * y) + (pp->ys / 2) + pp->yb);
break;
case '|':
setwallcolor (mi);
(void) XDrawLine (display, window, pp->stippledGC,
(pp->xs * x) + (pp->xs / 2) + pp->xb,
(pp->ys * y) + pp->yb,
(pp->xs * x) + (pp->xs / 2) + pp->xb,
(pp->ys * (y + 1)) + pp->yb);
break;
case '_':
setwallcolor (mi);
(void) XDrawArc (display, window, pp->stippledGC,
(pp->xs * x) - (pp->ys / 2) + pp->xb + dx,
(pp->ys * y) + (pp->ys / 2) + pp->yb,
pp->xs, pp->ys, 0 * 64, 90 * 64);
break;
case ',':
setwallcolor (mi);
(void) XDrawArc (display, window, pp->stippledGC,
(pp->xs * x) + (pp->ys / 2) + pp->xb,
(pp->ys * y) + (pp->ys / 2) + pp->yb,
pp->xs, pp->ys, 90 * 64, 90 * 64);
break;
case '`':
setwallcolor (mi);
(void) XDrawArc (display, window, pp->stippledGC,
(pp->xs * x) + (pp->ys / 2) + pp->xb,
(pp->ys * y) - (pp->ys / 2) + pp->yb + dy,
pp->xs, pp->ys, 180 * 64, 90 * 64);
break;
case '\'':
setwallcolor (mi);
(void) XDrawArc (display, window, pp->stippledGC,
(pp->xs * x) - (pp->ys / 2) + pp->xb + dx,
(pp->ys * y) - (pp->ys / 2) + pp->yb + dy,
pp->xs, pp->ys, 270 * 64, 90 * 64);
break;
}
}
/* Draws a complete level. */
static void
drawlevel (ModeInfo * mi)
{
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
unsigned int x, y;
for (y = 0; y < LEVHEIGHT; y++)
for (x = 0; x < LEVWIDTH; x++)
drawlevelblock (mi, pp, x, y);
}
/* There is some overlap so it can be made more efficient */
#define ERASE_IMAGE(d,w,g,x,y,xl,yl,xs,ys) \
if (yl<y) \
(y<(yl+ys))?XFillRectangle(d,w,g,xl,yl,xs,y-(yl)): \
XFillRectangle(d,w,g,xl,yl,xs,ys); \
else if (yl>y) \
(y>(yl-(ys)))?XFillRectangle(d,w,g,xl,y+ys,xs,yl-(y)): \
XFillRectangle(d,w,g,xl,yl,xs,ys); \
if (xl<x) \
(x<(xl+xs))?XFillRectangle(d,w,g,xl,yl,x-(xl),ys): \
XFillRectangle(d,w,g,xl,yl,xs,ys); \
else if (xl>x) \
(x>(xl-(xs)))?XFillRectangle(d,w,g,x+xs,yl,xl-(x),ys): \
XFillRectangle(d,w,g,xl,yl,xs,ys)
/* Draws the pacman sprite, removing the previous location. */
static void
draw_pacman_sprite (ModeInfo * mi)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
unsigned int dir = 0;
int old_mask_dir = 0;
int old_mask_mouth = 0;
Pixmap old_mask, new_mask;
Pixmap pacman;
#define MAX_MOUTH_DELAY 2
#define MAX_DEATH_DELAY 20
if (pp->pacman.aistate == ps_dieing){
pp->pacman.cf = pp->pacman.oldcf;
pp->pacman.rf = pp->pacman.oldrf;
}
else {
pp->pacman.cf = pp->pacman.col * pp->xs + pp->pacman.delta.x *
pp->pacman.cfactor + pp->xb + pp->spritedx;
pp->pacman.rf = pp->pacman.row * pp->ys + pp->pacman.delta.y *
pp->pacman.rfactor + pp->yb + pp->spritedy;
}
dir = (ABS (pp->pacman.cfactor) * (2 - pp->pacman.cfactor) +
ABS (pp->pacman.rfactor) * (1 + pp->pacman.rfactor)) % 4;
if (pp->pm_mouth_delay == MAX_MOUTH_DELAY) {
if (pp->pm_mouth == (MAXMOUTH - 1) || pp->pm_mouth == 0) {
pp->pm_open_mouth = !pp->pm_open_mouth;
}
pp->pm_open_mouth ? pp->pm_mouth++ : pp->pm_mouth--;
pp->pm_mouth_delay = 0;
}
else {
pp->pm_mouth_delay++;
}
if (pp->pacman.aistate == ps_dieing){
if (pp->pm_death_frame >= PAC_DEATH_FRAMES) {
pp->pacman.aistate = ps_eating;
pp->pm_death_frame = 0;
pp->pm_death_delay = 0;
reset_level (mi, 0, False);
return;
}
else {
old_mask = pp->pacmanMask[0][0];
new_mask = pp->pacmanMask[0][0];
pacman = pp->pacman_ds[pp->pm_death_frame];
if (pp->pm_death_delay == MAX_DEATH_DELAY){
pp->pm_death_frame++;
pp->pm_death_delay = 0;
}
else{
pp->pm_death_delay++;
}
}
}
else{
old_mask = pp->pacmanMask[old_mask_dir][old_mask_mouth];
new_mask = pp->pacmanMask[dir][pp->pm_mouth];
pacman = pp->pacmanPixmap[dir][pp->pm_mouth];
}
XSetForeground (display, pp->stippledGC, MI_BLACK_PIXEL (mi));
XSetClipMask (display, pp->stippledGC, old_mask);
XSetClipOrigin (display, pp->stippledGC, pp->pacman.oldcf,
pp->pacman.oldrf);
XFillRectangle (display, window, pp->stippledGC, pp->pacman.oldcf,
pp->pacman.oldrf, pp->spritexs, pp->spriteys);
XSetClipMask (display, pp->stippledGC, new_mask);
XSetClipOrigin (display, pp->stippledGC, pp->pacman.cf, pp->pacman.rf);
XCopyArea (display, pacman, window,
pp->stippledGC, 0, 0, pp->spritexs, pp->spriteys,
pp->pacman.cf, pp->pacman.rf);
XSetClipMask (display, pp->stippledGC, None);
if (pp->pacman.aistate != ps_dieing){
pp->pacman.oldcf = pp->pacman.cf;
pp->pacman.oldrf = pp->pacman.rf;
}
}
#if 0
static void
draw_ghost_position (ModeInfo * mi, ghoststruct * ghost)
{
draw_position (mi, ghost->oldcf, ghost->oldrf, MI_BLACK_PIXEL (mi));
draw_position (mi, ghost->cf, ghost->rf, 0x00ff00);
}
#endif
#if 0
static void
draw_ghost_ndirs ( ModeInfo *mi, ghoststruct * ghost)
{
draw_number (mi, ghost->oldcf, ghost->oldrf, ghost->oldndirs, MI_BLACK_PIXEL (mi));
ghost->oldndirs = ghost->ndirs;
draw_number (mi, ghost->cf, ghost->rf, ghost->ndirs, 0x00ff00);
}
#endif
static void
draw_ghost_sprite (ModeInfo * mi, const unsigned ghost)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
#define MAX_WAG_COUNT 50
unsigned int dir = 0;
unsigned int fs = 0; /*flash scared*/
Pixmap g_pix; /*ghost pixmap*/
dir = (ABS (pp->ghosts[ghost].cfactor) * (2 - pp->ghosts[ghost].cfactor) +
ABS (pp->ghosts[ghost].rfactor) * (1 + pp->ghosts[ghost].rfactor)) % 4;
fs = pp->ghosts[ghost].flash_scared;
assert (fs == 0 || fs == 1);
/* Choose the pixmap */
switch (pp->ghosts[ghost].aistate){
case hiding:
g_pix = pp->s_ghostPixmap[fs][pp->gh_wag];
break;
case goingin:
g_pix = pp->ghostEyes[dir];
#if 1
{
int i = 0;
while ( i < pp->ghosts[ghost].trace_idx ){
XFillRectangle (display,
window,
pp->stippledGC,
pp->ghosts[ghost].trace[i].vx,
pp->ghosts[ghost].trace[i].vy,
pp->spritexs, pp->spriteys);
i++;
}
}
#endif
break;
default:
g_pix = pp->ghostPixmap[ghost][dir][pp->gh_wag];
}
pp->ghosts[ghost].cf =
pp->ghosts[ghost].col * pp->xs + pp->ghosts[ghost].delta.x *
pp->ghosts[ghost].cfactor + pp->xb + pp->spritedx;
pp->ghosts[ghost].rf =
pp->ghosts[ghost].row * pp->ys + pp->ghosts[ghost].delta.y *
pp->ghosts[ghost].rfactor + pp->yb + pp->spritedy;
XSetForeground (display, pp->stippledGC, MI_BLACK_PIXEL (mi));
XSetClipMask (display, pp->stippledGC, pp->ghostMask);
XSetClipOrigin (display, pp->stippledGC,
pp->ghosts[ghost].oldcf, pp->ghosts[ghost].oldrf);
XFillRectangle (display,
window,
pp->stippledGC,
pp->ghosts[ghost].oldcf,
pp->ghosts[ghost].oldrf, pp->spritexs, pp->spriteys);
if (pp->pacman.aistate != ps_dieing) {
drawlevelblock (mi, pp,
(unsigned int) pp->ghosts[ghost].col,
(unsigned int) pp->ghosts[ghost].row);
XSetClipOrigin (display, pp->stippledGC,
pp->ghosts[ghost].cf, pp->ghosts[ghost].rf);
XCopyArea (display, g_pix, window, pp->stippledGC, 0, 0,
pp->spritexs, pp->spriteys, pp->ghosts[ghost].cf,
pp->ghosts[ghost].rf);
}
XSetClipMask (display, pp->stippledGC, None);
#if 0
draw_ghost_position (mi, &(pp->ghosts[ghost]));
#endif
#if 0
draw_ghost_ndirs ( mi, &(pp->ghosts[ghost]));
#endif
if (pp->pacman.aistate != ps_dieing) {
pp->ghosts[ghost].oldcf = pp->ghosts[ghost].cf;
pp->ghosts[ghost].oldrf = pp->ghosts[ghost].rf;
if (pp->gh_wag_count++ == MAX_WAG_COUNT) {
pp->gh_wag = !pp->gh_wag;
pp->gh_wag_count = 0;
}
}
}
static int
ghost_over (ModeInfo * mi, int x, int y)
{
int ghost = 0;
int ret = False;
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
dot_rc_to_pixel (mi, &x, &y);
for (ghost = 0; ghost < pp->nghosts; ghost++) {
if ((pp->ghosts[ghost].cf <= x
&& x <= pp->ghosts[ghost].cf + pp->spritexs)
&& (pp->ghosts[ghost].rf <= y
&& y <= pp->ghosts[ghost].rf + pp->spriteys)) {
ret = True;
break;
}
}
return ret;
}
static void
flash_bonus_dots (ModeInfo * mi)
{
#define MAX_FLASH_COUNT 25
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
int i, x, y;
for (i = 0; i < NUM_BONUS_DOTS; i++) {
if (!pacman_bonus_dot_eaten (pp, i)) {
pacman_bonus_dot_pos (pp, i, &x, &y);
if (ghost_over (mi, x, y))
continue;
if (pp->bd_on)
draw_bonus_dot (mi, pp, x, y);
else
clear_bonus_dot (mi, pp, x, y);
}
}
if (pp->bd_flash_count-- == 0) {
pp->bd_flash_count = MAX_FLASH_COUNT;
pp->bd_on = !pp->bd_on;
}
}
static unsigned int
ate_bonus_dot (ModeInfo * mi)
{
/*Check pacman's position. If it is over a bonus dot and that dot
*has not been eaten, then return true
*/
unsigned int ret = 0;
int idx = 0;
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
if (pacman_is_bonus_dot (pp, pp->pacman.col, pp->pacman.row, &idx)) {
ret = !pacman_bonus_dot_eaten (pp, idx);
pacman_eat_bonus_dot (pp, idx);
}
return ret;
}
static void
ghost_scared (ModeInfo * mi)
{
unsigned int ghost;
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
for (ghost = 0; ghost < pp->nghosts; ghost++) {
if (pp->ghosts[ghost].aistate == goingin ||
pp->ghosts[ghost].aistate == goingout ||
pp->ghosts[ghost].aistate == inbox ) continue;
pp->ghosts[ghost].aistate = hiding;
pp->ghosts[ghost].flash_scared = 0;
if (pp->pacman.aistate != ps_dieing)
pp->pacman.aistate = ps_chasing;
}
}
static void
ghost_not_scared (ModeInfo * mi)
{
unsigned int ghost;
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
for (ghost = 0; ghost < pp->nghosts; ghost++){
if (pp->ghosts[ghost].aistate == goingin ||
pp->ghosts[ghost].aistate == goingout ||
pp->ghosts[ghost].aistate == inbox ) continue;
pp->ghosts[ghost].aistate = chasing;
}
if (pp->pacman.aistate != ps_dieing)
pp->pacman.aistate = ps_eating;
}
static void
ghost_flash_scared (ModeInfo * mi)
{
unsigned int ghost;
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
for (ghost = 0; ghost < pp->nghosts; ghost++)
pp->ghosts[ghost].flash_scared = !pp->ghosts[ghost].flash_scared;
}
/* Does all drawing of moving sprites in the level. */
static void
pacman_tick (ModeInfo * mi)
{
#define DEFAULT_SCARED_TIME 500
#define START_FLASH 200
#define FLASH_COUNT 25
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
unsigned int ghost;
#if 0
draw_grid (mi);
#endif
for (ghost = 0; ghost < pp->nghosts; ghost++) {
draw_ghost_sprite (mi, ghost);
#if 0
print_ghost_stats (mi, &(pp->ghosts[ghost]), ghost);
#endif
}
#if 0
print_pac_stats (mi, &(pp->pacman));
#endif
draw_pacman_sprite (mi);
flash_bonus_dots (mi);
if (ate_bonus_dot (mi)) {
pp->ghost_scared_timer = (random () % 100) + DEFAULT_SCARED_TIME;
ghost_scared (mi);
}
if (pp->ghost_scared_timer > 0) {
if (--pp->ghost_scared_timer == 0)
ghost_not_scared (mi);
else if (pp->ghost_scared_timer <= START_FLASH) {
if (pp->flash_timer <= 0) {
pp->flash_timer = FLASH_COUNT;
ghost_flash_scared (mi);
}
pp->flash_timer--;
}
}
/*
We don't want to miss the last death sequence. So if pacman has died three times
we wait for his state to change from dieing to something else before we repopulate
the level. If pacman ate all of the dots then we just repopulate.
*/
if (pp->dotsleft == 0 )
repopulate (mi);
else if (pp->pacman.deaths >= 3){
if (pp->old_pac_state == ps_dieing && pp->pacman.aistate != ps_dieing)
repopulate (mi);
}
pp->old_pac_state = pp->pacman.aistate;
}
/* CODE TO LOAD AND SCALE THE PIXMAPS
*/
/* Grabbed the scaling routine off of usenet.
* Changed it so that the information specific
* to the source pixmap does not have to be a parameter.
*
* There is probably a better way to scale pixmaps.
* From: Chris Fiddyment (cxf@itd.dsto.gov.au)
* Subject: Scaling Pixmap Algorithm.
* Newsgroups: comp.graphics.algorithms
* Date: 1994-07-06 18:51:38 PST
* -jeremy
*/
static Pixmap
scale_pixmap (Display ** dpy, GC gc, Pixmap source, int dwidth, int dheight)
{
Pixmap temp, dest;
int j, end;
float i;
float xscale, yscale;
unsigned int swidth, sheight;
Window window;
int x, y;
unsigned border_width_return, depth;
XGetGeometry (*dpy, source, &window, &x, &y, &swidth, &sheight,
&border_width_return, &depth);
xscale = (float) swidth / (float) dwidth; /* Scaling factors */
yscale = (float) sheight / (float) dheight;
dest = XCreatePixmap (*dpy, window, dwidth, dheight, depth);
if (!dest) {
fprintf (stderr, "%s Could not scale image", progname);
}
temp = XCreatePixmap (*dpy, window, dwidth, sheight, depth);
if (!temp) {
fprintf (stderr, "%s Could not scale image", progname);
}
j = 0;
end = dwidth * xscale;
/* Scale width of source into temp pixmap */
for (i = 0; i <= end; i += xscale)
XCopyArea (*dpy, source, temp, gc, i, 0, 1, sheight, j++, 0);
j = 0;
end = dheight * yscale;
/* Scale height of temp into dest pixmap */
for (i = 0; i <= end; i += yscale)
XCopyArea (*dpy, temp, dest, gc, 0, i, dwidth, 1, 0, j++);
XFreePixmap (*dpy, temp);
return (Pixmap) dest;
}
static Pixmap
subpixmap (Display *dpy, Window window, Pixmap src,
int w, int h, int y, int depth)
{
XGCValues gcv;
Pixmap dest = XCreatePixmap (dpy, window, w, h, depth);
GC gc = XCreateGC (dpy, src, 0, &gcv);
XCopyArea (dpy, src, dest, gc, 0, y, w, h, 0, 0);
XFreeGC (dpy, gc);
return dest;
}
/* Load the ghost pixmaps and their mask. */
static void
load_pixmaps (Display ** dpy, Window window, pacmangamestruct ** ps)
{
pacmangamestruct *pp = *ps;
Display *display = *dpy;
Pixmap sprites, sprites_mask;
int i, j, k, /* m, */ sw, sh, srcy;
/* int w = pp->spritexs;
int h = pp->spriteys;*/
GC gc = 0;
/* Pixmap temp;*/
XGCValues gcv;
XWindowAttributes xgwa;
XGetWindowAttributes (display, window, &xgwa);
sprites = image_data_to_pixmap (display, window,
pacman_png, sizeof(pacman_png), &sw, &sh,
&sprites_mask);
if (!sprites || !sprites_mask) abort();
srcy = 0;
gc = XCreateGC (display, sprites_mask, 0, &gcv);
pp->ghostMask = subpixmap (display, window, sprites_mask,
sw, sw, srcy, 1);
pp->ghostMask = scale_pixmap (&display, gc, pp->ghostMask,
pp->spritexs, pp->spriteys);
for (i = 0; i < 4; i++) {
/* m = 0; */
for (j = 0; j < MAXGDIR; j++) {
for (k = 0; k < MAXGWAG; k++) {
pp->ghostPixmap[i][j][k] =
subpixmap (display, window, sprites, sw, sw, srcy,
xgwa.depth);
pp->ghostPixmap[i][j][k] =
scale_pixmap (&display, pp->stippledGC,
pp->ghostPixmap[i][j][k], pp->spritexs,
pp->spriteys);
/* m++; */
srcy += sw;
if (srcy >= sh) abort();
}
}
}
/* load the scared ghost */
/* m = 0; */
for (i = 0; i < MAXGFLASH; i++) {
for (j = 0; j < MAXGWAG; j++) {
pp->s_ghostPixmap[i][j] =
subpixmap (display, window, sprites, sw, sw, srcy,
xgwa.depth);
/* m++; */
pp->s_ghostPixmap[i][j] = scale_pixmap (&display, pp->stippledGC,
pp->s_ghostPixmap[i][j],
pp->spritexs,
pp->spriteys);
srcy += sw;
if (srcy >= sh) abort();
}
}
/* load the ghost eyes */
for (i = 0; i < MAXGDIR; i++) {
pp->ghostEyes[i] =
subpixmap (display, window, sprites, sw, sw, srcy, xgwa.depth);
pp->ghostEyes[i] = scale_pixmap (&display, pp->stippledGC,
pp->ghostEyes[i],
pp->spritexs,
pp->spriteys);
srcy += sw;
if (srcy >= sh) abort();
}
/* Load the pacman pixmaps and their mask. */
/* m = 0; */
for (i = 0; i < 4; i++) {
for (j = 0; j < MAXMOUTH; j++) {
pp->pacmanPixmap[i][j] =
subpixmap (display, window, sprites, sw, sw, srcy,
xgwa.depth);
pp->pacmanMask[i][j] =
subpixmap (display, window, sprites_mask, sw, sw, srcy, 1);
/* m++; */
pp->pacmanPixmap[i][j] = scale_pixmap (&display, pp->stippledGC,
pp->pacmanPixmap[i][j],
pp->spritexs,
pp->spriteys);
pp->pacmanMask[i][j] =
scale_pixmap (&display, gc, pp->pacmanMask[i][j],
pp->spritexs, pp->spriteys);
srcy += sw;
if (srcy >= sh) abort();
}
}
/* Load pacman death sequence */
for ( i = 0; i < PAC_DEATH_FRAMES; i++ ){
if (srcy > sh - sw) abort();
pp->pacman_ds[i] =
subpixmap (display, window, sprites, sw, sw, srcy, xgwa.depth);
pp->pacman_ds_mask[i] =
subpixmap (display, window, sprites_mask, sw, sw, srcy, 1);
pp->pacman_ds[i] = scale_pixmap ( &display, pp->stippledGC,
pp->pacman_ds[i],
pp->spritexs,
pp->spriteys);
pp->pacman_ds_mask[i] =
scale_pixmap (&display, gc, pp->pacman_ds_mask[i],
pp->spritexs, pp->spriteys);
srcy += sw;
}
XFreeGC (*dpy, gc);
XFreePixmap (*dpy, sprites);
XFreePixmap (*dpy, sprites_mask);
}
/* Hook function, sets state to initial position. */
ENTRYPOINT void
init_pacman (ModeInfo * mi)
{
Display *display = MI_DISPLAY (mi);
Window window = MI_WINDOW (mi);
long size = MI_SIZE (mi);
pacmangamestruct *pp;
XGCValues gcv;
int i, j, k;
MI_INIT (mi, pacman_games);
pp = &pacman_games[MI_SCREEN (mi)];
pp->width = (unsigned short) MI_WIDTH (mi);
pp->height = (unsigned short) MI_HEIGHT (mi);
for (i = 0; i < 4; i++) {
for (j = 0; j < MAXGDIR; j++) {
for (k = 0; k < MAXGWAG; k++) {
if (pp->ghostPixmap[i][j][k] != None) {
XFreePixmap (display, pp->ghostPixmap[i][j][k]);
pp->ghostPixmap[i][j][k] = None;
pp->graphics_format = 0 /*IS_NONE */ ;
}
}
}
}
for (i = 0; i < MAXGFLASH; i++) {
for (j = 0; j < MAXGWAG; j++) {
if (pp->s_ghostPixmap[i][j] != None) {
XFreePixmap (display, pp->s_ghostPixmap[i][j]);
pp->s_ghostPixmap[i][j] = None;
}
}
}
if (size == 0 ||
MINGRIDSIZE * size > (int) pp->width ||
MINGRIDSIZE * size > (int) pp->height) {
double scale = MIN (pp->width / LEVWIDTH, pp->height / LEVHEIGHT);
if (pp->width > pp->height * 5 || /* weird window aspect ratio */
pp->height > pp->width * 5)
scale = 0.8 * (pp->width / pp->height
? pp->width / (double) pp->height
: pp->height / (double) pp->width);
pp->ys = MAX (scale, 1);
pp->xs = pp->ys;
}
else {
if (size < -MINSIZE)
pp->ys = (short) (NRAND (MIN (-size, MAX (MINSIZE,
MIN (pp->width,
pp->height) /
MINGRIDSIZE))
- MINSIZE + 1) + MINSIZE);
else if (size < MINSIZE)
pp->ys = MINSIZE;
else
pp->ys = (short) (MIN (size,
MAX (MINSIZE, MIN (pp->width, pp->height) /
MINGRIDSIZE)));
pp->xs = pp->ys;
}
pp->wallwidth = (unsigned int) (pp->xs + pp->ys) >> 4;
if (pp->wallwidth < 1)
pp->wallwidth = 1;
pp->incx = (pp->xs >> 3) + 1;
pp->incy = (pp->ys >> 3) + 1;
pp->ncols = (unsigned short) MAX (LEVWIDTH, 2);
pp->nrows = (unsigned short) MAX (LEVHEIGHT, 2);
pp->xb = (pp->width - pp->ncols * pp->xs) >> 1;
pp->yb = (pp->height - pp->nrows * pp->ys) >> 1;
pp->spritexs = MAX (pp->xs + (pp->xs >> 1) - 1, 1);
pp->spriteys = MAX (pp->ys + (pp->ys >> 1) - 1, 1);
pp->spritedx = (pp->xs - pp->spritexs) >> 1;
pp->spritedy = (pp->ys - pp->spriteys) >> 1;
pp->old_pac_state = ps_chasing;
if (!pp->stippledGC) {
gcv.foreground = MI_BLACK_PIXEL (mi);
gcv.background = MI_BLACK_PIXEL (mi);
if ((pp->stippledGC = XCreateGC (display, window,
GCForeground | GCBackground,
&gcv)) == None) {
free_pacman (mi);
return;
}
}
#ifdef HAVE_JWXYZ
jwxyz_XSetAntiAliasing (display, pp->stippledGC, False);
#endif
load_pixmaps (&display, window, &pp);
pp->pacman.lastbox = START;
pp->pacman.mouthdirection = 1;
pp->pacman.nextcol = NOWHERE;
pp->pacman.nextrow = NOWHERE;
if (pp->ghosts != NULL) {
free (pp->ghosts);
pp->ghosts = (ghoststruct *) NULL;
}
pp->nghosts = GHOSTS;
if (!pp->ghosts)
if ((pp->ghosts = (ghoststruct *) calloc ((size_t) pp->nghosts,
sizeof (ghoststruct))) ==
NULL) {
free_pacman (mi);
return;
}
pp->pacman.mouthstage = MAXMOUTH - 1;
XClearWindow (MI_DISPLAY(mi), MI_WINDOW(mi));
repopulate (mi);
}
/* Callback function called for each tick. This is the complete machinery of
everything that moves. */
ENTRYPOINT void
draw_pacman (ModeInfo * mi)
{
unsigned int g;
pacmangamestruct *pp;
if (pacman_games == NULL)
return;
pp = &pacman_games[MI_SCREEN (mi)];
if (pp->ghosts == NULL)
return;
pp->pacman.err.x = (pp->pacman.err.x + 1) % pp->pacman.speed;
pp->pacman.err.y = (pp->pacman.err.y + 1) % pp->pacman.speed;
pp->pacman.delta.x += pp->pacman.err.x != 0 ? pp->incx : 0;
pp->pacman.delta.y += pp->pacman.err.y != 0 ? pp->incy : 0;
if (pp->pacman.delta.x >= pp->xs && pp->pacman.delta.y >= pp->ys) {
pacman_update (mi, pp, &(pp->pacman));
check_death (mi, pp);
pp->pacman.delta.x = pp->incx;
pp->pacman.delta.y = pp->incy;
}
if (pp->pacman.delta.x > pp->xs + pp->incx)
pp->pacman.delta.x = pp->xs + pp->incx;
if (pp->pacman.delta.y > pp->ys + pp->incy)
pp->pacman.delta.y = pp->ys + pp->incy;
for (g = 0; g < pp->nghosts; g++) {
pp->ghosts[g].err.x = (pp->ghosts[g].err.x + 1) % pp->ghosts[g].speed;
pp->ghosts[g].err.y = (pp->ghosts[g].err.y + 1) % pp->ghosts[g].speed;
pp->ghosts[g].delta.x += pp->ghosts[g].err.x != 0 ? pp->incx : 0;
pp->ghosts[g].delta.y += pp->ghosts[g].err.y != 0 ? pp->incy : 0;
if (pp->ghosts[g].delta.x >= pp->xs &&
pp->ghosts[g].delta.y >= pp->ys) {
pacman_ghost_update (pp, &(pp->ghosts[g]));
pp->ghosts[g].delta.x = pp->incx;
pp->ghosts[g].delta.y = pp->incy;
}
if (pp->ghosts[g].delta.x > pp->xs + pp->incx)
pp->ghosts[g].delta.x = pp->xs + pp->incx;
if (pp->ghosts[g].delta.y > pp->ys + pp->incy)
pp->ghosts[g].delta.y = pp->ys + pp->incy;
}
pacman_tick (mi);
}
#ifndef STANDALONE
/* Refresh current level. */
ENTRYPOINT void
refresh_pacman (ModeInfo * mi)
{
drawlevel (mi);
pacman_tick (mi);
}
#endif
ENTRYPOINT void
reshape_pacman(ModeInfo * mi, int width, int height)
{
pacmangamestruct *pp = &pacman_games[MI_SCREEN (mi)];
pp->width = width;
pp->height = height;
pp->xb = (pp->width - pp->ncols * pp->xs) >> 1;
pp->yb = (pp->height - pp->nrows * pp->ys) >> 1;
XClearWindow (MI_DISPLAY(mi), MI_WINDOW(mi));
/* repopulate (mi); */
drawlevel (mi);
}
#ifndef STANDALONE
/* Callback to change level. */
ENTRYPOINT void
change_pacman (ModeInfo * mi)
{
XClearWindow (MI_DISPLAY(mi), MI_WINDOW(mi));
repopulate (mi);
}
#endif /* !STANDALONE */
XSCREENSAVER_MODULE ("Pacman", pacman)
#endif /* MODE_pacman */
|