@@ -82,7 +82,6 @@ if (!("HooksHub" in getroottable()))
82
82
{
83
83
::HooksHub <-
84
84
{
85
- SecondRun = false
86
85
InterceptChatFuncs = {}
87
86
AllowTakeDamageFuncs = {}
88
87
AllowBashFuncs = {}
@@ -554,15 +553,16 @@ if (!("HooksHub" in getroottable()))
554
553
{
555
554
::Left4Lib. Logger . Debug (" HooksHub.Init" );
556
555
557
- local my_g_ModeScript = getroottable (). DirectorScript . MapScript . ChallengeScript ;
558
- local my_g_MapScript = getroottable (). DirectorScript . MapScript ;
556
+ local my_roottable = getroottable ();
557
+ local my_g_ModeScript = my_roottable. DirectorScript . MapScript . ChallengeScript ;
558
+ local my_g_MapScript = my_roottable. DirectorScript . MapScript ;
559
559
560
560
// Setting up InterceptChat hooks
561
- if (" InterceptChat" in getroottable () && getroottable () . InterceptChat != null && getroottable () . InterceptChat != HooksHub. InterceptChat )
561
+ if (" InterceptChat" in my_roottable && my_roottable . InterceptChat != null && my_roottable . InterceptChat != HooksHub. InterceptChat )
562
562
{
563
- HooksHub. SetInterceptChat (" L4LROOT" , getroottable () . InterceptChat );
563
+ HooksHub. SetInterceptChat (" L4LROOT" , my_roottable . InterceptChat );
564
564
565
- ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous getroottable() InterceptChat hook" );
565
+ ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous my_roottable InterceptChat hook" );
566
566
}
567
567
if (" InterceptChat" in my_g_ModeScript && my_g_ModeScript. InterceptChat != null && my_g_ModeScript. InterceptChat != HooksHub. InterceptChat && HooksHub. GetInterceptChatByFunc (my_g_ModeScript. InterceptChat ) == null )
568
568
{
@@ -578,14 +578,14 @@ if (!("HooksHub" in getroottable()))
578
578
}
579
579
580
580
::Left4Lib. Logger . Debug (" HooksHub.Init - Setting HooksHub.InterceptChat hook" );
581
- getroottable () . InterceptChat <- ::HooksHub.InterceptChat;
581
+ my_roottable . InterceptChat <- ::HooksHub.InterceptChat;
582
582
my_g_ModeScript. InterceptChat <- ::HooksHub.InterceptChat;
583
583
my_g_MapScript. InterceptChat <- ::HooksHub.InterceptChat;
584
584
585
585
// Setting up AllowTakeDamage hooks
586
- if (" AllowTakeDamage" in getroottable () && getroottable () . AllowTakeDamage != null && getroottable () . AllowTakeDamage != HooksHub. AllowTakeDamage )
586
+ if (" AllowTakeDamage" in my_roottable && my_roottable . AllowTakeDamage != null && my_roottable . AllowTakeDamage != HooksHub. AllowTakeDamage )
587
587
{
588
- HooksHub. SetAllowTakeDamage (" L4LROOT" , getroottable () . AllowTakeDamage );
588
+ HooksHub. SetAllowTakeDamage (" L4LROOT" , my_roottable . AllowTakeDamage );
589
589
590
590
::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous getroottable() AllowTakeDamage hook" );
591
591
}
@@ -603,16 +603,16 @@ if (!("HooksHub" in getroottable()))
603
603
}
604
604
605
605
::Left4Lib. Logger . Debug (" HooksHub.Init - Setting HooksHub.AllowTakeDamage hook" );
606
- getroottable () . AllowTakeDamage <- ::HooksHub.AllowTakeDamage;
606
+ my_roottable . AllowTakeDamage <- ::HooksHub.AllowTakeDamage;
607
607
my_g_ModeScript. AllowTakeDamage <- ::HooksHub.AllowTakeDamage;
608
608
my_g_MapScript. AllowTakeDamage <- ::HooksHub.AllowTakeDamage;
609
609
610
610
// Setting up AllowBash hooks
611
- if (" AllowBash" in getroottable () && getroottable () . AllowBash != null && getroottable () . AllowBash != HooksHub. AllowBash )
611
+ if (" AllowBash" in my_roottable && my_roottable . AllowBash != null && my_roottable . AllowBash != HooksHub. AllowBash )
612
612
{
613
- HooksHub. SetAllowBash (" L4LROOT" , getroottable () . AllowBash );
613
+ HooksHub. SetAllowBash (" L4LROOT" , my_roottable . AllowBash );
614
614
615
- ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous getroottable() AllowBash hook" );
615
+ ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous my_roottable AllowBash hook" );
616
616
}
617
617
if (" AllowBash" in my_g_ModeScript && my_g_ModeScript. AllowBash != null && my_g_ModeScript. AllowBash != HooksHub. AllowBash && HooksHub. GetAllowBashByFunc (my_g_ModeScript. AllowBash ) == null )
618
618
{
@@ -628,16 +628,16 @@ if (!("HooksHub" in getroottable()))
628
628
}
629
629
630
630
::Left4Lib. Logger . Debug (" HooksHub.Init - Setting HooksHub.AllowBash hook" );
631
- getroottable () . AllowBash <- ::HooksHub.AllowBash;
631
+ my_roottable . AllowBash <- ::HooksHub.AllowBash;
632
632
my_g_ModeScript. AllowBash <- ::HooksHub.AllowBash;
633
633
my_g_MapScript. AllowBash <- ::HooksHub.AllowBash;
634
634
635
635
// Setting up UserConsoleCommand hooks
636
- if (" UserConsoleCommand" in getroottable () && getroottable () . UserConsoleCommand != null && getroottable () . UserConsoleCommand != HooksHub. UserConsoleCommand )
636
+ if (" UserConsoleCommand" in my_roottable && my_roottable . UserConsoleCommand != null && my_roottable . UserConsoleCommand != HooksHub. UserConsoleCommand )
637
637
{
638
- HooksHub. SetUserConsoleCommand (" L4LROOT" , getroottable () . UserConsoleCommand );
638
+ HooksHub. SetUserConsoleCommand (" L4LROOT" , my_roottable . UserConsoleCommand );
639
639
640
- ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous getroottable() UserConsoleCommand hook" );
640
+ ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous my_roottable UserConsoleCommand hook" );
641
641
}
642
642
if (" UserConsoleCommand" in my_g_ModeScript && my_g_ModeScript. UserConsoleCommand != null && my_g_ModeScript. UserConsoleCommand != HooksHub. UserConsoleCommand && HooksHub. GetUserConsoleCommandByFunc (my_g_ModeScript. UserConsoleCommand ) == null )
643
643
{
@@ -653,16 +653,16 @@ if (!("HooksHub" in getroottable()))
653
653
}
654
654
655
655
::Left4Lib. Logger . Debug (" HooksHub.Init - Setting HooksHub.UserConsoleCommand hook" );
656
- getroottable () . UserConsoleCommand <- ::HooksHub.UserConsoleCommand;
656
+ my_roottable . UserConsoleCommand <- ::HooksHub.UserConsoleCommand;
657
657
my_g_ModeScript. UserConsoleCommand <- ::HooksHub.UserConsoleCommand;
658
658
my_g_MapScript. UserConsoleCommand <- ::HooksHub.UserConsoleCommand;
659
659
660
660
// Setting up BotQuery hooks
661
- if (" BotQuery" in getroottable () && getroottable () . BotQuery != null && getroottable () . BotQuery != HooksHub. BotQuery )
661
+ if (" BotQuery" in my_roottable && my_roottable . BotQuery != null && my_roottable . BotQuery != HooksHub. BotQuery )
662
662
{
663
- HooksHub. SetBotQuery (" L4LROOT" , getroottable () . BotQuery );
663
+ HooksHub. SetBotQuery (" L4LROOT" , my_roottable . BotQuery );
664
664
665
- ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous getroottable() BotQuery hook" );
665
+ ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous my_roottable BotQuery hook" );
666
666
}
667
667
if (" BotQuery" in my_g_ModeScript && my_g_ModeScript. BotQuery != null && my_g_ModeScript. BotQuery != HooksHub. BotQuery && HooksHub. GetBotQueryByFunc (my_g_ModeScript. BotQuery ) == null )
668
668
{
@@ -678,16 +678,16 @@ if (!("HooksHub" in getroottable()))
678
678
}
679
679
680
680
::Left4Lib. Logger . Debug (" HooksHub.Init - Setting HooksHub.BotQuery hook" );
681
- getroottable () . BotQuery <- ::HooksHub.BotQuery;
681
+ my_roottable . BotQuery <- ::HooksHub.BotQuery;
682
682
my_g_ModeScript. BotQuery <- ::HooksHub.BotQuery;
683
683
my_g_MapScript. BotQuery <- ::HooksHub.BotQuery;
684
684
685
685
// Setting up CanPickupObject hooks
686
- if (" CanPickupObject" in getroottable () && getroottable () . CanPickupObject != null && getroottable () . CanPickupObject != HooksHub. CanPickupObject )
686
+ if (" CanPickupObject" in my_roottable && my_roottable . CanPickupObject != null && my_roottable . CanPickupObject != HooksHub. CanPickupObject )
687
687
{
688
- HooksHub. SetCanPickupObject (" L4LROOT" , getroottable () . CanPickupObject );
688
+ HooksHub. SetCanPickupObject (" L4LROOT" , my_roottable . CanPickupObject );
689
689
690
- ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous getroottable() CanPickupObject hook" );
690
+ ::Left4Lib. Logger . Debug (" HooksHub.Init - Added previous my_roottable CanPickupObject hook" );
691
691
}
692
692
if (" CanPickupObject" in my_g_ModeScript && my_g_ModeScript. CanPickupObject != null && my_g_ModeScript. CanPickupObject != HooksHub. CanPickupObject && HooksHub. GetCanPickupObjectByFunc (my_g_ModeScript. CanPickupObject ) == null )
693
693
{
@@ -703,7 +703,7 @@ if (!("HooksHub" in getroottable()))
703
703
}
704
704
705
705
::Left4Lib. Logger . Debug (" HooksHub.Init - Setting HooksHub.CanPickupObject hook" );
706
- getroottable () . CanPickupObject <- ::HooksHub.CanPickupObject;
706
+ my_roottable . CanPickupObject <- ::HooksHub.CanPickupObject;
707
707
my_g_ModeScript. CanPickupObject <- ::HooksHub.CanPickupObject;
708
708
my_g_MapScript. CanPickupObject <- ::HooksHub.CanPickupObject;
709
709
@@ -851,6 +851,40 @@ if (!("HooksHub" in getroottable()))
851
851
}
852
852
}
853
853
854
+ ::HooksHub. CheckHooks <- function ()
855
+ {
856
+ local function checkHooksInTable (tbl, tblName, hookNames, err = false )
857
+ {
858
+ local n = 0 ;
859
+ foreach (hookName in hookNames)
860
+ {
861
+ if ((hookName in tbl) && tbl[hookName] != ::HooksHub[hookName])
862
+ {
863
+ if (err)
864
+ ::Left4Lib. Logger . Error (hookName + " hook in " + tblName + " is not HooksHub." + hookName + " ! Hook was set in " + tbl[hookName]. getinfos (). src );
865
+ else
866
+ ::Left4Lib. Logger . Warning (hookName + " hook in " + tblName + " is not HooksHub." + hookName + " ! Hook was set in " + tbl[hookName]. getinfos (). src );
867
+ n++ ;
868
+ }
869
+ }
870
+ return n;
871
+ }
872
+
873
+ ::Left4Lib. Logger . Debug (" HooksHub.CheckHooks" );
874
+
875
+ local hooks = [" InterceptChat" , " AllowTakeDamage" , " AllowBash" , " UserConsoleCommand" , " BotQuery" , " CanPickupObject" ];
876
+ local errors = checkHooksInTable (getroottable (), " getroottable()" , hooks);
877
+ errors += checkHooksInTable (getroottable (). DirectorScript . MapScript . ChallengeScript , " g_ModeScript" , hooks, true );
878
+ errors += checkHooksInTable (getroottable (). DirectorScript . MapScript , " g_MapScript" , hooks);
879
+ /*
880
+ NOTE:
881
+ C++ seems to give g_ModeScript hooks the highest priority, so at this point if roottable and g_MapScript hooks are overwritten it doesn't matter, as long as g_ModeScript hooks are OK.
882
+ */
883
+
884
+ if (errors == 0 )
885
+ ::Left4Lib. Logger . Info (" HooksHub hooks OK" );
886
+ }
887
+
854
888
// https://github.com/smilz0/Left4Bots/issues/96
855
889
/*
856
890
Scripts/events order of each map (excluding map restart):
@@ -869,13 +903,13 @@ if (!("HooksHub" in getroottable()))
869
903
However this will fail if other addons don't check if the hooks are already set and will replace HooksHub in the second scriptedmode_addon/director_base_addon cycle (previous logic likely had the same problem, so...).
870
904
*/
871
905
872
- // This is triggered even before the scriptedmode.nut (but only the second time, so only once per map)
906
+ // This is triggered even before the scriptedmode.nut (but only the second time, so only once per map). NOTE: This is triggere before the director_base_addon(s) in map restart!
907
+ /*
873
908
::HooksHub.Events.OnGameEvent_round_start_pre_entity <- function (params)
874
909
{
875
910
::Left4Lib.Logger.Debug("OnGameEvent_round_start_pre_entity");
876
-
877
- HooksHub. SecondRun = true ;
878
911
}
912
+ */
879
913
880
914
// This is triggered right before round_start (but still after OnActivate after map transitions)
881
915
/*
@@ -886,12 +920,12 @@ if (!("HooksHub" in getroottable()))
886
920
*/
887
921
888
922
// Like round_start_post_nav, it's triggered after OnActivate after map transition, before only on first map
889
- /*
890
923
::HooksHub. Events . OnGameEvent_round_start <- function (params)
891
924
{
892
925
::Left4Lib. Logger . Debug (" OnGameEvent_round_start" );
926
+
927
+ DoEntFire (" worldspawn" , " RunScriptCode" , " ::HooksHub.CheckHooks()" , 5.0 , null , null );
893
928
}
894
- */
895
929
896
930
::Left4Lib. Logger . Info (" HooksHub created" );
897
931
}
0 commit comments