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

Comparing deliantra/server/server/cfperl.xs (file contents):
Revision 1.261 by root, Tue Oct 16 05:34:24 2007 UTC vs.
Revision 1.269 by root, Fri Feb 1 15:54:08 2008 UTC

1/* 1/*
2 * This file is part of Crossfire TRT, the Roguelike Realtime MORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team 4 * Copyright (©) 2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2001-2005,2007 by Chachkoff Yann 5 * Copyright (©) 2001-2005,2007 by Chachkoff Yann
6 * Copyright (©) 2006,2007 by Marc Lehmann <cf@schmorp.de> 6 * Copyright (©) 2006,2007 by Marc Lehmann <cf@schmorp.de>
7 * 7 *
8 * Crossfire TRT is free software: you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or 10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. 19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 * 20 *
21 * The authors can be reached via e-mail to <crossfire@schmorp.de> 21 * The authors can be reached via e-mail to <support@deliantra.net>
22 */ 22 */
23 23
24#include "autoconf.h" 24#include "autoconf.h"
25 25
26#define PLUGIN_NAME "perl" 26#define PLUGIN_NAME "perl"
76 76
77tstamp NOW, runtime; 77tstamp NOW, runtime;
78 78
79global gbl_ev; 79global gbl_ev;
80static AV *cb_global, *cb_attachable, *cb_object, *cb_player, *cb_client, *cb_type, *cb_map; 80static AV *cb_global, *cb_attachable, *cb_object, *cb_player, *cb_client, *cb_type, *cb_map;
81static SV *sv_runtime, *sv_next_tick; 81static SV *sv_runtime, *sv_next_tick, *sv_now;
82 82
83bitset<NUM_EVENT_TYPES> ev_want_event; 83bitset<NUM_EVENT_TYPES> ev_want_event;
84bitset<NUM_TYPES> ev_want_type; 84bitset<NUM_TYPES> ev_want_type;
85 85
86static HV 86static HV
614 PL_exit_flags |= PERL_EXIT_DESTRUCT_END; 614 PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
615 615
616 const char *argv[] = { 616 const char *argv[] = {
617 settings.argv [0], 617 settings.argv [0],
618 "-e" 618 "-e"
619 "use Event; use Coro;" // required for bootstrap 619 "use EV; use Coro;" // required for bootstrap
620 "cf->bootstrap;" // required for datadir :*> 620 "cf->bootstrap;" // required for datadir :*>
621 "unshift @INC, cf::datadir ();" 621 "unshift @INC, cf::datadir ();"
622 "require cf;" 622 "require cf;"
623 }; 623 };
624 624
625 if (perl_parse (perl, xs_init, 2, (char **)argv, (char **)NULL) 625 if (perl_parse (perl, xs_init, 2, (char **)argv, (char **)NULL)
1099#endif 1099#endif
1100} 1100}
1101 1101
1102///////////////////////////////////////////////////////////////////////////// 1102/////////////////////////////////////////////////////////////////////////////
1103 1103
1104struct EventAPI *watcher_base::GEventAPI; 1104struct EVAPI *evapi::GEVAPI;
1105struct CoroAPI *coroapi::GCoroAPI; 1105struct CoroAPI *coroapi::GCoroAPI;
1106 1106
1107int coroapi::cede_counter; 1107int coroapi::cede_counter;
1108tstamp coroapi::next_cede; 1108tstamp coroapi::next_cede;
1109 1109
1110void coroapi::do_cede_to_tick () 1110void coroapi::do_cede_to_tick ()
1112 cede_counter = 0; 1112 cede_counter = 0;
1113 1113
1114 cede (); 1114 cede ();
1115 1115
1116 next_cede += (TICK / CEDES_PER_TICK) * 0.99; 1116 next_cede += (TICK / CEDES_PER_TICK) * 0.99;
1117 if (next_cede > SvNV (sv_next_tick) - 0.02) 1117 if (next_cede > SvNVx (sv_next_tick) - 0.02)
1118 next_cede = SvNV (sv_next_tick); 1118 next_cede = SvNVx (sv_next_tick);
1119} 1119}
1120 1120
1121void coroapi::do_cede_every () 1121void coroapi::do_cede_every ()
1122{ 1122{
1123 cede_counter = 0; 1123 cede_counter = 0;
1147 CALL_BEGIN (0); 1147 CALL_BEGIN (0);
1148 CALL_CALL ("cf::wait_for_tick_begin", G_DISCARD); 1148 CALL_CALL ("cf::wait_for_tick_begin", G_DISCARD);
1149 CALL_END; 1149 CALL_END;
1150} 1150}
1151 1151
1152static void
1153iw_dispatch (pe_event *ev)
1154{
1155 iw *w = (iw *)ev->ext_data;
1156 w->call (*w);
1157}
1158
1159void
1160iw::alloc ()
1161{
1162 pe = GEventAPI->new_idle (0, 0);
1163
1164 WaREENTRANT_off (pe);
1165 pe->base.callback = (void *)iw_dispatch;
1166 pe->base.ext_data = (void *)this;
1167}
1168
1169static void iow_dispatch (pe_event *ev)
1170{
1171 iow *w = (iow *)ev->ext_data;
1172 w->call (*w, ((pe_ioevent *)ev)->got);
1173}
1174
1175void
1176iow::alloc ()
1177{
1178 pe = GEventAPI->new_io (0, 0);
1179
1180 WaREENTRANT_off (pe);
1181 pe->base.callback = (void *)iow_dispatch;
1182 pe->base.ext_data = (void *)this;
1183
1184 pe->fd = -1;
1185 pe->poll = 0;
1186}
1187
1188void
1189iow::fd (int fd)
1190{
1191 pe->fd = fd;
1192}
1193
1194int
1195iow::poll ()
1196{
1197 return pe->poll;
1198}
1199
1200void 1152void
1201iow::poll (int events) 1153iow::poll (int events)
1202{ 1154{
1203 if (pe->poll != events) 1155 if (events != this->events)
1204 { 1156 {
1157 int active = ev_is_active ((ev_io *)this);
1205 if (pe->poll) stop (); 1158 if (active) stop ();
1206 pe->poll = events; 1159 ev_io_set ((ev_io *)this, fd, events);
1207 if (pe->poll) start (); 1160 if (active) start ();
1208 } 1161 }
1209} 1162}
1210 1163
1211void 1164void
1212_connect_to_perl () 1165_connect_to_perl ()
1221 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1); 1174 stash_cf_arch_wrap = gv_stashpv ("cf::arch::wrap" , 1);
1222 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1); 1175 stash_cf_party_wrap = gv_stashpv ("cf::party::wrap" , 1);
1223 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1); 1176 stash_cf_region_wrap = gv_stashpv ("cf::region::wrap", 1);
1224 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1); 1177 stash_cf_living_wrap = gv_stashpv ("cf::living::wrap", 1);
1225 1178
1179 sv_now = get_sv ("cf::NOW" , 1); SvUPGRADE (sv_now , SVt_NV);
1226 sv_runtime = get_sv ("cf::RUNTIME" , 1); sv_upgrade (sv_runtime , SVt_NV); 1180 sv_runtime = get_sv ("cf::RUNTIME" , 1); SvUPGRADE (sv_runtime , SVt_NV);
1227 sv_next_tick = get_sv ("cf::NEXT_TICK", 1); sv_upgrade (sv_next_tick, SVt_NV); 1181 sv_next_tick = get_sv ("cf::NEXT_TICK", 1); SvUPGRADE (sv_next_tick, SVt_NV);
1228 1182
1229 cb_global = get_av ("cf::CB_GLOBAL", 1); 1183 cb_global = get_av ("cf::CB_GLOBAL", 1);
1230 cb_attachable = get_av ("cf::CB_ATTACHABLE", 1); 1184 cb_attachable = get_av ("cf::CB_ATTACHABLE", 1);
1231 cb_object = get_av ("cf::CB_OBJECT", 1); 1185 cb_object = get_av ("cf::CB_OBJECT", 1);
1232 cb_player = get_av ("cf::CB_PLAYER", 1); 1186 cb_player = get_av ("cf::CB_PLAYER", 1);
1237 1191
1238MODULE = cf PACKAGE = cf PREFIX = cf_ 1192MODULE = cf PACKAGE = cf PREFIX = cf_
1239 1193
1240BOOT: 1194BOOT:
1241{ 1195{
1242 I_EVENT_API (PACKAGE); watcher_base::GEventAPI = GEventAPI; 1196 I_EV_API (PACKAGE); evapi::GEVAPI = GEVAPI;
1243 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI; 1197 I_CORO_API (PACKAGE); coroapi::GCoroAPI = GCoroAPI;
1244 1198
1245 _connect_to_perl (); 1199 _connect_to_perl ();
1246 1200
1247 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1)); 1201 newCONSTSUB (stash_cf, "VERSION", newSVpv (VERSION, sizeof (VERSION) - 1));
1248 1202
1582 SvCUR_set (data_sv, dst - SvPVX (data_sv)); 1536 SvCUR_set (data_sv, dst - SvPVX (data_sv));
1583} 1537}
1584 1538
1585void _post_tick () 1539void _post_tick ()
1586 CODE: 1540 CODE:
1587 coroapi::next_cede = SvNV (sv_next_tick) - TICK * (1. - 1. / CEDES_PER_TICK); 1541 coroapi::next_cede = SvNVx (sv_next_tick) - TICK * (1. - 1. / CEDES_PER_TICK);
1588 1542
1589NV till_cede () 1543NV till_cede ()
1590 CODE: 1544 CODE:
1591 RETVAL = coroapi::next_cede - now (); 1545 RETVAL = coroapi::next_cede - now ();
1592 OUTPUT: 1546 OUTPUT:
1593 RETVAL 1547 RETVAL
1594 1548
1595NV till_tick () 1549NV till_tick ()
1596 CODE: 1550 CODE:
1597 RETVAL = SvNV (sv_next_tick) - now (); 1551 RETVAL = SvNVx (sv_next_tick) - now ();
1598 OUTPUT: 1552 OUTPUT:
1599 RETVAL 1553 RETVAL
1600 1554
1601NV floor (NV x) 1555NV floor (NV x)
1602 1556
1624 CODE: 1578 CODE:
1625 RETVAL = lerp (value, min_in, max_in, min_out, max_out); 1579 RETVAL = lerp (value, min_in, max_in, min_out, max_out);
1626 OUTPUT: 1580 OUTPUT:
1627 RETVAL 1581 RETVAL
1628 1582
1583void weaken (...)
1584 PROTOTYPE: @
1585 CODE:
1586 while (items > 0)
1587 sv_rvweaken (ST (--items));
1588
1629void cede_to_tick () 1589void cede_to_tick ()
1630 CODE: 1590 CODE:
1631 coroapi::cede_to_tick (); 1591 coroapi::cede_to_tick ();
1632 1592
1633void server_tick () 1593void server_tick ()
1634 CODE: 1594 CODE:
1635 NOW = now (); 1595 NOW = SvNVx (sv_now);
1636 runtime = SvNVx (sv_runtime); 1596 runtime = SvNVx (sv_runtime);
1637 server_tick (); 1597 server_tick ();
1638 1598
1639void 1599void
1640log_backtrace (utf8_string msg) 1600log_backtrace (utf8_string msg)
1711void cleanup (octet_string cause, bool make_core = false) 1671void cleanup (octet_string cause, bool make_core = false)
1712 1672
1713void emergency_save () 1673void emergency_save ()
1714 1674
1715void _exit (int status = EXIT_SUCCESS) 1675void _exit (int status = EXIT_SUCCESS)
1716
1717UV sv_2watcher (SV *w)
1718 CODE:
1719 RETVAL = (UV)GEventAPI->sv_2watcher (w);
1720 OUTPUT:
1721 RETVAL
1722 1676
1723#if _POSIX_MEMLOCK 1677#if _POSIX_MEMLOCK
1724 1678
1725int mlockall (int flags = MCL_CURRENT | MCL_FUTURE) 1679int mlockall (int flags = MCL_CURRENT | MCL_FUTURE)
1726 1680
2725 } 2679 }
2726} 2680}
2727 2681
2728int get_data_size (faceidx idx, int faceset = 0) 2682int get_data_size (faceidx idx, int faceset = 0)
2729 CODE: 2683 CODE:
2730 facedata *d = face_data (idx, faceset); assert (d); 2684 facedata *d = face_data (idx, faceset);
2685 if (!d) XSRETURN_UNDEF;
2731 RETVAL = d->data.size (); 2686 RETVAL = d->data.size ();
2732 OUTPUT: 2687 OUTPUT:
2733 RETVAL 2688 RETVAL
2734 2689
2735SV *get_chksum (faceidx idx, int faceset = 0) 2690SV *get_chksum (faceidx idx, int faceset = 0)
2736 CODE: 2691 CODE:
2737 facedata *d = face_data (idx, faceset); assert (d); 2692 facedata *d = face_data (idx, faceset);
2693 if (!d) XSRETURN_UNDEF;
2738 RETVAL = newSVpvn ((char *)d->chksum, CHKSUM_SIZE); 2694 RETVAL = newSVpvn ((char *)d->chksum, CHKSUM_SIZE);
2695 OUTPUT:
2696 RETVAL
2697
2698SV *get_data (faceidx idx, int faceset = 0)
2699 CODE:
2700 facedata *d = face_data (idx, faceset);
2701 if (!d) XSRETURN_UNDEF;
2702 RETVAL = newSVpvn (d->data.data (), d->data.length ());
2739 OUTPUT: 2703 OUTPUT:
2740 RETVAL 2704 RETVAL
2741 2705
2742void invalidate (faceidx idx) 2706void invalidate (faceidx idx)
2743 CODE: 2707 CODE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines