Home
last modified time | relevance | path

Searched refs:PlayTimeAllowed (Results 1 – 12 of 12) sorted by relevance

/dports/games/d2x/d2x-0.2.5/main/
H A Dnetmisc.c331 tmpi = INTEL_INT(Netgame.PlayTimeAllowed); in send_netgame_packet()
446 memcpy(&(netgame->PlayTimeAllowed), &(data[loc]), 4); loc += 4; in receive_netgame_packet()
447 netgame->PlayTimeAllowed = INTEL_INT(netgame->PlayTimeAllowed); in receive_netgame_packet()
H A Dmulti.h399 fix PlayTimeAllowed; member
H A Dnetwork.c1863 if (Netgame.PlayTimeAllowed) in network_send_game_info()
1865 timevar=i2f (Netgame.PlayTimeAllowed*5*60); in network_send_game_info()
2932 if (Netgame.PlayTimeAllowed || Netgame.KillGoal) in network_game_param_poll()
2934 Netgame.PlayTimeAllowed=0; in network_game_param_poll()
2991 Netgame.PlayTimeAllowed=0; in network_get_game_params()
5654 sprintf( PlayText, "Max time: %d %s", Netgame.PlayTimeAllowed*5, TXT_MINUTES_ABBREV ); in network_more_game_options()
5695 LastPTA=Netgame.PlayTimeAllowed; in network_more_game_options()
5781 Netgame.PlayTimeAllowed=menus[opt_playtime].value; in network_more_options_poll()
5782 …sprintf( menus[opt_playtime].text, "Max Time: %d %s", Netgame.PlayTimeAllowed*5, TXT_MINUTES_ABBRE… in network_more_options_poll()
5783 LastPTA=Netgame.PlayTimeAllowed; in network_more_options_poll()
[all …]
H A Dgame.c1315 timevar=i2f (Netgame.PlayTimeAllowed*5*60);
2694 if (Netgame.PlayTimeAllowed && ThisLevelTime>=i2f((Netgame.PlayTimeAllowed*5*60)))
2755 if ((Game_mode & GM_MULTI) && Netgame.PlayTimeAllowed)
H A Dgauges.c1021 if ((Game_mode & GM_NETWORK) && Netgame.PlayTimeAllowed) in hud_show_timer_count()
1023 timevar=i2f (Netgame.PlayTimeAllowed*5*60); in hud_show_timer_count()
3108 if (Netgame.KillGoal || Netgame.PlayTimeAllowed) in hud_show_kill_list()
3114 else if (Netgame.KillGoal || Netgame.PlayTimeAllowed) in hud_show_kill_list()
3170 else if (Netgame.PlayTimeAllowed || Netgame.KillGoal) in hud_show_kill_list()
H A Dmulti.c893 if ((Game_mode & GM_NETWORK) && Netgame.PlayTimeAllowed && lasttime!=f2i (ThisLevelTime)) in multi_do_frame()
4117 if (!Netgame.PlayTimeAllowed) in multi_send_heartbeat()
/dports/games/dxx-rebirth/dxx-rebirth_20211220-src/similar/main/
H A Dplaysave.cpp1667 int PlayTimeAllowed; in read_netgame_profile() local
1668 if (convert_integer(PlayTimeAllowed, value)) in read_netgame_profile()
1669 …ng->PlayTimeAllowed = std::chrono::duration<int, netgame_info::play_time_allowed_abi_ratio>(PlayTi… in read_netgame_profile()
1725 …d::chrono::duration<int, netgame_info::play_time_allowed_abi_ratio>>(ng->PlayTimeAllowed).count()); in write_netgame_profile()
H A Dnet_udp.cpp519 if (Netgame.PlayTimeAllowed.count()) in get_effective_netgame_status()
521 const auto TicksPlayTimeRemaining = Netgame.PlayTimeAllowed - ThisLevelTime; in get_effective_netgame_status()
2818 PUT_INTEL_INT(buf + len, Netgame.PlayTimeAllowed.count()); len += 4; in net_udp_prepare_heavy_game_info()
3062 Netgame.PlayTimeAllowed = d_time_fix(GET_INTEL_INT(&data[len])); in net_udp_process_game_info()
3528 DXX_MENUITEM(VERB, SLIDER, PlayText, opt_playtime, PlayTimeAllowed, 0, 12) \
3771 …signed PlayTimeAllowed = std::chrono::duration_cast<std::chrono::duration<int, netgame_info::play_… in more_game_options_menu_items() local
3799 unsigned PlayTimeAllowed; in read() local
3802 …Netgame.PlayTimeAllowed = std::chrono::duration<int, netgame_info::play_time_allowed_abi_ratio>(Pl… in read()
4052 Netgame.PlayTimeAllowed = {}; in net_udp_game_param_handler()
4160 Netgame.PlayTimeAllowed = {}; in net_udp_setup_game()
[all …]
H A Dgauges.cpp964 if (!Netgame.PlayTimeAllowed.count()) in hud_show_timer_count()
970 if (Netgame.PlayTimeAllowed < ThisLevelTime) in hud_show_timer_count()
973 const auto TicksUntilPlayTimeAllowedElapses = Netgame.PlayTimeAllowed - ThisLevelTime; in hud_show_timer_count()
3363 if (Netgame.KillGoal || Netgame.PlayTimeAllowed.count()) in hud_show_kill_list()
3366 else if (Netgame.KillGoal || Netgame.PlayTimeAllowed.count()) in hud_show_kill_list()
3433 else if (Netgame.KillGoal || Netgame.PlayTimeAllowed.count()) in hud_show_kill_list()
H A Dgame.cpp1986 if (Netgame.PlayTimeAllowed.count()) in GameProcessFrame()
1988 if (ThisLevelTime >= Netgame.PlayTimeAllowed) in GameProcessFrame()
H A Dmulti.cpp955 if ((Game_mode & GM_NETWORK) && Netgame.PlayTimeAllowed.count() && lasttime != ThisLevelTime) in multi_do_frame()
4044 if (!Netgame.PlayTimeAllowed.count()) in multi_send_heartbeat()
6398 …array_snprintf(lines[max_time], "Max Time\t %i %s", netgame.PlayTimeAllowed.count() / (F1_0 * 60)… in show_netgame_info()
/dports/games/dxx-rebirth/dxx-rebirth_20211220-src/common/main/
H A Dmulti.h858 d_time_fix PlayTimeAllowed; member