axmol/extensions/DragonBones/factory/BaseFactory.h

606 lines
25 KiB
C
Raw Normal View History

2021-12-27 13:52:08 +08:00
/**
* The MIT License (MIT)
*
* Copyright (c) 2012-2018 DragonBones team and other contributors
*
* 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:
2021-12-25 10:04:45 +08:00
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
*
* 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.
*/
#ifndef DRAGONBONES_BASE_FACTORY_H
#define DRAGONBONES_BASE_FACTORY_H
#include "../parser/JSONDataParser.h"
#include "../parser/BinaryDataParser.h"
#include "../armature/Armature.h"
#include "../armature/Bone.h"
#include "../armature/Slot.h"
#include "../armature/Constraint.h"
#include "../animation/Animation.h"
DRAGONBONES_NAMESPACE_BEGIN
/**
* - Base class for the factory that create the armatures. (Typically only one global factory instance is required)
* The factory instance create armatures by parsed and added DragonBonesData instances and TextureAtlasData instances.
2021-12-25 10:04:45 +08:00
* Once the data has been parsed, it has been cached in the factory instance and does not need to be parsed again until
* it is cleared by the factory instance.
* @see dragonBones.DragonBonesData
* @see dragonBones.TextureAtlasData
* @see dragonBones.ArmatureData
* @see dragonBones.Armature
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* -
* DragonBonesData TextureAtlasData
*
* @see dragonBones.DragonBonesData
* @see dragonBones.TextureAtlasData
* @see dragonBones.ArmatureData
* @see dragonBones.Armature
* @version DragonBones 3.0
* @language zh_CN
*/
class BaseFactory
{
protected:
static JSONDataParser _jsonParser;
static BinaryDataParser _binaryParser;
public:
/**
* @private
*/
bool autoSearch;
protected:
hlookup::string_map<DragonBonesData*> _dragonBonesDataMap;
hlookup::string_map<std::vector<TextureAtlasData*>> _textureAtlasDataMap;
DragonBones* _dragonBones;
DataParser* _dataParser;
public:
/**
* - Create a factory instance. (typically only one global factory instance is required)
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* -
* @version DragonBones 3.0
* @language zh_CN
*/
2021-12-25 10:04:45 +08:00
BaseFactory(DataParser* dataParser = nullptr)
: autoSearch(false), _dragonBonesDataMap(), _textureAtlasDataMap(), _dragonBones(nullptr), _dataParser(nullptr)
{
_dataParser = dataParser != nullptr ? dataParser : &BaseFactory::_jsonParser;
}
virtual ~BaseFactory()
{
clear();
_dragonBones = nullptr;
2021-12-25 10:04:45 +08:00
_dataParser = nullptr;
}
protected:
2021-12-25 10:04:45 +08:00
virtual inline bool _isSupportMesh() const { return true; }
virtual TextureData* _getTextureData(std::string_view textureAtlasName, std::string_view textureName) const;
2021-12-25 10:04:45 +08:00
virtual bool _fillBuildArmaturePackage(BuildArmaturePackage& dataPackage,
std::string_view dragonBonesName,
std::string_view armatureName,
std::string_view skinName,
std::string_view textureAtlasName) const;
virtual void _buildBones(const BuildArmaturePackage& dataPackage, Armature* armature) const;
/**
* @private
*/
virtual void _buildSlots(const BuildArmaturePackage& dataPackage, Armature* armature) const;
2021-12-25 10:04:45 +08:00
virtual Armature* _buildChildArmature(const BuildArmaturePackage* dataPackage,
Slot* slot,
DisplayData* displayData) const;
virtual std::pair<void*, DisplayType> _getSlotDisplay(const BuildArmaturePackage* dataPackage,
DisplayData* displayData,
DisplayData* rawDisplayData,
Slot* slot) const;
virtual TextureAtlasData* _buildTextureAtlasData(TextureAtlasData* textureAtlasData, void* textureAtlas) const = 0;
2021-12-25 10:04:45 +08:00
virtual Armature* _buildArmature(const BuildArmaturePackage& dataPackage) const = 0;
virtual Slot* _buildSlot(const BuildArmaturePackage& dataPackage,
const SlotData* slotData,
Armature* armature) const = 0;
public:
/**
* - Parse the raw data to a DragonBonesData instance and cache it to the factory.
* @param rawData - The raw data.
2021-12-25 10:04:45 +08:00
* @param name - Specify a cache name for the instance so that the instance can be obtained through this name. (If
* not set, use the instance name instead)
* @param scale - Specify a scaling value for all armatures. (Default: 1.0)
* @returns DragonBonesData instance
* @see #getDragonBonesData()
* @see #addDragonBonesData()
* @see #removeDragonBonesData()
* @see dragonBones.DragonBonesData
* @version DragonBones 4.5
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - DragonBonesData
* @param rawData -
* @param name - 便 使
* @param scale - : 1.0
* @returns DragonBonesData
* @see #getDragonBonesData()
* @see #addDragonBonesData()
* @see #removeDragonBonesData()
* @see dragonBones.DragonBonesData
* @version DragonBones 4.5
* @language zh_CN
*/
virtual DragonBonesData* parseDragonBonesData(const char* rawData, std::string_view name = "", float scale = 1.0f);
/**
2021-12-25 10:04:45 +08:00
* - Parse the raw texture atlas data and the texture atlas object to a TextureAtlasData instance and cache it to
* the factory.
* @param rawData - The raw texture atlas data.
* @param textureAtlas - The texture atlas object.
2021-12-25 10:04:45 +08:00
* @param name - Specify a cache name for the instance so that the instance can be obtained through this name. (If
* not set, use the instance name instead)
* @param scale - Specify a scaling value for the map set. (Default: 1.0)
* @returns TextureAtlasData instance
* @see #getTextureAtlasData()
* @see #addTextureAtlasData()
* @see #removeTextureAtlasData()
* @see dragonBones.TextureAtlasData
* @version DragonBones 4.5
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - TextureAtlasData
* @param rawData -
* @param textureAtlas -
* @param name - 便 使
* @param scale - : 1.0
* @returns TextureAtlasData
* @see #getTextureAtlasData()
* @see #addTextureAtlasData()
* @see #removeTextureAtlasData()
* @see dragonBones.TextureAtlasData
* @version DragonBones 4.5
* @language zh_CN
*/
2021-12-25 10:04:45 +08:00
virtual TextureAtlasData* parseTextureAtlasData(const char* rawData,
void* textureAtlas,
std::string_view name = "",
float scale = 1.0f);
/**
* - Get a specific DragonBonesData instance.
* @param name - The DragonBonesData instance cache name.
* @returns DragonBonesData instance
* @see #parseDragonBonesData()
* @see #addDragonBonesData()
* @see #removeDragonBonesData()
* @see dragonBones.DragonBonesData
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - DragonBonesData
* @param name - DragonBonesData
* @returns DragonBonesData
* @see #parseDragonBonesData()
* @see #addDragonBonesData()
* @see #removeDragonBonesData()
* @see dragonBones.DragonBonesData
* @version DragonBones 3.0
* @language zh_CN
*/
inline DragonBonesData* getDragonBonesData(std::string_view name) const
{
return mapFind(_dragonBonesDataMap, name);
}
/**
* - Cache a DragonBonesData instance to the factory.
* @param data - The DragonBonesData instance.
2021-12-25 10:04:45 +08:00
* @param name - Specify a cache name for the instance so that the instance can be obtained through this name. (if
* not set, use the instance name instead)
* @see #parseDragonBonesData()
* @see #getDragonBonesData()
* @see #removeDragonBonesData()
* @see dragonBones.DragonBonesData
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - DragonBonesData
* @param data - DragonBonesData
* @param name - 便 使
* @see #parseDragonBonesData()
* @see #getDragonBonesData()
* @see #removeDragonBonesData()
* @see dragonBones.DragonBonesData
* @version DragonBones 3.0
* @language zh_CN
*/
virtual void addDragonBonesData(DragonBonesData* data, std::string_view name = "");
/**
* - Remove a DragonBonesData instance.
* @param name - The DragonBonesData instance cache name.
* @param disposeData - Whether to dispose data. (Default: true)
* @see #parseDragonBonesData()
* @see #getDragonBonesData()
* @see #addDragonBonesData()
* @see dragonBones.DragonBonesData
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - DragonBonesData
* @param name - DragonBonesData
* @param disposeData - : true
* @see #parseDragonBonesData()
* @see #getDragonBonesData()
* @see #addDragonBonesData()
* @see dragonBones.DragonBonesData
* @version DragonBones 3.0
* @language zh_CN
*/
virtual void removeDragonBonesData(std::string_view name, bool disposeData = true);
/**
* - Get a list of specific TextureAtlasData instances.
* @param name - The TextureAtlasData cahce name.
* @see #parseTextureAtlasData()
* @see #addTextureAtlasData()
* @see #removeTextureAtlasData()
* @see dragonBones.TextureAtlasData
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - TextureAtlasData
* @param name - TextureAtlasData
* @see #parseTextureAtlasData()
* @see #addTextureAtlasData()
* @see #removeTextureAtlasData()
* @see dragonBones.TextureAtlasData
* @version DragonBones 3.0
* @language zh_CN
*/
inline std::vector<TextureAtlasData*>* getTextureAtlasData(std::string_view name)
{
return mapFindB(_textureAtlasDataMap, name);
}
/**
* - Cache a TextureAtlasData instance to the factory.
* @param data - The TextureAtlasData instance.
2021-12-25 10:04:45 +08:00
* @param name - Specify a cache name for the instance so that the instance can be obtained through this name. (if
* not set, use the instance name instead)
* @see #parseTextureAtlasData()
* @see #getTextureAtlasData()
* @see #removeTextureAtlasData()
* @see dragonBones.TextureAtlasData
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - TextureAtlasData
* @param data - TextureAtlasData
* @param name - 便 使
* @see #parseTextureAtlasData()
* @see #getTextureAtlasData()
* @see #removeTextureAtlasData()
* @see dragonBones.TextureAtlasData
* @version DragonBones 3.0
* @language zh_CN
*/
virtual void addTextureAtlasData(TextureAtlasData* data, std::string_view name = "");
/**
* - Remove a TextureAtlasData instance.
* @param name - The TextureAtlasData instance cache name.
* @param disposeData - Whether to dispose data.
* @see #parseTextureAtlasData()
* @see #getTextureAtlasData()
* @see #addTextureAtlasData()
* @see dragonBones.TextureAtlasData
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - TextureAtlasData
* @param name - TextureAtlasData
* @param disposeData -
* @see #parseTextureAtlasData()
* @see #getTextureAtlasData()
* @see #addTextureAtlasData()
* @see dragonBones.TextureAtlasData
* @version DragonBones 3.0
* @language zh_CN
*/
virtual void removeTextureAtlasData(std::string_view name, bool disposeData = true);
/**
* - Get a specific armature data.
* @param name - The armature data name.
* @param dragonBonesName - The cached name for DragonbonesData instance.
* @see dragonBones.ArmatureData
* @version DragonBones 5.1
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* -
* @param name -
* @param dragonBonesName - DragonBonesData
* @see dragonBones.ArmatureData
* @version DragonBones 5.1
* @language zh_CN
*/
virtual ArmatureData* getArmatureData(std::string_view name, std::string_view dragonBonesName = "") const;
/**
* - Clear all cached DragonBonesData instances and TextureAtlasData instances.
* @param disposeData - Whether to dispose data.
* @version DragonBones 4.5
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - DragonBonesData TextureAtlasData
* @param disposeData -
* @version DragonBones 4.5
* @language zh_CN
*/
virtual void clear(bool disposeData = true);
/**
* - Create a armature from cached DragonBonesData instances and TextureAtlasData instances.
2021-12-25 10:04:45 +08:00
* Note that when the created armature that is no longer in use, you need to explicitly dispose {@link
* #dragonBones.Armature#dispose()}.
* @param armatureName - The armature data name.
2021-12-25 10:04:45 +08:00
* @param dragonBonesName - The cached name of the DragonBonesData instance. (If not set, all DragonBonesData
* instances are retrieved, and when multiple DragonBonesData instances contain a the same name armature data, it
* may not be possible to accurately create a specific armature)
* @param skinName - The skin name, you can set a different ArmatureData name to share it's skin data. (If not set,
* use the default skin data)
* @returns The armature.
* @example
* TypeScript style, for reference only.
* <pre>
* let armature = factory.buildArmature("armatureName", "dragonBonesName");
* armature.clock = factory.clock;
* </pre>
* @see dragonBones.DragonBonesData
* @see dragonBones.ArmatureData
* @version DragonBones 3.0
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - DragonBonesData TextureAtlasData
* 使 {@link #dragonBones.Armature#dispose()}
* @param armatureName -
2021-12-25 10:04:45 +08:00
* @param dragonBonesName - DragonBonesData DragonBonesData
* DragonBonesData
2021-12-24 21:11:44 +08:00
* @param skinName - 使
* @returns
* @example
2021-12-24 21:11:44 +08:00
* TypeScript
* <pre>
* let armature = factory.buildArmature("armatureName", "dragonBonesName");
* armature.clock = factory.clock;
* </pre>
* @see dragonBones.DragonBonesData
* @see dragonBones.ArmatureData
* @version DragonBones 3.0
* @language zh_CN
*/
virtual Armature* buildArmature(std::string_view armatureName,
std::string_view dragonBonesName = "",
std::string_view skinName = "",
std::string_view textureAtlasName = "") const;
/**
* @private
*/
virtual void replaceDisplay(Slot* slot, DisplayData* displayData, int displayIndex) const;
/**
* - Replaces the current display data for a particular slot with a specific display data.
* Specify display data with "dragonBonesName/armatureName/slotName/displayName".
* @param dragonBonesName - The DragonBonesData instance cache name.
* @param armatureName - The armature data name.
* @param slotName - The slot data name.
* @param displayName - The display data name.
* @param slot - The slot.
2021-12-25 10:04:45 +08:00
* @param displayIndex - The index of the display data that is replaced. (If it is not set, replaces the current
* display data)
* @example
* TypeScript style, for reference only.
* <pre>
* let slot = armature.getSlot("weapon");
* factory.replaceSlotDisplay("dragonBonesName", "armatureName", "slotName", "displayName", slot);
* </pre>
* @version DragonBones 4.5
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* -
* "dragonBonesName/armatureName/slotName/displayName"
* @param dragonBonesName - DragonBonesData
* @param armatureName -
* @param slotName -
* @param displayName -
* @param slot -
* @param displayIndex -
* @example
2021-12-24 21:11:44 +08:00
* TypeScript
* <pre>
* let slot = armature.getSlot("weapon");
* factory.replaceSlotDisplay("dragonBonesName", "armatureName", "slotName", "displayName", slot);
* </pre>
* @version DragonBones 4.5
* @language zh_CN
*/
virtual bool replaceSlotDisplay(std::string_view dragonBonesName,
std::string_view armatureName,
std::string_view slotName,
std::string_view displayName,
2021-12-25 10:04:45 +08:00
Slot* slot,
int displayIndex = -1) const;
/**
* @private
*/
virtual bool replaceSlotDisplayList(std::string_view dragonBonesName,
std::string_view armatureName,
std::string_view slotName,
2021-12-25 10:04:45 +08:00
Slot* slot) const;
/**
* - Share specific skin data with specific armature.
* @param armature - The armature.
* @param skin - The skin data.
* @param isOverride - Whether it completely override the original skin. (Default: false)
* @param exclude - A list of slot names that do not need to be replace.
* @example
* TypeScript style, for reference only.
* <pre>
* let armatureA = factory.buildArmature("armatureA", "dragonBonesA");
* let armatureDataB = factory.getArmatureData("armatureB", "dragonBonesB");
* if (armatureDataB && armatureDataB.defaultSkin) {
* factory.replaceSkin(armatureA, armatureDataB.defaultSkin, false, ["arm_l", "weapon_l"]);
* }
* </pre>
* @see dragonBones.Armature
* @see dragonBones.SkinData
* @version DragonBones 5.6
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - 使
* @param armature -
* @param skin -
* @param isOverride - : false
* @param exclude -
* @example
2021-12-24 21:11:44 +08:00
* TypeScript
* <pre>
* let armatureA = factory.buildArmature("armatureA", "dragonBonesA");
* let armatureDataB = factory.getArmatureData("armatureB", "dragonBonesB");
* if (armatureDataB && armatureDataB.defaultSkin) {
* factory.replaceSkin(armatureA, armatureDataB.defaultSkin, false, ["arm_l", "weapon_l"]);
* }
* </pre>
* @see dragonBones.Armature
* @see dragonBones.SkinData
* @version DragonBones 5.6
* @language zh_CN
*/
2021-12-25 10:04:45 +08:00
virtual bool replaceSkin(Armature* armature,
SkinData* skin,
bool isOverride = false,
const std::vector<std::string>* exclude = nullptr) const;
/**
2021-12-25 10:04:45 +08:00
* - Replaces the existing animation data for a specific armature with the animation data for the specific armature
* data. This enables you to make a armature template so that other armature without animations can share it's
* animations.
* @param armature - The armtaure.
* @param armatureData - The armature data.
* @param isOverride - Whether to completely overwrite the original animation. (Default: false)
* @example
* TypeScript style, for reference only.
* <pre>
* let armatureA = factory.buildArmature("armatureA", "dragonBonesA");
* let armatureDataB = factory.getArmatureData("armatureB", "dragonBonesB");
* if (armatureDataB) {
* factory.replaceAnimation(armatureA, armatureDataB);
* }
* </pre>
* @see dragonBones.Armature
* @see dragonBones.ArmatureData
* @version DragonBones 5.6
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* -
*
* @param armature -
* @param armatureData -
* @param isOverride - : false
* @example
2021-12-24 21:11:44 +08:00
* TypeScript
* <pre>
* let armatureA = factory.buildArmature("armatureA", "dragonBonesA");
* let armatureDataB = factory.getArmatureData("armatureB", "dragonBonesB");
* if (armatureDataB) {
* factory.replaceAnimation(armatureA, armatureDataB);
* }
* </pre>
* @see dragonBones.Armature
* @see dragonBones.ArmatureData
* @version DragonBones 5.6
* @language zh_CN
*/
virtual bool replaceAnimation(Armature* armature, ArmatureData* armatureData, bool isReplaceAll = true) const;
/**
* @private
*/
inline const hlookup::string_map<std::vector<TextureAtlasData*>>& getAllTextureAtlasData() const
{
return _textureAtlasDataMap;
}
/**
* @private
*/
inline const hlookup::string_map<DragonBonesData*>& getAllDragonBonesData() const { return _dragonBonesDataMap; }
/**
* - An Worldclock instance updated by engine.
* @version DragonBones 5.7
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - WorldClock
* @version DragonBones 5.7
* @language zh_CN
*/
2021-12-25 10:04:45 +08:00
inline WorldClock* getClock() const { return _dragonBones->getClock(); }
/**
* - Deprecated, please refer to {@link #replaceSkin}.
* @deprecated
* @language en_US
*/
/**
2021-12-24 21:11:44 +08:00
* - {@link #replaceSkin}
* @deprecated
* @language zh_CN
*/
inline bool changeSkin(Armature* armature, SkinData* skin, const std::vector<std::string>* exclude = nullptr) const
{
return replaceSkin(armature, skin, false, exclude);
}
};
/**
* @internal
*/
class BuildArmaturePackage
{
DRAGONBONES_DISALLOW_COPY_AND_ASSIGN(BuildArmaturePackage)
public:
std::string dataName;
std::string textureAtlasName;
DragonBonesData* data;
ArmatureData* armature;
SkinData* skin;
2021-12-25 10:04:45 +08:00
BuildArmaturePackage() : dataName(), textureAtlasName(), data(nullptr), armature(nullptr), skin(nullptr) {}
~BuildArmaturePackage() {}
};
DRAGONBONES_NAMESPACE_END
2021-12-25 10:04:45 +08:00
#endif // DRAGONBONES_BASE_FACTORY_H