ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/typemap
Revision: 1.11
Committed: Thu Jan 4 16:19:32 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.10: +1 -0 lines
Log Message:
- word of recall activated the player indirectly
- implement maptile->xy_find and xy_load
- separate find and load, even on C level
- generate map_leave/enter and map_change events even for tiled map changes
  (experimental)
- implement mainloop freezeing by start/stop, not skipping ticks
- no map updates when player !active

File Contents

# User Rev Content
1 root 1.1 val64 T_VAL64
2     uint64 T_VAL64
3 root 1.11 sint16 T_INT
4 root 1.1
5 root 1.9 object * T_CF_OBJ
6 root 1.7 partylist * T_CF_OBJ
7     archetype * T_CF_OBJ
8     maptile * T_CF_OBJ
9     region * T_CF_OBJ
10 root 1.8 client * T_CF_OBJ
11 root 1.7 player * T_CF_OBJ
12     living * T_CF_OBJ
13 root 1.10 attachable * T_CF_OBJ
14 root 1.7
15 root 1.6 Settings * T_SETTINGS
16 root 1.1
17 root 1.9 object_ornull * T_CF_OBJ_ORNULL
18     mapstruct_ornull * T_CF_OBJ_ORNULL
19 root 1.1
20     INPUT
21    
22     T_VAL64
23     $var = ($type)SvVAL64 ($arg);
24    
25 root 1.7 T_CF_OBJ
26 root 1.4 sv_to ($arg, $var)
27 root 1.7
28 root 1.6 T_SETTINGS
29 root 1.9 $var = &settings
30 root 1.7
31 root 1.9 T_CF_OBJ_ORNULL
32     if (SvOK ($arg))
33     sv_to ($arg, $var);
34     else
35     $var = 0;
36 root 1.1
37     OUTPUT
38    
39     T_VAL64
40     $arg = newSVval64 ($var);
41    
42 root 1.9 T_CF_OBJ_NORNULL
43 root 1.4 $arg = to_sv ($var);
44 root 1.7
45     T_CF_OBJ
46 root 1.4 $arg = to_sv ($var);
47 root 1.1