赞
踩
ide
里修改代码后,启动调试,跑不到最新代码,而是跑的exe目录下的代码,带来非常差的开发体验simulator
写死了代码来读取上级目录下的资源res
和src
文件夹拷贝到.exe所在路径,同时引擎中写死了优先加载exe所在目录下的Resources
下资源复制 axmol
引擎的thridparty/ntcvt
文件夹到 external
目录下,点击下载ntcvt.zip
将 axmol
针对win32优化的关键代码拷贝到 CCFileUtils-win32.cpp
,注意包含 ntcvt/ntcvt.hpp
,点击下载修改后的CCFileUtils-win32.zip
static void _checkWorkingPath() { if (s_workingPath.empty()) { WCHAR utf16Path[CC_MAX_PATH] = {0}; int nNum = GetCurrentDirectoryW(CC_MAX_PATH - 2, utf16Path); char utf8WorkingDir[CC_MAX_PATH] = {0}; nNum = WideCharToMultiByte(CP_UTF8, 0, utf16Path, nNum, utf8WorkingDir, sizeof(utf8WorkingDir), nullptr, nullptr); if (nNum < (CC_MAX_PATH - 2)) { utf8WorkingDir[nNum] = '\\'; utf8WorkingDir[nNum + 1] = '\0'; s_workingPath = convertPathFormatToUnixStyle(utf8WorkingDir); } } } static void _checkExePath() { if (s_exePath.empty()) { WCHAR utf16Path[CC_MAX_PATH] = {0}; GetModuleFileNameW(NULL, utf16Path, CC_MAX_PATH - 1); WCHAR* pUtf16ExePath = &(utf16Path[0]); // We need only directory part without exe WCHAR* pUtf16DirEnd = wcsrchr(pUtf16ExePath, L'\\'); auto utf8ExeDir = ntcvt::wcbs2a<std::string>(pUtf16ExePath, pUtf16DirEnd - pUtf16ExePath + 1); s_exePath = convertPathFormatToUnixStyle(utf8ExeDir); } } bool FileUtilsWin32::init() { DECLARE_GUARD; _checkWorkingPath(); _defaultResRootPath = s_workingPath; bool bRet = FileUtils::init(); _checkExePath(); if (s_workingPath != s_exePath) addSearchPath(s_exePath); return bRet; }
修改模板的CMakeLists.txt,去除WINDOWS
平台拷贝资源到exe目录下的逻辑,点击下载修改后的CMakeLists.txt
# copy resource on linux or WINDOWS
if(LINUX OR WINDOWS)
cocos_get_resource_path(APP_RES_DIR ${APP_NAME})
cocos_sync_folder(${APP_NAME} ${res_res_folders} ${APP_RES_DIR}/res)
cocos_sync_folder(${APP_NAME} ${res_src_folders} ${APP_RES_DIR}/src)
endif()
修改为
# copy resource on linux or WINDOWS
if(LINUX)
cocos_get_resource_path(APP_RES_DIR ${APP_NAME})
cocos_sync_folder(${APP_NAME} ${res_res_folders} ${APP_RES_DIR}/res)
cocos_sync_folder(${APP_NAME} ${res_src_folders} ${APP_RES_DIR}/src)
endif()
如图所示:
例如:
@start build\bin\q4\Debug\q4.exe
将以上代码(注意要修改成你实际exe相对于项目的路径)保存为 run_d.bat
,放到项目根目录下就可以双击它快速启动游戏了。
2022/2/11更新: 可参考axmol对windows开发工作流的增强,axmol新建的工程,执行cmake后,会根据模板文件run.bat.in生成对应的run.bat
方便双击运行游戏
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。