mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
Add new plClientResMgr for graphic resources external to client executable.
This commit is contained in:
@ -6,6 +6,7 @@ add_subdirectory(plAudible)
|
||||
add_subdirectory(plAudio)
|
||||
add_subdirectory(plAudioCore)
|
||||
add_subdirectory(plAvatar)
|
||||
add_subdirectory(plClientResMgr)
|
||||
add_subdirectory(plCompression)
|
||||
add_subdirectory(plContainer)
|
||||
#add_subdirectory(plDeviceSelector) # Not being used by any current slns
|
||||
|
17
Sources/Plasma/PubUtilLib/plClientResMgr/CMakeLists.txt
Normal file
17
Sources/Plasma/PubUtilLib/plClientResMgr/CMakeLists.txt
Normal file
@ -0,0 +1,17 @@
|
||||
include_directories("../../CoreLib")
|
||||
include_directories("../../NucleusLib/inc")
|
||||
include_directories("../../NucleusLib")
|
||||
include_directories("../../PubUtilLib")
|
||||
|
||||
set(plClientResMgr_SOURCES
|
||||
plClientResMgr.cpp
|
||||
)
|
||||
|
||||
set(plClientResMgr_HEADERS
|
||||
plClientResMgr.h
|
||||
)
|
||||
|
||||
add_library(plClientResMgr STATIC ${plClientResMgr_SOURCES} ${plClientResMgr_HEADERS})
|
||||
|
||||
source_group("Source Files" FILES ${plClientResMgr_SOURCES})
|
||||
source_group("Header Files" FILES ${plClientResMgr_HEADERS})
|
132
Sources/Plasma/PubUtilLib/plClientResMgr/plClientResMgr.cpp
Normal file
132
Sources/Plasma/PubUtilLib/plClientResMgr/plClientResMgr.cpp
Normal file
@ -0,0 +1,132 @@
|
||||
/*==LICENSE==*
|
||||
|
||||
CyanWorlds.com Engine - MMOG client, server and tools
|
||||
Copyright (C) 2011 Cyan Worlds, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
or by snail mail at:
|
||||
Cyan Worlds, Inc.
|
||||
14617 N Newport Hwy
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#include "hsTypes.h"
|
||||
#include "hsUtils.h"
|
||||
#include "hsStream.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "plJPEG/plJPEG.h"
|
||||
#include "plGImage/plPNG.h"
|
||||
#include "plGImage/plMipmap.h"
|
||||
|
||||
#include "plClientResMgr.h"
|
||||
|
||||
|
||||
//// Singleton Instance ///////////////////////////////////////////////////////
|
||||
|
||||
plClientResMgr& plClientResMgr::Instance(void)
|
||||
{
|
||||
static plClientResMgr theInstance;
|
||||
return theInstance;
|
||||
}
|
||||
|
||||
plClientResMgr::plClientResMgr()
|
||||
{
|
||||
this->ClientResources = TRACKED_NEW std::map<std::string, plMipmap*>;
|
||||
}
|
||||
|
||||
plClientResMgr::~plClientResMgr()
|
||||
{
|
||||
if (this->ClientResources) {
|
||||
std::map<std::string, plMipmap*>::iterator it;
|
||||
|
||||
for (it = this->ClientResources->begin(); it != this->ClientResources->end(); ++it) {
|
||||
it->second->UnRef();
|
||||
}
|
||||
|
||||
delete this->ClientResources;
|
||||
}
|
||||
}
|
||||
|
||||
void plClientResMgr::ILoadResources(const char* resfile)
|
||||
{
|
||||
if (!resfile) {
|
||||
return;
|
||||
}
|
||||
|
||||
wchar* wFilename = hsStringToWString(resfile);
|
||||
hsUNIXStream in;
|
||||
|
||||
if (in.Open(wFilename, L"rb")) {
|
||||
UInt32 header = in.ReadSwap32();
|
||||
UInt32 version = in.ReadSwap32();
|
||||
UInt32 num_resources = 0;
|
||||
|
||||
switch (version) {
|
||||
case 1:
|
||||
num_resources = in.ReadSwap32();
|
||||
|
||||
for (int i = 0; i < num_resources; i++) {
|
||||
plMipmap* res_data = NULL;
|
||||
UInt32 res_size = 0;
|
||||
char* tmp_name = in.ReadSafeStringLong();
|
||||
std::string res_name = std::string(tmp_name);
|
||||
std::string res_type = res_name.substr(res_name.length() - 4, 4);
|
||||
delete tmp_name;
|
||||
|
||||
// Version 1 doesn't encode format, so we'll try some simple
|
||||
// extension sniffing
|
||||
if (res_type == ".png") {
|
||||
// Read resource stream size, but the PNG has that info in the header
|
||||
// so it's not needed
|
||||
res_size = in.ReadSwap32();
|
||||
res_data = plPNG::Instance().ReadFromStream(&in);
|
||||
} else if (res_type == ".jpg") {
|
||||
// Don't read resource stream size, as plJPEG's reader will need it
|
||||
res_data = plJPEG::Instance().ReadFromStream(&in);
|
||||
} else {
|
||||
// Original Myst5 format only is known to support Targa,
|
||||
// so default fallback is targa
|
||||
// TODO - Add plTarga::ReadFromStream()
|
||||
}
|
||||
|
||||
(*this->ClientResources)[res_name] = res_data;
|
||||
}
|
||||
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
in.Close();
|
||||
}
|
||||
|
||||
delete wFilename;
|
||||
}
|
||||
|
||||
plMipmap* plClientResMgr::getResource(const char* resname)
|
||||
{
|
||||
plMipmap* resmipmap = NULL;
|
||||
std::map<std::string, plMipmap*>::iterator it = this->ClientResources->find(resname);
|
||||
|
||||
if (it != this->ClientResources->end()) {
|
||||
resmipmap = it->second;
|
||||
} else {
|
||||
hsAssert(resmipmap, "Unknown client resource requested.");
|
||||
}
|
||||
|
||||
return resmipmap;
|
||||
}
|
50
Sources/Plasma/PubUtilLib/plClientResMgr/plClientResMgr.h
Normal file
50
Sources/Plasma/PubUtilLib/plClientResMgr/plClientResMgr.h
Normal file
@ -0,0 +1,50 @@
|
||||
/*==LICENSE==*
|
||||
|
||||
CyanWorlds.com Engine - MMOG client, server and tools
|
||||
Copyright (C) 2011 Cyan Worlds, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
or by snail mail at:
|
||||
Cyan Worlds, Inc.
|
||||
14617 N Newport Hwy
|
||||
Mead, WA 99021
|
||||
|
||||
*==LICENSE==*/
|
||||
|
||||
#ifndef _plClientResMgr_h
|
||||
#define _plClientResMgr_h
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
class plMipmap;
|
||||
|
||||
class plClientResMgr {
|
||||
protected:
|
||||
std::map<std::string, plMipmap*>* ClientResources;
|
||||
|
||||
public:
|
||||
plClientResMgr();
|
||||
~plClientResMgr();
|
||||
|
||||
void ILoadResources(const char* resfile);
|
||||
|
||||
plMipmap* getResource(const char* resname);
|
||||
|
||||
static plClientResMgr& Instance(void);
|
||||
};
|
||||
|
||||
#endif // _plClientResMgr_
|
Reference in New Issue
Block a user