Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

KFStoryGame.ObjCondition_TraderTime


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
/*
	--------------------------------------------------------------
	Condition_TraderShop
	--------------------------------------------------------------

    A Type of timed condition which displays HUD info for Trader shops.

	Author :  Alex Quick

	--------------------------------------------------------------
*/

class ObjCondition_TraderTime extends ObjCondition_Timed
editinlinenew;

var          bool           OldShopOpen;

/* Point the whisp at the pathnode closest to the Entrance to the trader shop*/

function       vector       GetWhispLocation(optional out Actor LocActor)
{
    LocActor = GetNearestPathNodeTo(GetAssociatedDoor().Location);
    return LocActor.Location;
}

function       bool         ShouldShowWhispTrailFor(PlayerController C)
{
    return Super.ShouldShowWhispTrailFor(C) && (KFPlayerController(C) == none || KFPlayerController(C).bWantsTraderPath) ;
}

/* Retrieves the Trader Door associated with the Currently Active Shop */
function    KFTraderDoor  GetAssociatedDoor()
{
    local int i;
    local KFGameReplicationInfo KFGRI;

    KFGRI = KFGameReplicationInfo(GetObjOwner().Level.game.GameReplicationInfo) ;
    if(GetObjOwner().StoryGI == none || KFGRI == none || KFGRI.CurrentShop == none)
    {
        return none;
    }

    for(i = 0 ; i < GetObjOwner().StoryGI.AllTraderDoors.length ; i ++)
    {
        if(GetObjOwner().StoryGI.AllTraderDoors[i].Tag == KFGRI.CurrentShop.Event)
        {
            return GetObjOwner().StoryGI.AllTraderDoors[i];
        }
    }

    return none;
}

/*Center the icon on the ShopVolume */

function        vector       GetLocation(optional out Actor LocActor)
{
    local KFGameReplicationInfo KFGRI;

    if(ConditionIsActive())
    {
        KFGRI = KFGameReplicationInfo(GetObjOwner().Level.game.GameReplicationInfo) ;
        if(KFGRI != none && KFGRI.CurrentShop != none)
        {
            LocActor = KFGRI.CurrentShop;
            return KFGRI.CurrentShop.Location ;
        }
    }

    return vect(0,0,0);
}


function ConditionTick(float DeltaTime)
{
    Super.ConditionTick(DeltaTime);
    UpdateWhispVisibility();
}

function ConditionDeActivated()
{
    Super.ConditionDeActivated();
    UpdateWhispVisibility();
}

function UpdateWhispVisibility()
{
    local bool NewShopOpen;
    local KFGameReplicationInfo KFGRI;

    KFGRI = KFGameReplicationInfo(GetObjOwner().Level.Game.GameReplicationInfo);
    if(KFGRI == none)
    {
        return;
    }

    if(KFGRI.CurrentShop != none)
    {
        NewShopOpen = KFGRI.CurrentShop.bCurrentlyOpen;

        // only show a whisp trail when the shop is open for business
        HUD_World.bShowWhispTrail = NewShopOpen ;

        OldShopOpen = NewShopOpen;
    }
}

defaultproperties
{
     bTraderTime=True
     HUD_World=(World_Texture=Texture'KFStoryGame_Tex.HUD.Trader_Icon_64',World_Hint="Trader",bShowWhispTrail=True,bIgnoreWorldLocHidden=True)
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Fri 13-10-2023 03:17:28.000 - Creation time: Fri 13-10-2023 03:19:06.035 - Created with UnCodeX