RuntimeLuaImpl.h 759 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // RuntimeLuaImpl.h
  3. // Simulator
  4. //
  5. //
  6. #ifndef __Simulator__RuntimeLuaImpl__
  7. #define __Simulator__RuntimeLuaImpl__
  8. #include "CodeIDESupport.h"
  9. #include "cocos2d.h"
  10. #if (COCOS2D_DEBUG > 0) && (CC_CODE_IDE_DEBUG_SUPPORT > 0)
  11. #include "runtime/RuntimeProtocol.h"
  12. class RuntimeLuaImpl : public RuntimeProtocol
  13. {
  14. public:
  15. static RuntimeLuaImpl *create();
  16. void onStartDebuger(const rapidjson::Document& dArgParse, rapidjson::Document& dReplyParse);
  17. void onReload(const rapidjson::Document& dArgParse, rapidjson::Document& dReplyParse);
  18. void startScript(const std::string& strDebugArg);
  19. private:
  20. void init();
  21. };
  22. #endif // (COCOS2D_DEBUG > 0) && (CC_CODE_IDE_DEBUG_SUPPORT > 0)
  23. #endif /* defined(__Simulator__RuntimeLua__) */