| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- //
- // Copyright (c) 2008-2014 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include "Precompiled.h"
- #include "Animation2D.h"
- #include "Context.h"
- #include "FileSystem.h"
- #include "Log.h"
- #include "ResourceCache.h"
- #include "Sprite2D.h"
- #include "Texture2D.h"
- #include "TmxFile2D.h"
- #include "XMLFile.h"
- #include "DebugNew.h"
- namespace Urho3D
- {
- TmxFile2D::TmxFile2D(Context* context) :
- Resource(context),
- width_(0),
- height_(0),
- tileWidth_(0),
- tileHeight_(0)
- {
- }
- TmxFile2D::~TmxFile2D()
- {
- }
- void TmxFile2D::RegisterObject(Context* context)
- {
- context->RegisterFactory<TmxFile2D>();
- }
- bool TmxFile2D::BeginLoad(Deserializer& source)
- {
- loadXMLFile_ = new XMLFile(context_);
- if (!loadXMLFile_->Load(source))
- {
- LOGERROR("Load XML failed " + source.GetName());
- loadXMLFile_.Reset();
- return false;
- }
- XMLElement rootElem = loadXMLFile_->GetRoot("map");
- if (!rootElem)
- {
- LOGERROR("Invalid tmx file " + source.GetName());
- loadXMLFile_.Reset();
- return false;
- }
- // If we're async loading, request the texture now. Finish during EndLoad().
- if (GetAsyncLoadState() == ASYNC_LOADING)
- {
- for (XMLElement tileSetElem = rootElem.GetChild("tileset"); tileSetElem; tileSetElem = tileSetElem.GetNext("tileset"))
- {
- String loadTextureName = GetParentPath(GetName()) + tileSetElem.GetChild("image").GetAttribute("source");
- GetSubsystem<ResourceCache>()->BackgroundLoadResource<Texture2D>(loadTextureName, true, this);
- }
- }
- return true;
- }
- bool TmxFile2D::EndLoad()
- {
- // Actually load the folders and animations now
- if (!loadXMLFile_)
- return false;
- XMLElement rootElem = loadXMLFile_->GetRoot("map");
- String version = rootElem.GetAttribute("version");
- if (version != "1.0")
- {
- LOGERROR("Invalid version");
- return false;
- }
- String orientation = rootElem.GetAttribute("orientation");
- if (orientation != "orthogonal")
- {
- LOGERROR("Unsupported orientation now");
- return false;
- }
- width_ = rootElem.GetInt("width");
- height_ = rootElem.GetInt("height");
- tileWidth_ = rootElem.GetInt("tilewidth");
- tileHeight_ = rootElem.GetInt("tileheight");
- // Load tile set
- for (XMLElement tileSetElem = rootElem.GetChild("tileset"); tileSetElem; tileSetElem = tileSetElem.GetNext("tileset"))
- {
- if (!LoadTileSet(tileSetElem))
- {
- loadXMLFile_.Reset();
- return false;
- }
- }
- // Load layer
- for (XMLElement layerElem = rootElem.GetChild("layer"); layerElem; layerElem = layerElem.GetNext("layer"))
- {
- if (!LoadLayer(layerElem))
- {
- loadXMLFile_.Reset();
- return false;
- }
- }
- loadXMLFile_.Reset();
- return true;
- }
- const TmxLayer2D* TmxFile2D::GetLayer(unsigned index) const
- {
- if (index >= layers_.Size())
- return 0;
- return &layers_[index];
- }
- Sprite2D* TmxFile2D::GetTileSprite(int gid) const
- {
- HashMap<int, SharedPtr<Sprite2D> >::ConstIterator i = tileSprites_.Find(gid);
- if (i == tileSprites_.End())
- return 0;
- return i->second_;
- }
- bool TmxFile2D::LoadTileSet(const XMLElement& element)
- {
- XMLElement imageElem = element.GetChild("image");
- String loadTextureName = GetParentPath(GetName()) + imageElem.GetAttribute("source");
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- SharedPtr<Texture2D> texture(cache->GetResource<Texture2D>(loadTextureName));
- if (!texture)
- {
- LOGERROR("Could not load texture " + loadTextureName);
- loadXMLFile_.Reset();
- return false;
- }
- textures_.Push(texture);
- int gid = element.GetInt("firstgid");
- int tileWidth = element.GetInt("tilewidth");
- int tileHeight = element.GetInt("tileheight");
- int spacing = element.GetInt("spacing");
- int margin = element.GetInt("margin");
- int imageWidth = imageElem.GetInt("width");
- int imageHeight = imageElem.GetInt("height");
- for (int y = margin; y < imageHeight - margin; y += tileHeight + spacing)
- {
- for (int x = margin; x < imageWidth - margin; x += tileWidth + spacing)
- {
- SharedPtr<Sprite2D> sprite(new Sprite2D(context_));
- sprite->SetTexture(texture);
- sprite->SetRectangle(IntRect(x, y, x + tileWidth, y + tileHeight));
- sprite->SetHotSpot(Vector2(0.0f, 0.0f));
- tileSprites_[gid++] = sprite;
- }
- }
- return true;
- }
- bool TmxFile2D::LoadLayer(const XMLElement& element)
- {
- layers_.Push(TmxLayer2D());
- TmxLayer2D& layer = layers_.Back();
- layer.tmxFile_ = this;
- layer.name_ = element.GetAttribute("name");
- layer.width_ = element.GetInt("width");
- layer.height_ = element.GetInt("height");
- XMLElement dataElem = element.GetChild("data");
- if (!dataElem)
- {
- LOGERROR("Could not find data in layer");
- return false;
- }
- if (dataElem.HasAttribute("encoding") && dataElem.GetAttribute("encoding") != "xml")
- {
- LOGERROR("Encoding not support now");
- return false;
- }
- layer.tiles_.Reserve(layer.width_ * layer.height_);
- for (XMLElement tileElem = dataElem.GetChild("tile"); tileElem; tileElem = tileElem.GetNext("tile"))
- {
- layer.tiles_.Push(tileElem.GetInt("gid"));
- }
- return true;
- }
- }
|