ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/plugins/cfperl/cfperl.xs
(Generate patch)

Comparing deliantra/server/plugins/cfperl/cfperl.xs (file contents):
Revision 1.35 by root, Fri Mar 17 00:51:33 2006 UTC vs.
Revision 1.45 by root, Fri Mar 31 20:59:17 2006 UTC

42#else 42#else
43#define MODULEAPI 43#define MODULEAPI
44#endif 44#endif
45 45
46#include <plugin_common.h> 46#include <plugin_common.h>
47#include <sounds.h>
47 48
48#include <stdarg.h> 49#include <stdarg.h>
49 50
50#include "perlxsi.c" 51#include "perlxsi.c"
51 52
64typedef struct 65typedef struct
65{ 66{
66 object* who; 67 object* who;
67 object* activator; 68 object* activator;
68 object* third; 69 object* third;
70 object* event;
69 mapstruct* map; 71 mapstruct* map;
70 char message[1024]; 72 char message[1024];
71 int fix; // seems to be python-only, and should not be part of the API 73 int fix; // seems to be python-only, and should not be part of the API
72 int event_code; 74 int event_code;
73 char extension[1024]; // name field, should invoke specific perl extension 75 char extension[1024]; // name field, should invoke specific perl extension
75 int returnvalue; 77 int returnvalue;
76} CFPContext; 78} CFPContext;
77 79
78static HV *obj_cache; 80static HV *obj_cache;
79static PerlInterpreter *perl; 81static PerlInterpreter *perl;
82
83#define PUSHcfapi(type,ctype) PUSHs (sv_2mortal (newSVcfapi ((type), va_arg (args, ctype))))
84#define PUSH_OB PUSHcfapi(CFAPI_POBJECT, object *)
85#define PUSH_PL PUSHcfapi(CFAPI_PPLAYER, player *)
86#define PUSH_MAP PUSHcfapi(CFAPI_PMAP, mapstruct *)
87#define PUSH_PV PUSHcfapi(CFAPI_STRING, const char *)
88#define PUSH_IV PUSHcfapi(CFAPI_INT, int)
80 89
81////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 90//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
82 91
83// garbage collect some perl objects, if possible 92// garbage collect some perl objects, if possible
84// all objects no longer referenced and empty are 93// all objects no longer referenced and empty are
216 case CFAPI_INT: 225 case CFAPI_INT:
217 sv = newSViv (*va_arg (args, int *)); 226 sv = newSViv (*va_arg (args, int *));
218 break; 227 break;
219 228
220 case CFAPI_LONG: 229 case CFAPI_LONG:
221 sv = newSViv (*va_arg (args, long *)); 230 sv = newSVnv ((double)*va_arg (args, sint64 *)); /* oh, the humanity! */
222 break; 231 break;
223 232
224 case CFAPI_DOUBLE: 233 case CFAPI_DOUBLE:
225 sv = newSViv (*va_arg (args, double *)); 234 sv = newSViv (*va_arg (args, double *));
226 break; 235 break;
283 va_end (args); 292 va_end (args);
284 293
285 return sv; 294 return sv;
286} 295}
287 296
288/////////////////////////////////////////////////////////////////////////////
289
290void
291inject_event (const char *func, CFPContext *context)
292{
293 dSP;
294
295 ENTER;
296 SAVETMPS;
297
298 PUSHMARK (SP);
299
300 HV *hv = newHV ();
301#define hv_context(type,addr,expr) hv_store (hv, #expr, sizeof (#expr) - 1, newSVcfapi (type, addr context->expr), 0)
302 hv_context (CFAPI_POBJECT, ,who);
303 hv_context (CFAPI_POBJECT, ,activator);
304 hv_context (CFAPI_POBJECT, ,third);
305 hv_context (CFAPI_PMAP, ,map);
306 hv_context (CFAPI_STRING , ,message);
307 hv_context (CFAPI_INT ,&,fix);
308 hv_context (CFAPI_INT ,&,event_code);
309 hv_context (CFAPI_STRING , ,options);
310 hv_context (CFAPI_STRING , ,extension);
311
312 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
313
314 PUTBACK;
315 int count = call_pv (func, G_SCALAR | G_EVAL);
316 SPAGAIN;
317
318 if (SvTRUE (ERRSV))
319 LOG (llevError, "event '%d' callback evaluation error: %s", context->event_code, SvPV_nolen (ERRSV));
320
321 context->returnvalue = count > 0 ? POPi : 0;
322
323 PUTBACK;
324 FREETMPS;
325 LEAVE;
326}
327
328///////////////////////////////////////////////////////////////////////////// 297/////////////////////////////////////////////////////////////////////////////
329 298
330int 299int
331initPlugin (const char *iversion, f_plug_api gethooksptr) 300initPlugin (const char *iversion, f_plug_api gethooksptr)
332{ 301{
493 462
494void * 463void *
495globalEventListener (int *type, ...) 464globalEventListener (int *type, ...)
496{ 465{
497 va_list args; 466 va_list args;
498 static int rv = 0; 467 static int rv;
499 CFPContext context; 468 int event_code;
500 char *buf;
501 player *pl;
502 object *op;
503 469
504 if (!perl) 470 if (!perl)
505 return; 471 return;
506 472
507 memset (&context, 0, sizeof (context));
508
509 va_start (args, type); 473 va_start (args, type);
510 context.event_code = va_arg (args, int); 474 event_code = va_arg (args, int);
511 475
512 switch (context.event_code) 476 if (event_code == EVENT_FREE_OB)
513 { 477 {
514 case EVENT_CRASH: 478 player *pl;
515 printf ("Unimplemented for now\n"); 479 object *op;
516 break; 480 SV *sv;
517 481
518 case EVENT_PLAYER_LOAD:
519 case EVENT_PLAYER_SAVE:
520 context.who = va_arg (args, object *); 482 op = va_arg (args, object *);
521 buf = va_arg (args, char *);
522 if (buf != 0)
523 strncpy (context.message, buf, sizeof (context.message));
524 break;
525
526 case EVENT_MAPLOAD:
527 case EVENT_MAPOUT:
528 case EVENT_MAPIN:
529 case EVENT_MAPCLEAN:
530 context.map = va_arg (args, mapstruct *);
531 break;
532
533 case EVENT_MAPENTER:
534 case EVENT_MAPLEAVE:
535 case EVENT_FREE_OB:
536 case EVENT_BORN:
537 case EVENT_REMOVE:
538 context.activator = va_arg (args, object *);
539 break;
540
541 case EVENT_PLAYER_DEATH:
542 context.who = va_arg (args, object *);
543 break;
544
545 case EVENT_GKILL:
546 context.who = va_arg (args, object *);
547 context.activator = va_arg (args, object *);
548 break;
549
550 case EVENT_LOGIN:
551 case EVENT_LOGOUT:
552 pl = va_arg (args, player *);
553 context.activator = pl->ob;
554 buf = va_arg (args, char *);
555 if (buf != 0)
556 strncpy (context.message, buf, sizeof (context.message));
557 break;
558
559 case EVENT_SHOUT:
560 case EVENT_MUZZLE:
561 case EVENT_KICK:
562 context.activator = va_arg (args, object *);
563 buf = va_arg (args, char *);
564 if (buf != 0)
565 strncpy (context.message, buf, sizeof (context.message));
566 break;
567
568 case EVENT_CLOCK:
569 clean_obj_cache ();
570 break;
571
572 case EVENT_TELL:
573 break;
574
575 case EVENT_MAPRESET:
576 /* stupid, should be the map itself, not "message"??? */
577 buf = va_arg (args, char *);
578 if (buf != 0)
579 strncpy (context.message, buf, sizeof (context.message));
580 break;
581 }
582
583 va_end (args);
584
585 if (context.event_code == EVENT_FREE_OB)
586 {
587 SV *sv = hv_delete (obj_cache, (char *)&context.activator, sizeof (void *), 0); 483 sv = hv_delete (obj_cache, (char *)&op, sizeof (void *), 0);
588 484
589 if (sv) 485 if (sv)
590 clearSVptr (sv); 486 clearSVptr (sv);
487
488 rv = 0;
591 } 489 }
592 else 490 else
593 inject_event ("cf::inject_global_event", &context); 491 {
594 492 dSP;
595 rv = context.returnvalue; 493
494 ENTER;
495 SAVETMPS;
496
497 PUSHMARK (SP);
498
499 EXTEND (SP, 10);
500 PUSHs (sv_2mortal (newSViv (event_code)));
501
502 switch (event_code)
503 {
504 case EVENT_CRASH:
505 break;
506
507 case EVENT_PLAYER_LOAD:
508 case EVENT_PLAYER_SAVE:
509 PUSH_OB;
510 PUSH_PV;
511 break;
512
513 case EVENT_MAPLOAD:
514 case EVENT_MAPOUT:
515 case EVENT_MAPIN:
516 case EVENT_MAPCLEAN:
517 case EVENT_MAPRESET:
518 PUSH_MAP;
519 break;
520
521 case EVENT_MAPENTER:
522 case EVENT_MAPLEAVE:
523 case EVENT_BORN:
524 case EVENT_REMOVE:
525 case EVENT_PLAYER_DEATH:
526 PUSH_OB;
527 break;
528
529 case EVENT_GKILL:
530 PUSH_OB;
531 PUSH_OB;
532 break;
533
534 case EVENT_LOGIN:
535 case EVENT_LOGOUT:
536 PUSH_PL;
537 PUSH_PV;
538 break;
539
540 case EVENT_SHOUT:
541 case EVENT_MUZZLE:
542 case EVENT_KICK:
543 PUSH_OB;
544 PUSH_PV;
545 break;
546
547 case EVENT_CLOCK:
548 clean_obj_cache ();
549 break;
550
551 case EVENT_TELL:
552 break;
553 }
554
555 va_end (args);
556
557 PUTBACK;
558 int count = call_pv ("cf::inject_global_event", G_SCALAR | G_EVAL);
559 SPAGAIN;
560
561 if (SvTRUE (ERRSV))
562 LOG (llevError, "event '%d' callback evaluation error: %s", event_code, SvPV_nolen (ERRSV));
563
564 rv = count > 0 ? POPi : 0;
565
566 PUTBACK;
567 FREETMPS;
568 LEAVE;
569 }
596 570
597 return &rv; 571 return &rv;
598} 572}
599 573
600void * 574void *
622 strncpy (context.message, buf, sizeof (context.message)); 596 strncpy (context.message, buf, sizeof (context.message));
623 597
624 context.fix = va_arg (args, int); 598 context.fix = va_arg (args, int);
625 strncpy (context.extension, va_arg (args, char *), sizeof (context.extension)); 599 strncpy (context.extension, va_arg (args, char *), sizeof (context.extension));
626 strncpy (context.options, va_arg (args, char *), sizeof (context.options)); 600 strncpy (context.options, va_arg (args, char *), sizeof (context.options));
627 context.returnvalue = 0; 601 context.event = va_arg (args, object *);
628 va_end (args); 602 va_end (args);
629 603
630 inject_event ("cf::inject_event", &context); 604 {
605 dSP;
606
607 ENTER;
608 SAVETMPS;
609
610 PUSHMARK (SP);
611
612 EXTEND (SP, 10);
613
614 HV *hv = newHV ();
615#define hv_context(type,addr,expr) hv_store (hv, #expr, sizeof (#expr) - 1, newSVcfapi (type, addr context.expr), 0)
616 hv_context (CFAPI_POBJECT, ,who);
617 hv_context (CFAPI_POBJECT, ,activator);
618 hv_context (CFAPI_POBJECT, ,third);
619 hv_context (CFAPI_POBJECT, ,event);
620 hv_context (CFAPI_PMAP, ,map);
621 hv_context (CFAPI_STRING , ,message);
622 hv_context (CFAPI_INT ,&,fix);
623 hv_context (CFAPI_INT ,&,event_code);
624 hv_context (CFAPI_STRING , ,options);
625 hv_context (CFAPI_STRING , ,extension);
626
627 PUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
628
629 PUTBACK;
630 int count = call_pv ("cf::inject_event", G_SCALAR | G_EVAL);
631 SPAGAIN;
632
633 if (SvTRUE (ERRSV))
634 LOG (llevError, "event '%d' callback evaluation error: %s", context.event_code, SvPV_nolen (ERRSV));
635
636 context.returnvalue = count > 0 ? POPi : 0;
637
638 PUTBACK;
639 FREETMPS;
640 LEAVE;
641 }
631 642
632 rv = context.returnvalue; 643 rv = context.returnvalue;
633 return &rv; 644 return &rv;
634} 645}
635 646
1014 const_iv (M_LIQUID) 1025 const_iv (M_LIQUID)
1015 const_iv (M_SOFT_METAL) 1026 const_iv (M_SOFT_METAL)
1016 const_iv (M_BONE) 1027 const_iv (M_BONE)
1017 const_iv (M_ICE) 1028 const_iv (M_ICE)
1018 const_iv (M_SPECIAL) 1029 const_iv (M_SPECIAL)
1030
1031 const_iv (SK_EXP_ADD_SKILL)
1032 const_iv (SK_EXP_TOTAL)
1033 const_iv (SK_EXP_NONE)
1034 const_iv (SK_SUBTRACT_SKILL_EXP)
1035
1036 const_iv (SK_LOCKPICKING)
1037 const_iv (SK_HIDING)
1038 const_iv (SK_SMITHERY)
1039 const_iv (SK_BOWYER)
1040 const_iv (SK_JEWELER)
1041 const_iv (SK_ALCHEMY)
1042 const_iv (SK_STEALING)
1043 const_iv (SK_LITERACY)
1044 const_iv (SK_BARGAINING)
1045 const_iv (SK_JUMPING)
1046 const_iv (SK_DET_MAGIC)
1047 const_iv (SK_ORATORY)
1048 const_iv (SK_SINGING)
1049 const_iv (SK_DET_CURSE)
1050 const_iv (SK_FIND_TRAPS)
1051 const_iv (SK_MEDITATION)
1052 const_iv (SK_PUNCHING)
1053 const_iv (SK_FLAME_TOUCH)
1054 const_iv (SK_KARATE)
1055 const_iv (SK_CLIMBING)
1056 const_iv (SK_WOODSMAN)
1057 const_iv (SK_INSCRIPTION)
1058 const_iv (SK_ONE_HANDED_WEAPON)
1059 const_iv (SK_MISSILE_WEAPON)
1060 const_iv (SK_THROWING)
1061 const_iv (SK_USE_MAGIC_ITEM)
1062 const_iv (SK_DISARM_TRAPS)
1063 const_iv (SK_SET_TRAP)
1064 const_iv (SK_THAUMATURGY)
1065 const_iv (SK_PRAYING)
1066 const_iv (SK_CLAWING)
1067 const_iv (SK_LEVITATION)
1068 const_iv (SK_SUMMONING)
1069 const_iv (SK_PYROMANCY)
1070 const_iv (SK_EVOCATION)
1071 const_iv (SK_SORCERY)
1072 const_iv (SK_TWO_HANDED_WEAPON)
1073
1074 const_iv (SOUND_NEW_PLAYER)
1075 const_iv (SOUND_FIRE_ARROW)
1076 const_iv (SOUND_LEARN_SPELL)
1077 const_iv (SOUND_FUMBLE_SPELL)
1078 const_iv (SOUND_WAND_POOF)
1079 const_iv (SOUND_OPEN_DOOR)
1080 const_iv (SOUND_PUSH_PLAYER)
1081 const_iv (SOUND_PLAYER_HITS1)
1082 const_iv (SOUND_PLAYER_HITS2)
1083 const_iv (SOUND_PLAYER_HITS3)
1084 const_iv (SOUND_PLAYER_HITS4)
1085 const_iv (SOUND_PLAYER_IS_HIT1)
1086 const_iv (SOUND_PLAYER_IS_HIT2)
1087 const_iv (SOUND_PLAYER_IS_HIT3)
1088 const_iv (SOUND_PLAYER_KILLS)
1089 const_iv (SOUND_PET_IS_KILLED)
1090 const_iv (SOUND_PLAYER_DIES)
1091 const_iv (SOUND_OB_EVAPORATE)
1092 const_iv (SOUND_OB_EXPLODE)
1093 const_iv (SOUND_CLOCK)
1094 const_iv (SOUND_TURN_HANDLE)
1095 const_iv (SOUND_FALL_HOLE)
1096 const_iv (SOUND_DRINK_POISON)
1097 const_iv (SOUND_CAST_SPELL_0)
1019 }; 1098 };
1020 1099
1021 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1100 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1022 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1101 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1023 1102
1167 prop (CFAPI_INT, OBJECT_PROP_ANIM_SPEED) 1246 prop (CFAPI_INT, OBJECT_PROP_ANIM_SPEED)
1168 prop (CFAPI_INT, OBJECT_PROP_FRIENDLY) 1247 prop (CFAPI_INT, OBJECT_PROP_FRIENDLY)
1169 prop (CFAPI_STRING, OBJECT_PROP_SHORT_NAME) 1248 prop (CFAPI_STRING, OBJECT_PROP_SHORT_NAME)
1170 prop (CFAPI_INT, OBJECT_PROP_MAGICAL) 1249 prop (CFAPI_INT, OBJECT_PROP_MAGICAL)
1171 prop (CFAPI_INT, OBJECT_PROP_LUCK) 1250 prop (CFAPI_INT, OBJECT_PROP_LUCK)
1172 prop (CFAPI_LONG, OBJECT_PROP_EXP)
1173 prop (CFAPI_POBJECT, OBJECT_PROP_OWNER) 1251 prop (CFAPI_POBJECT, OBJECT_PROP_OWNER)
1174 prop (CFAPI_POBJECT, OBJECT_PROP_PRESENT) 1252 prop (CFAPI_POBJECT, OBJECT_PROP_PRESENT)
1175 prop (CFAPI_INT, OBJECT_PROP_CHEATER) 1253 prop (CFAPI_INT, OBJECT_PROP_CHEATER)
1176 prop (CFAPI_INT, OBJECT_PROP_MERGEABLE) 1254 prop (CFAPI_INT, OBJECT_PROP_MERGEABLE)
1177 prop (CFAPI_INT, OBJECT_PROP_PICKABLE) 1255 prop (CFAPI_INT, OBJECT_PROP_PICKABLE)
1335 1413
1336void cf_object_free (object *op) 1414void cf_object_free (object *op)
1337 1415
1338object *cf_object_present_archname_inside (object *op, char *whatstr) 1416object *cf_object_present_archname_inside (object *op, char *whatstr)
1339 1417
1340int cf_object_transfer (object *op, int x, int y, int r, object *orig) 1418int cf_object_transfer (object *op, int x, int y, int r = 0, object_ornull *orig = 0)
1341 1419
1342int cf_object_change_map (object *op, int x, int y, mapstruct *map) 1420int cf_object_change_map (object *op, int x, int y, mapstruct *map)
1343 1421
1344object *cf_object_clone (object *op, int clonetype = 0) 1422object *cf_object_clone (object *op, int clonetype = 0)
1345 1423
1394 ALIAS: key = 0 1472 ALIAS: key = 0
1395 1473
1396void cf_object_set_key (object *op, char *keyname, char *value) 1474void cf_object_set_key (object *op, char *keyname, char *value)
1397 1475
1398object *cf_create_object_by_name (const char *name) 1476object *cf_create_object_by_name (const char *name)
1477
1478void change_exp (object *op, double exp, const char *skill_name = 0, int flag = 0)
1479
1480void player_lvl_adj (object *who, object *skill = 0)
1481
1399 1482
1400MODULE = cf PACKAGE = cf::object PREFIX = cf_ 1483MODULE = cf PACKAGE = cf::object PREFIX = cf_
1401 1484
1402void cf_fix_object (object *pl) 1485void cf_fix_object (object *pl)
1403 ALIAS: fix = 0 1486 ALIAS: fix = 0
1419 CODE: 1502 CODE:
1420{ 1503{
1421 int unused_type; 1504 int unused_type;
1422 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y); 1505 RETVAL = (object *)object_insert (&unused_type, ob, 0, where, orig, flag, x, y);
1423} 1506}
1507
1508const char *get_ob_key_value (object *op, const char *key)
1509
1510bool set_ob_key_value (object *op, const char *key, const char *value = 0, int add_key = 1)
1424 1511
1425object *get_nearest_player (object *ob) 1512object *get_nearest_player (object *ob)
1426 ALIAS: nearest_player = 0 1513 ALIAS: nearest_player = 0
1427 PREINIT: 1514 PREINIT:
1428 extern object *get_nearest_player (object *); 1515 extern object *get_nearest_player (object *);
1486partylist *cf_player_get_party (object *op) 1573partylist *cf_player_get_party (object *op)
1487 ALIAS: party = 0 1574 ALIAS: party = 0
1488 1575
1489void cf_player_set_party (object *op, partylist *party) 1576void cf_player_set_party (object *op, partylist *party)
1490 1577
1578void change_skill (object *op, double exp, char *skill_name = 0, int flag = 0)
1491 1579
1492MODULE = cf PACKAGE = cf::object::map PREFIX = cf_ 1580MODULE = cf PACKAGE = cf::object::map PREFIX = cf_
1493 1581
1494MODULE = cf PACKAGE = cf::player PREFIX = cf_player_ 1582MODULE = cf PACKAGE = cf::player PREFIX = cf_player_
1495 1583
1497 PROTOTYPE: $ 1585 PROTOTYPE: $
1498 1586
1499void cf_player_move (player *pl, int dir) 1587void cf_player_move (player *pl, int dir)
1500 1588
1501void MapNewmapCmd (player *pl) 1589void MapNewmapCmd (player *pl)
1590
1591void play_sound_player_only (player *pl, int soundnum, int x = 0, int y = 0);
1502 1592
1503# nonstandard 1593# nonstandard
1504object *ob (player *pl) 1594object *ob (player *pl)
1505 CODE: 1595 CODE:
1506 RETVAL = pl->ob; 1596 RETVAL = pl->ob;
1538 player *pl; 1628 player *pl;
1539 for (pl = first_player; pl; pl = pl->next) 1629 for (pl = first_player; pl; pl = pl->next)
1540 XPUSHs (newSVcfapi (CFAPI_PPLAYER, pl)); 1630 XPUSHs (newSVcfapi (CFAPI_PPLAYER, pl));
1541} 1631}
1542 1632
1633bool
1634peaceful (player *pl, bool new_setting = 0)
1635 PROTOTYPE: $;$
1636 CODE:
1637 RETVAL = pl->peaceful;
1638 if (items > 1)
1639 pl->peaceful = new_setting;
1640 OUTPUT:
1641 RETVAL
1642
1543living * 1643living *
1544orig_stats (player *pl) 1644orig_stats (player *pl)
1545 CODE: 1645 CODE:
1546 RETVAL = &pl->orig_stats; 1646 RETVAL = &pl->orig_stats;
1547 OUTPUT: RETVAL 1647 OUTPUT: RETVAL
1581 RETVAL = map_get_map (&unused_type, 0, width, height); 1681 RETVAL = map_get_map (&unused_type, 0, width, height);
1582} 1682}
1583 OUTPUT: 1683 OUTPUT:
1584 RETVAL 1684 RETVAL
1585 1685
1686void delete_map (mapstruct *map)
1687
1688void clean_tmp_map (mapstruct *map)
1689
1690void play_sound_map (mapstruct *map, int x, int y, int sound_num)
1691
1586mapstruct *cf_map_get_map (char *name) 1692mapstruct *cf_map_get_map (char *name)
1587 PROTOTYPE: $ 1693 PROTOTYPE: $
1588 ALIAS: map = 0 1694 ALIAS: map = 0
1589 1695
1590mapstruct *cf_map_get_first () 1696mapstruct *cf_map_get_first ()
1591 PROTOTYPE: 1697 PROTOTYPE:
1592 ALIAS: first = 0 1698 ALIAS: first = 0
1699
1700# whoever "designed" the plug-in api should have wasted
1701# his/her time with staying away form the project - would have
1702# saved others a lot of time, without doubt.
1703void set_path (mapstruct *where, char *path)
1704 CODE:
1705 strcpy (where->path, path);
1706
1707bool unique (mapstruct *map)
1708 CODE:
1709 RETVAL = map->unique;
1710 OUTPUT:
1711 RETVAL
1712
1713void set_unique (mapstruct *map, bool unique)
1714 CODE:
1715 map->unique = unique;
1593 1716
1594object *cf_map_insert_object_there (mapstruct *where, object *op, object *originator, int flags) 1717object *cf_map_insert_object_there (mapstruct *where, object *op, object *originator, int flags)
1595 1718
1596object *cf_map_insert_object (mapstruct *where, object* op, int x, int y) 1719object *cf_map_insert_object (mapstruct *where, object* op, int x, int y)
1597 1720
1710 SVptr_cache_set (o, sv); 1833 SVptr_cache_set (o, sv);
1711 } 1834 }
1712 } 1835 }
1713 } 1836 }
1714} 1837}
1838
1715 1839
1716MODULE = cf PACKAGE = cf::arch PREFIX = cf_archetype_ 1840MODULE = cf PACKAGE = cf::arch PREFIX = cf_archetype_
1717 1841
1718archetype *cf_archetype_get_first() 1842archetype *cf_archetype_get_first()
1719 PROTOTYPE: 1843 PROTOTYPE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines