Skip to content

Commit f955c36

Browse files
committed
New loading method + fix for L4U in singleplayer
smilz0/Left4Bots#96
1 parent 7c4044a commit f955c36

File tree

5 files changed

+26
-39
lines changed

5 files changed

+26
-39
lines changed

out/Left4Lib.vpk

-132 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
if ("HooksHub" in getroottable() && ::HooksHub.SecondRun)
2+
{
3+
::HooksHub.Init();
4+
::HooksHub.DbgPrintFuncs();
5+
}

root/scripts/vscripts/left4lib_hooks.nut

+6-7
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ if (!("HooksHub" in getroottable()))
8282
{
8383
::HooksHub <-
8484
{
85+
SecondRun = false
8586
InterceptChatFuncs = {}
8687
AllowTakeDamageFuncs = {}
8788
AllowBashFuncs = {}
@@ -873,26 +874,24 @@ if (!("HooksHub" in getroottable()))
873874
{
874875
::Left4Lib.Logger.Debug("OnGameEvent_round_start_pre_entity");
875876

876-
HooksHub.Init();
877-
878-
HooksHub.DbgPrintFuncs();
877+
HooksHub.SecondRun = true;
879878
}
880879

881880
// This is triggered right before round_start (but still after OnActivate after map transitions)
881+
/*
882882
::HooksHub.Events.OnGameEvent_round_start_post_nav <- function (params)
883883
{
884884
::Left4Lib.Logger.Debug("OnGameEvent_round_start_post_nav");
885885
}
886+
*/
886887

887888
// Like round_start_post_nav, it's triggered after OnActivate after map transition, before only on first map
889+
/*
888890
::HooksHub.Events.OnGameEvent_round_start <- function (params)
889891
{
890892
::Left4Lib.Logger.Debug("OnGameEvent_round_start");
891-
892-
HooksHub.Init();
893-
894-
HooksHub.DbgPrintFuncs();
895893
}
894+
*/
896895

897896
::Left4Lib.Logger.Info("HooksHub created");
898897
}

root/scripts/vscripts/left4lib_users.nut

+15-2
Original file line numberDiff line numberDiff line change
@@ -236,14 +236,23 @@ if (!("Left4Users" in getroottable()))
236236
::Left4Users.GetUserLevel <- function (player)
237237
{
238238
if (!player || !player.IsValid())
239+
{
240+
::Left4Lib.Logger.Debug("Left4Users.GetUserLevel - player: " + player);
239241
return L4U_LEVEL.User;
242+
}
240243

241244
local steamid = player.GetNetworkIDString();
242245
if (!steamid || steamid == "BOT")
246+
{
247+
::Left4Lib.Logger.Debug("Left4Users.GetUserLevel - steamid: " + steamid);
243248
return L4U_LEVEL.User; // player is a bot
249+
}
244250

245251
if (Director.IsSinglePlayerGame())
252+
{
253+
::Left4Lib.Logger.Debug("Left4Users.GetUserLevel - IsSinglePlayerGame");
246254
return L4U_LEVEL.Admin; // It's a single player game, player is supposed to be the only user here. Will give him admin privileges
255+
}
247256

248257
local host = GetListenServerHost();
249258
if (host && host == player)
@@ -261,6 +270,9 @@ if (!("Left4Users" in getroottable()))
261270

262271
::Left4Lib.Logger.Info("Local host " + player.GetPlayerName() + " has been added to the admins list");
263272
}
273+
else
274+
::Left4Lib.Logger.Debug("Left4Users.GetUserLevel - steamid in Admins");
275+
264276
return L4U_LEVEL.Admin;
265277
}
266278

@@ -277,15 +289,15 @@ if (!("Left4Users" in getroottable()))
277289

278290
::Left4Users.PlayerJoined <- function (player)
279291
{
280-
//::Left4Lib.Logger.Debug("Left4Users.PlayerJoined - player: " + player.GetPlayerName());
281-
282292
local userid = player.GetPlayerUserId();
283293
local steamid = player.GetNetworkIDString();
284294
local index = player.GetEntityIndex();
285295
local level = GetUserLevel(player);
286296
local tm = Director.GetTotalElapsedMissionTime();
287297
local joined = false;
288298

299+
::Left4Lib.Logger.Debug("Left4Users.PlayerJoined - player: " + player.GetPlayerName() + " - level: " + level);
300+
289301
if ((userid in OnlineUsers) && OnlineUsers[userid].conntime <= tm)
290302
{
291303
// It's an already connected player
@@ -299,6 +311,7 @@ if (!("Left4Users" in getroottable()))
299311
OnlineUsers[userid].connfull = 1;
300312
joined = true;
301313
}
314+
OnlineUsers[userid].level = level;
302315
}
303316
else
304317
{

root/scripts/vscripts/scriptedmode_addon.nut

-30
Original file line numberDiff line numberDiff line change
@@ -71,33 +71,3 @@ function ScriptMode_Init( modename, mapname )
7171

7272
return true;
7373
}
74-
75-
function ScriptMode_OnActivate( modename, mapname )
76-
{
77-
printl("[L4L] ScriptMode_OnActivate");
78-
79-
if ( g_ModeScript == null )
80-
{
81-
// Need to reload the mode script
82-
// TODO: Should know exactly which script we want to load here
83-
84-
g_ModeScript = getroottable().DirectorScript.MapScript.ChallengeScript
85-
86-
if ( IncludeScript( modename, g_ModeScript ) )
87-
{
88-
printl( "ScriptMode loaded " + modename + " and now Initializing" )
89-
}
90-
}
91-
92-
if ( !SessionState.StartActive )
93-
{
94-
MergeSessionOptionTables()
95-
}
96-
97-
if ( "SetupModeHUD" in g_ModeScript )
98-
{
99-
g_ModeScript.SetupModeHUD()
100-
}
101-
102-
ScriptMode_SystemCall("OnActivate")
103-
}

0 commit comments

Comments
 (0)