之前碰到乙個檔案採用第一種載入方式時,如果地**件以及相對應的圖塊檔案放在資源檔案中的另乙個檔案下,比如map資料夾下時,會發生錯誤,找不到圖塊檔案,因為原始碼依然實在資源檔案下找。
這種情況下,比如對資源進行分類,把地**件單獨放到乙個資料夾下,就要用到第二種載入方式了
[cpp]view plain
copy
print?
//建立乙個cctmxtiledmap(第一種載入方式)
cctmxtiledmap *bgmap = cctmxtiledmap::create("tiledmap\\background.tmx");
//建立乙個cctmxtiledmap(第一種載入方式)
cctmxtiledmap *bgmap = cctmxtiledmap::create("tiledmap\\background.tmx");
[cpp]view plain
copy
print?
//建立乙個cctmxtiledmap(第二種載入方式)
std::string resources = "tilemap";
std::string file = resources + "/orthogonal-test1.tmx";
ccstring* str = ccstring::createwithcontentsoffile(ccfileutils::sharedfileutils()->fullpathforfilename(file.c_str()).c_str());
//create引數說明:資源檔案全路徑,資源路徑目錄
cctmxtiledmap *map = cctmxtiledmap::createwithxml(str->getcstring() ,resources.c_str());
//建立乙個cctmxtiledmap(第二種載入方式)
std::string resources = "tilemap";
std::string file = resources + "/orthogonal-test1.tmx";
ccstring* str = ccstring::createwithcontentsoffile(ccfileutils::sharedfileutils()->fullpathforfilename(file.c_str()).c_str());
//create引數說明:資源檔案全路徑,資源路徑目錄
cctmxtiledmap *map = cctmxtiledmap::createwithxml(str->getcstring() ,resources.c_str());
另外tiledmap不支援bmp的圖塊,每乙個layer不能為空,必須有乙個圖塊填充,不然也會報記憶體錯誤!
使用GraphEdit使用
1 註冊元件。其實乙個filter就是乙個com元件,所以使用之前需要註冊,可以有兩種方法對元件進行註冊。1.直接使用命令。命令列下輸入 regsvr32 hqtlystd.ax 編譯之後你會在工程目錄下的debug中找到hqtlystd.ax,這個就是要用的filter 即可註冊成功。2.vc6....
MySQL使用學習使用 mysql學習使用
1 mysql學習 1 安裝 ubuntu下直接安裝 apt get install mysql server 2 檢查伺服器是否啟動 sudo netstat tap grep mysql,如果啟動成功,出現以下資訊 tcp00localhost.localdomain mysql listen ...
學習使用CSDN markdown使用
建立乙個自定義列表 如何建立乙個註腳 注釋也是必不可少的 katex數學公式 新的甘特圖功能,豐富你的文章 uml 圖表 flowchart流程圖 匯出與匯入 你好!這是你第一次使用markdown編輯器所展示的歡迎頁。如果你想學習如何使用markdown編輯器,可以仔細閱讀這篇文章,了解一下mar...