|
|
@ -269,10 +269,13 @@ void pfSecurePreloader::PreloadNextFile() |
|
|
|
|
|
|
|
|
|
|
|
void pfSecurePreloader::Init() |
|
|
|
void pfSecurePreloader::Init() |
|
|
|
{ |
|
|
|
{ |
|
|
|
RegisterAs(kSecurePreloader_KEY); |
|
|
|
if (!fInstance) |
|
|
|
|
|
|
|
fInstance = new pfSecurePreloader; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fInstance->RegisterAs(kSecurePreloader_KEY); |
|
|
|
// TODO: If we're going to support reconnects, then let's do it right.
|
|
|
|
// TODO: If we're going to support reconnects, then let's do it right.
|
|
|
|
// Later...
|
|
|
|
// Later...
|
|
|
|
//plgDispatch::Dispatch()->RegisterForExactType(plNetCommAuthConnectedMsg::Index(), GetKey());
|
|
|
|
//plgDispatch::Dispatch()->RegisterForExactType(plNetCommAuthConnectedMsg::Index(), fInstance->GetKey());
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void pfSecurePreloader::Start() |
|
|
|
void pfSecurePreloader::Start() |
|
|
@ -431,10 +434,3 @@ void pfSecurePreloader::FilePreloaded(const wchar_t* file, hsStream* stream) |
|
|
|
// Continue down the warpath
|
|
|
|
// Continue down the warpath
|
|
|
|
PreloadNextFile(); |
|
|
|
PreloadNextFile(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
pfSecurePreloader* pfSecurePreloader::GetInstance() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (!fInstance) |
|
|
|
|
|
|
|
fInstance = new pfSecurePreloader; |
|
|
|
|
|
|
|
return fInstance;
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|