ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Client.xs
(Generate patch)

Comparing deliantra/Deliantra-Client/Client.xs (file contents):
Revision 1.28 by root, Thu Apr 13 00:25:28 2006 UTC vs.
Revision 1.39 by root, Sat Apr 15 00:04:58 2006 UTC

6#include <stdio.h> 6#include <stdio.h>
7 7
8#include <SDL.h> 8#include <SDL.h>
9#include <SDL_image.h> 9#include <SDL_image.h>
10#include <SDL_opengl.h> 10#include <SDL_opengl.h>
11
12#include <glib/gmacros.h>
11 13
12#include <pango/pango.h> 14#include <pango/pango.h>
13#include <pango/pangofc-fontmap.h> 15#include <pango/pangofc-fontmap.h>
14#include <pango/pangoft2.h> 16#include <pango/pangoft2.h>
15 17
18#include <netinet/in.h> 20#include <netinet/in.h>
19#include <netinet/tcp.h> 21#include <netinet/tcp.h>
20 22
21#include <inttypes.h> 23#include <inttypes.h>
22 24
25#define FOW_DARKNESS 32
26
27#define MAP_EXTEND_X 32
28#define MAP_EXTEND_Y 512
29
23static PangoContext *context; 30static PangoContext *context;
24static PangoFontMap *fontmap; 31static PangoFontMap *fontmap;
25 32
26typedef struct cf_layout { 33typedef struct cf_layout {
27 PangoLayout *pl; 34 PangoLayout *pl;
30 37
31static void 38static void
32substitute_func (FcPattern *pattern, gpointer data) 39substitute_func (FcPattern *pattern, gpointer data)
33{ 40{
34 FcPatternAddBool (pattern, FC_HINTING , 1); 41 FcPatternAddBool (pattern, FC_HINTING , 1);
35 FcPatternAddBool (pattern, FC_AUTOHINT, 1); 42 FcPatternAddBool (pattern, FC_AUTOHINT, 0);
36} 43}
37 44
38static void 45static void
39layout_update (CFClient__Layout self) 46layout_update (CFClient__Layout self)
40{ 47{
56 if (!*w) *w = 1; 63 if (!*w) *w = 1;
57 if (!*h) *h = 1; 64 if (!*h) *h = 1;
58} 65}
59 66
60typedef struct { 67typedef struct {
68 GLint name;
69 int w, h;
70 float s, t;
71 uint8_t r, g, b, a;
72} mapface;
73
74typedef struct {
75 int16_t darkness;
61 uint16_t face[3]; 76 uint16_t face[3];
62 uint8_t darkness;
63 uint8_t padding;
64} mapcell; 77} mapcell;
65 78
66typedef struct { 79typedef struct {
67 uint32_t cols; 80 int32_t c0, c1;
68 mapcell *col; 81 mapcell *col;
69} maprow; 82} maprow;
70 83
71typedef struct map { 84typedef struct map {
72 int x, y, w, h; 85 int x, y, w, h;
86 int vx, vy;
73 int faces; 87 int faces;
74 GLint *face; 88 mapface *face;
75 89
76 uint32_t rows; 90 uint32_t rows;
77 maprow *row; 91 maprow *row;
78} *CFClient__Map; 92} *CFClient__Map;
93
94static char *
95prepend (char *ptr, int sze, int inc)
96{
97 char *p;
98
99 New (0, p, sze + inc, char);
100 Zero (p, inc, char);
101 Move (ptr, p + inc, sze, char);
102 Safefree (ptr);
103
104 return p;
105}
106
107static char *
108append (char *ptr, int sze, int inc)
109{
110 Renew (ptr, sze + inc, char);
111 Zero (ptr + sze, inc, char);
112
113 return ptr;
114}
115
116#define Append(type,ptr,sze,inc) (ptr) = (type *)append ((char *)ptr, (sze) * sizeof (type), (inc) * sizeof (type))
117#define Prepend(type,ptr,sze,inc) (ptr) = (type *)prepend ((char *)ptr, (sze) * sizeof (type), (inc) * sizeof (type))
118
119static void
120map_clear (CFClient__Map self)
121{
122 int r;
123
124 for (r = 0; r < self->rows; r++)
125 Safefree (self->row[r].col);
126
127 Safefree (self->row);
128
129 self->x = 0;
130 self->y = 0;
131 self->vx = 0;
132 self->vy = 0;
133 self->row = 0;
134 self->rows = 0;
135}
136
137static void
138map_blank (CFClient__Map self, int x0, int y0, int w, int h)
139{
140 int x, y;
141
142 for (y = y0; y < y0 + h; y++)
143 if (y >= 0)
144 {
145 if (y >= self->rows)
146 break;
147
148 maprow *row = self->row + y;
149
150 for (x = x0; x < x0 + w; x++)
151 if (x >= row->c0)
152 {
153 if (x >= row->c1)
154 break;
155
156 row->col[x - row->c0].darkness = -1;
157 }
158 }
159}
79 160
80MODULE = CFClient PACKAGE = CFClient 161MODULE = CFClient PACKAGE = CFClient
81 162
82PROTOTYPES: ENABLE 163PROTOTYPES: ENABLE
83 164
162 fmt.colorkey = 0; 243 fmt.colorkey = 0;
163 fmt.alpha = 0; 244 fmt.alpha = 0;
164 245
165 surface2 = SDL_ConvertSurface (surface, &fmt, SDL_SWSURFACE); 246 surface2 = SDL_ConvertSurface (surface, &fmt, SDL_SWSURFACE);
166 247
248 assert (surface2->pitch == surface2->w * 4);
249
167 EXTEND (SP, 5); 250 EXTEND (SP, 5);
168 PUSHs (sv_2mortal (newSViv (surface2->w))); 251 PUSHs (sv_2mortal (newSViv (surface2->w)));
169 PUSHs (sv_2mortal (newSViv (surface2->h))); 252 PUSHs (sv_2mortal (newSViv (surface2->h)));
170 SDL_LockSurface (surface2); 253 SDL_LockSurface (surface2);
171 PUSHs (sv_2mortal (newSVpvn (surface2->pixels, surface2->h * surface2->pitch))); 254 PUSHs (sv_2mortal (newSVpvn (surface2->pixels, surface2->h * surface2->pitch)));
177 SDL_FreeSurface (surface); 260 SDL_FreeSurface (surface);
178 SDL_FreeSurface (surface2); 261 SDL_FreeSurface (surface2);
179} 262}
180 263
181void 264void
265average (int x, int y, uint32_t *data)
266 PPCODE:
267{
268 // only good for x * y < 32768
269 uint32_t r = 0, g = 0, b = 0, a = 0;
270
271 x = y = x * y;
272
273 assert (x < 32768);
274
275 while (x--)
276 {
277 uint32_t p = *data++;
278
279 r += (p ) & 255;
280 g += (p >> 8) & 255;
281 b += (p >> 16) & 255;
282 a += (p >> 24) & 255;
283 }
284
285 EXTEND (SP, 4);
286 PUSHs (sv_2mortal (newSViv (r * 255 / y)));
287 PUSHs (sv_2mortal (newSViv (g * 255 / y)));
288 PUSHs (sv_2mortal (newSViv (b * 255 / y)));
289 PUSHs (sv_2mortal (newSViv (a * 255 / y)));
290}
291
292void
182fatal (char *message) 293fatal (char *message)
183 CODE: 294 CODE:
184#ifdef WIN32 295#ifdef WIN32
185 MessageBox (0, message, "Crossfire+ Fatal Error", MB_OK | MB_ICONERROR | MB_SETFOREGROUND); 296 MessageBox (0, message, "Crossfire+ Fatal Error", MB_OK | MB_ICONERROR | MB_SETFOREGROUND);
186#else 297#else
205 CODE: 316 CODE:
206 g_object_unref (self->pl); 317 g_object_unref (self->pl);
207 Safefree (self); 318 Safefree (self);
208 319
209void 320void
321set_text (CFClient::Layout self, SV *text_)
322 CODE:
323{
324 STRLEN textlen;
325 char *text = SvPVutf8 (text_, textlen);
326
327 pango_layout_set_text (self->pl, text, textlen);
328}
329
330void
210set_markup (CFClient::Layout self, SV *text_) 331set_markup (CFClient::Layout self, SV *text_)
211 CODE: 332 CODE:
212{ 333{
213 STRLEN textlen; 334 STRLEN textlen;
214 char *text = SvPVutf8 (text_, textlen); 335 char *text = SvPVutf8 (text_, textlen);
259 PPCODE: 380 PPCODE:
260{ 381{
261 PangoRectangle strong_pos; 382 PangoRectangle strong_pos;
262 layout_update (self); 383 layout_update (self);
263 pango_layout_get_cursor_pos (self->pl, index, &strong_pos, 0); 384 pango_layout_get_cursor_pos (self->pl, index, &strong_pos, 0);
385
264 EXTEND (SP, 3); 386 EXTEND (SP, 3);
265 PUSHs (sv_2mortal (newSViv (strong_pos.x / PANGO_SCALE))); 387 PUSHs (sv_2mortal (newSViv (strong_pos.x / PANGO_SCALE)));
266 PUSHs (sv_2mortal (newSViv (strong_pos.y / PANGO_SCALE))); 388 PUSHs (sv_2mortal (newSViv (strong_pos.y / PANGO_SCALE)));
267 PUSHs (sv_2mortal (newSViv (strong_pos.height / PANGO_SCALE))); 389 PUSHs (sv_2mortal (newSViv (strong_pos.height / PANGO_SCALE)));
268} 390}
300} 422}
301 423
302MODULE = CFClient PACKAGE = CFClient::Texture 424MODULE = CFClient PACKAGE = CFClient::Texture
303 425
304void 426void
305draw_quad (SV *self, double x, double y, double w = 0, double h = 0) 427draw_quad (SV *self, float x, float y, float w = 0, float h = 0)
306 PROTOTYPE: $$$;$$ 428 PROTOTYPE: $$$;$$
307 CODE: 429 CODE:
308{ 430{
309 HV *hv = (HV *)SvRV (self); 431 HV *hv = (HV *)SvRV (self);
310 double s = SvNV (*hv_fetch (hv, "s", 1, 1)); 432 float s = SvNV (*hv_fetch (hv, "s", 1, 1));
311 double t = SvNV (*hv_fetch (hv, "t", 1, 1)); 433 float t = SvNV (*hv_fetch (hv, "t", 1, 1));
312 int name = SvIV (*hv_fetch (hv, "name", 4, 1)); 434 int name = SvIV (*hv_fetch (hv, "name", 4, 1));
435 int wrap_mode = SvIV (*hv_fetch (hv, "wrap_mode", 9, 1));
313 436
314 if (items < 5) 437 if (items < 5)
315 { 438 {
316 w = SvNV (*hv_fetch (hv, "w", 1, 1)); 439 w = SvNV (*hv_fetch (hv, "w", 1, 1));
317 h = SvNV (*hv_fetch (hv, "h", 1, 1)); 440 h = SvNV (*hv_fetch (hv, "h", 1, 1));
318 } 441 }
319 442
320 glBindTexture (GL_TEXTURE_2D, name); 443 glBindTexture (GL_TEXTURE_2D, name);
444 if (wrap_mode) {
445 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
446 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
447 }
321 glBegin (GL_QUADS); 448 glBegin (GL_QUADS);
322 glTexCoord2d (0, 0); glVertex2d (x , y ); 449 glTexCoord2f (0, 0); glVertex2f (x , y );
323 glTexCoord2d (0, t); glVertex2d (x , y + h); 450 glTexCoord2f (0, t); glVertex2f (x , y + h);
324 glTexCoord2d (s, t); glVertex2d (x + w, y + h); 451 glTexCoord2f (s, t); glVertex2f (x + w, y + h);
325 glTexCoord2d (s, 0); glVertex2d (x + w, y ); 452 glTexCoord2f (s, 0); glVertex2f (x + w, y );
326 glEnd (); 453 glEnd ();
327} 454}
328 455
329MODULE = CFClient PACKAGE = CFClient::Map 456MODULE = CFClient PACKAGE = CFClient::Map
330 457
334 New (0, RETVAL, 1, struct map); 461 New (0, RETVAL, 1, struct map);
335 RETVAL->x = 0; 462 RETVAL->x = 0;
336 RETVAL->y = 0; 463 RETVAL->y = 0;
337 RETVAL->w = map_width; 464 RETVAL->w = map_width;
338 RETVAL->h = map_height; 465 RETVAL->h = map_height;
466 RETVAL->vx = 0;
467 RETVAL->vy = 0;
339 RETVAL->faces = 0; 468 RETVAL->faces = 8192;
340 RETVAL->face = 0; 469 Newz (0, RETVAL->face, RETVAL->faces, mapface);
341
342 RETVAL->rows = 0; 470 RETVAL->rows = 0;
343 RETVAL->row = 0; 471 RETVAL->row = 0;
344 OUTPUT: 472 OUTPUT:
345 RETVAL 473 RETVAL
346 474
347void 475void
348DESTROY (CFClient::Map self) 476DESTROY (CFClient::Map self)
349 CODE: 477 CODE:
350{ 478{
351 int r, c; 479 map_clear (self);
352
353 Safefree (self->face); 480 Safefree (self->face);
354 for (r = 0; r < self->rows; r++) 481 Safefree (self);
482}
483
484void
485clear (CFClient::Map self)
486 CODE:
487 map_clear (self);
488
489void
490set_texture (CFClient::Map self, int face, int name, int w, int h, float s, float t, int r, int g, int b, int a)
491 CODE:
492{
493 while (self->faces < face)
355 { 494 {
356 maprow *row = self->row + r; 495 Append (mapface, self->face, self->faces, self->faces);
357 if (!row) 496 self->faces *= 2;
358 continue;
359
360 Safefree (row->col);
361 } 497 }
362 498
363 Safefree (self->row); 499 mapface *f = self->face + face;
364 Safefree (self);
365}
366 500
501 f->name = name;
502 f->w = w;
503 f->h = h;
504 f->s = s;
505 f->t = t;
506 f->r = r;
507 f->g = g;
508 f->b = b;
509 f->a = a;
510}
511
512void
513scroll (CFClient::Map self, int dx, int dy)
514 CODE:
515{
516 if (dx > 0)
517 map_blank (self, self->x, self->y, dx - 1, self->h);
518 else if (dx < 0)
519 map_blank (self, self->x + self->w + dx + 1, self->y, 1 - dx, self->h);
520
521 if (dy > 0)
522 map_blank (self, self->x, self->y, self->w, dy - 1);
523 else if (dy < 0)
524 map_blank (self, self->x, self->y + self->h + dy + 1, self->w, 1 - dy);
525
526 self->x += dx;
527 self->y += dy;
528
529 while (self->y < 0)
530 {
531 Prepend (maprow, self->row, self->rows, MAP_EXTEND_Y);
532
533 self->rows += MAP_EXTEND_Y;
534 self->y += MAP_EXTEND_Y;
535 }
536}
537
538void
539map1a_update (CFClient::Map self, SV *data_)
540 CODE:
541{
542 uint8_t *data = (uint8_t *)SvPVbyte_nolen (data_);
543 uint8_t *data_end = (uint8_t *)SvEND (data_);
544
545 while (data < data_end)
546 {
547 int flags = (data [0] << 8) + data [1]; data += 2;
548
549 int x = ((flags >> 10) & 63) + self->x;
550 int y = ((flags >> 4) & 63) + self->y;
551
552 while (y >= self->rows)
553 {
554 Prepend (maprow, self->row, self->rows, MAP_EXTEND_Y);
555
556 self->rows += MAP_EXTEND_Y;
557 }
558
559 maprow *row = self->row + y;
560
561 if (!row->col)
562 {
563 Newz (0, row->col, MAP_EXTEND_X, mapcell);
564 row->c0 = self->x - MAP_EXTEND_X / 4;
565 row->c1 = row->c0 + MAP_EXTEND_X;
566 }
567
568 if (row->c0 > x)
569 {
570 int extend = row->c0 - x + MAP_EXTEND_X;
571 Prepend (mapcell, row->col, row->c1 - row->c0, extend);
572 row->c0 -= extend;
573 }
574 else if (x >= row->c1)
575 {
576 int extend = x - row->c1 + MAP_EXTEND_X;
577 Append (mapcell, row->col, row->c1 - row->c0, extend);
578 row->c1 += extend;
579 }
580
581 assert (y >= 0);
582 assert (y < self->rows);
583 assert (x >= row->c0);
584 assert (x < row->c1);
585 mapcell *cell = row->col + (x - row->c0);
586
587 if (flags & 15)
588 {
589 if (cell->darkness < 0 && x < self->w && y < self->h)
590 {
591 cell->darkness = 0;
592 cell->face [0] = 0;
593 cell->face [1] = 0;
594 cell->face [2] = 0;
595 }
596
597 cell->darkness = flags & 8 ? *data++ : 255;
598
599 if (flags & 4)
600 {
601 cell->face [0] = (data [0] << 8) + data [1]; data += 2;
602 }
603
604 if (flags & 2)
605 {
606 cell->face [1] = (data [0] << 8) + data [1]; data += 2;
607 }
608
609 if (flags & 1)
610 {
611 cell->face [2] = (data [0] << 8) + data [1]; data += 2;
612 }
613 }
614 else
615 cell->darkness = -1;
616 }
617}
618
619void
620draw (CFClient::Map self, int shift_x, int shift_y, int x0, int y0, int sw, int sh)
621 PPCODE:
622{
623 int sw4 = (sw + 3) & ~3;
624 SV *darkness_sv = sv_2mortal (newSV (sw4 * sh));
625 uint8_t *darkness = (uint8_t *)SvPVX (darkness_sv);
626
627 SvPOK_only (darkness_sv);
628 SvCUR_set (darkness_sv, sw4 * sh);
629
630 int vx = self->x + (self->w - sw) / 2 - shift_x;
631 int vy = self->y + (self->h - sh) / 2 - shift_y;
632
633 if (0)
634 {
635 int vx = self->vx = self->w >= sw
636 ? self->x + (self->w - sw) / 2
637 : MIN (self->x, MAX (self->x + self->w - sw + 1, self->vx));
638
639 int vy = self->vy = self->h >= sh
640 ? self->y + (self->h - sh) / 2
641 : MIN (self->y, MAX (self->y + self->h - sh + 1, self->vy));
642 }
643
644 glColor4ub (255, 255, 255, 255);
645
646 glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
647 glEnable (GL_BLEND);
648 glEnable (GL_TEXTURE_2D);
649 glTexEnvi (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
650
651 int x, y, z;
652
653 int last_name = 0;
654
655 glBegin (GL_QUADS);
656
657 for (z = 0; z < 3; z++)
658 for (y = 0; y < sh; y++)
659 if (0 <= y + vy && y + vy < self->rows)
660 {
661 maprow *row = self->row + (y + vy);
662
663 for (x = 0; x < sw; x++)
664 if (row->c0 <= x + vx && x + vx < row->c1)
665 {
666 mapcell *cell = row->col + (x + vx - row->c0);
667
668 darkness[y * sw4 + x] = cell->darkness < 0
669 ? 255 - FOW_DARKNESS
670 : 255 - cell->darkness;
671
672 uint16_t face = cell->face [z];
673
674 if (face)
675 {
676 mapface tex = self->face [face];
677
678 int px = (x + 1) * 32 - tex.w;
679 int py = (y + 1) * 32 - tex.h;
680
681 if (last_name != tex.name)
682 {
683 glEnd ();
684 last_name = tex.name;
685 glBindTexture (GL_TEXTURE_2D, last_name);
686 glBegin (GL_QUADS);
687 }
688
689 glTexCoord2f (0 , 0 ); glVertex2f (px , py );
690 glTexCoord2f (0 , tex.t); glVertex2f (px , py + tex.h);
691 glTexCoord2f (tex.s, tex.t); glVertex2f (px + tex.w, py + tex.h);
692 glTexCoord2f (tex.s, 0 ); glVertex2f (px + tex.w, py );
693 }
694 }
695 }
696
697 glEnd ();
698
699 glDisable (GL_TEXTURE_2D);
700 glDisable (GL_BLEND);
701
702 EXTEND (SP, 3);
703 PUSHs (sv_2mortal (newSViv (sw4)));
704 PUSHs (sv_2mortal (newSViv (sh)));
705 PUSHs (darkness_sv);
706}
707

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines