2018-01-29 16:25:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-07 17:50:15 +08:00
|
|
|
#ifndef __CONFIG_PARSER_H__
|
|
|
|
#define __CONFIG_PARSER_H__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include "cocos2d.h"
|
2016-11-04 09:36:59 +08:00
|
|
|
#include "json/document-wrapper.h"
|
2015-01-07 17:50:15 +08:00
|
|
|
#include "ProjectConfig/SimulatorConfig.h"
|
|
|
|
#include "ProjectConfig/ProjectConfig.h"
|
2015-11-25 21:52:44 +08:00
|
|
|
#include "SimulatorExport.h"
|
|
|
|
|
2015-01-07 17:50:15 +08:00
|
|
|
using namespace std;
|
|
|
|
USING_NS_CC;
|
|
|
|
|
|
|
|
#define CONFIG_FILE "config.json"
|
|
|
|
|
|
|
|
typedef vector<SimulatorScreenSize> ScreenSizeArray;
|
2015-11-25 21:52:44 +08:00
|
|
|
class CC_LIBSIM_DLL ConfigParser
|
2015-01-07 17:50:15 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static ConfigParser *getInstance(void);
|
|
|
|
static void purge();
|
|
|
|
|
|
|
|
void readConfig(const string &filepath = "");
|
|
|
|
|
|
|
|
// predefined screen size
|
|
|
|
int getScreenSizeCount(void);
|
|
|
|
cocos2d::Size getInitViewSize();
|
|
|
|
string getInitViewName();
|
|
|
|
string getEntryFile();
|
|
|
|
rapidjson::Document& getConfigJsonRoot();
|
|
|
|
const SimulatorScreenSize getScreenSize(int index);
|
|
|
|
void setConsolePort(int port);
|
|
|
|
void setUploadPort(int port);
|
|
|
|
int getConsolePort();
|
|
|
|
int getUploadPort();
|
2015-04-02 18:27:53 +08:00
|
|
|
int getDebugPort();
|
2015-10-16 11:36:20 +08:00
|
|
|
bool isLanscape();
|
2015-01-07 17:50:15 +08:00
|
|
|
bool isWindowTop();
|
|
|
|
|
|
|
|
void setEntryFile(const std::string &file);
|
|
|
|
void setInitViewSize(const cocos2d::Size &size);
|
|
|
|
void setBindAddress(const std::string &address);
|
|
|
|
const std::string &getBindAddress();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ConfigParser(void);
|
2015-04-02 18:27:53 +08:00
|
|
|
void setDebugPort(int port);
|
2015-01-07 17:50:15 +08:00
|
|
|
static ConfigParser *s_sharedConfigParserInstance;
|
|
|
|
ScreenSizeArray _screenSizeArray;
|
|
|
|
cocos2d::Size _initViewSize;
|
|
|
|
string _viewName;
|
|
|
|
string _entryfile;
|
2015-10-16 11:36:20 +08:00
|
|
|
bool _isLandscape;
|
2015-01-07 17:50:15 +08:00
|
|
|
bool _isWindowTop;
|
|
|
|
int _consolePort;
|
|
|
|
int _uploadPort;
|
2015-04-02 18:27:53 +08:00
|
|
|
int _debugPort;
|
2015-01-07 17:50:15 +08:00
|
|
|
string _bindAddress;
|
|
|
|
|
|
|
|
rapidjson::Document _docRootjson;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __CONFIG_PARSER_H__
|
|
|
|
|