axmol/extensions/assets-manager/CCEventAssetsManagerEx.h

107 lines
3.3 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2014-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-12-25 10:04:45 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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
2019-11-23 20:27:39 +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
2019-11-23 20:27:39 +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 __cocos2d_libs__CCEventAssetsManagerEx__
#define __cocos2d_libs__CCEventAssetsManagerEx__
#include "base/CCEvent.h"
#include "base/CCEventCustom.h"
2021-12-25 10:04:45 +08:00
#include "extensions/ExtensionMacros.h"
2019-11-23 20:27:39 +08:00
#include "extensions/ExtensionExport.h"
NS_AX_EXT_BEGIN
2019-11-23 20:27:39 +08:00
class AssetsManagerEx;
2022-08-08 18:02:17 +08:00
class AX_EX_DLL EventAssetsManagerEx : public ax::EventCustom
2019-11-23 20:27:39 +08:00
{
public:
friend class AssetsManagerEx;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
//! Update events code
enum class EventCode
{
ERROR_NO_LOCAL_MANIFEST,
ERROR_DOWNLOAD_MANIFEST,
ERROR_PARSE_MANIFEST,
NEW_VERSION_FOUND,
ALREADY_UP_TO_DATE,
UPDATE_PROGRESSION,
ASSET_UPDATED,
ERROR_UPDATING,
UPDATE_FINISHED,
UPDATE_FAILED,
ERROR_DECOMPRESS
};
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
EventCode getEventCode() const { return _code; }
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
int getCURLECode() const { return _curle_code; }
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
int getCURLMCode() const { return _curlm_code; }
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
std::string getMessage() const { return _message; }
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
std::string getAssetId() const { return _assetId; }
2021-12-25 10:04:45 +08:00
2022-08-08 18:02:17 +08:00
ax::extension::AssetsManagerEx* getAssetsManagerEx() const { return _manager; }
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
float getPercent() const { return _percent; }
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
float getPercentByFile() const { return _percentByFile; }
2021-12-25 10:04:45 +08:00
/** Constructor */
EventAssetsManagerEx(std::string_view eventName,
2022-08-08 18:02:17 +08:00
ax::extension::AssetsManagerEx* manager,
const EventCode& code,
float percent = 0,
float percentByFile = 0,
std::string_view assetId = "",
std::string_view message = "",
int curle_code = 0,
int curlm_code = 0);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
private:
EventCode _code;
2021-12-25 10:04:45 +08:00
2022-08-08 18:02:17 +08:00
ax::extension::AssetsManagerEx* _manager;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
std::string _message;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
std::string _assetId;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
int _curle_code;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
int _curlm_code;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
float _percent;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
float _percentByFile;
};
NS_AX_EXT_END
2019-11-23 20:27:39 +08:00
#endif /* defined(__cocos2d_libs__CCEventAssetsManagerEx__) */