rename some vars
This commit is contained in:
parent
7a761341d6
commit
a60535777e
@ -123,7 +123,7 @@ private function PreInit()
|
|||||||
|
|
||||||
private function PostInit()
|
private function PostInit()
|
||||||
{
|
{
|
||||||
local CTI_RepInfo RepLink;
|
local CTI_RepInfo RepInfo;
|
||||||
|
|
||||||
`Log_Trace(`Location);
|
`Log_Trace(`Location);
|
||||||
|
|
||||||
@ -200,11 +200,11 @@ private function PostInit()
|
|||||||
|
|
||||||
ReadyToSync = true;
|
ReadyToSync = true;
|
||||||
|
|
||||||
foreach RepInfos(RepLink)
|
foreach RepInfos(RepInfo)
|
||||||
{
|
{
|
||||||
if (RepLink.PendingSync)
|
if (RepInfo.PendingSync)
|
||||||
{
|
{
|
||||||
RepLink.ServerSync();
|
RepInfo.ServerSync();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -246,63 +246,63 @@ public function NotifyLogin(Controller C)
|
|||||||
{
|
{
|
||||||
`Log_Trace(`Location);
|
`Log_Trace(`Location);
|
||||||
|
|
||||||
CreateRepLink(C);
|
CreateRepInfo(C);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function NotifyLogout(Controller C)
|
public function NotifyLogout(Controller C)
|
||||||
{
|
{
|
||||||
`Log_Trace(`Location);
|
`Log_Trace(`Location);
|
||||||
|
|
||||||
DestroyRepLink(C);
|
DestroyRepInfo(C);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function bool CreateRepLink(Controller C)
|
public function bool CreateRepInfo(Controller C)
|
||||||
{
|
{
|
||||||
local CTI_RepInfo RepLink;
|
local CTI_RepInfo RepInfo;
|
||||||
|
|
||||||
`Log_Trace(`Location);
|
`Log_Trace(`Location);
|
||||||
|
|
||||||
if (C == None) return false;
|
if (C == None) return false;
|
||||||
|
|
||||||
RepLink = Spawn(class'CTI_RepInfo', C);
|
RepInfo = Spawn(class'CTI_RepInfo', C);
|
||||||
|
|
||||||
if (RepLink == None) return false;
|
if (RepInfo == None) return false;
|
||||||
|
|
||||||
RepLink.PrepareSync(
|
RepInfo.PrepareSync(
|
||||||
Self,
|
Self,
|
||||||
LogLevel,
|
LogLevel,
|
||||||
RemoveItems,
|
RemoveItems,
|
||||||
AddItems,
|
AddItems,
|
||||||
CfgRemoveItems.default.bAll);
|
CfgRemoveItems.default.bAll);
|
||||||
|
|
||||||
RepInfos.AddItem(RepLink);
|
RepInfos.AddItem(RepInfo);
|
||||||
|
|
||||||
if (ReadyToSync)
|
if (ReadyToSync)
|
||||||
{
|
{
|
||||||
RepLink.ServerSync();
|
RepInfo.ServerSync();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
RepLink.PendingSync = true;
|
RepInfo.PendingSync = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function bool DestroyRepLink(Controller C)
|
public function bool DestroyRepInfo(Controller C)
|
||||||
{
|
{
|
||||||
local CTI_RepInfo RepLink;
|
local CTI_RepInfo RepInfo;
|
||||||
|
|
||||||
`Log_Trace(`Location);
|
`Log_Trace(`Location);
|
||||||
|
|
||||||
if (C == None) return false;
|
if (C == None) return false;
|
||||||
|
|
||||||
foreach RepInfos(RepLink)
|
foreach RepInfos(RepInfo)
|
||||||
{
|
{
|
||||||
if (RepLink.Owner == C)
|
if (RepInfo.Owner == C)
|
||||||
{
|
{
|
||||||
RepLink.SafeDestroy();
|
RepInfo.SafeDestroy();
|
||||||
RepInfos.RemoveItem(RepLink);
|
RepInfos.RemoveItem(RepInfo);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -231,7 +231,7 @@ private reliable server function Cleanup()
|
|||||||
`Log_Trace(`Location);
|
`Log_Trace(`Location);
|
||||||
|
|
||||||
`Log_Debug("Cleanup");
|
`Log_Debug("Cleanup");
|
||||||
if (!CTI.DestroyRepLink(Controller(Owner)))
|
if (!CTI.DestroyRepInfo(Controller(Owner)))
|
||||||
{
|
{
|
||||||
`Log_Debug("Cleanup (forced)");
|
`Log_Debug("Cleanup (forced)");
|
||||||
SafeDestroy();
|
SafeDestroy();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user