├── .gitignore ├── CocosBase ├── CCBaseMacros.h ├── CCBundle.cpp ├── CCBundle.h ├── CCMsgDelegate.cpp ├── CCMsgDelegate.h ├── CCMsgManager.cpp ├── CCMsgManager.h ├── CCSceneExTransition.cpp ├── CCSceneExTransition.h ├── CCSceneExtension.cpp ├── CCSceneExtension.h ├── CCSceneManager.cpp ├── CCSceneManager.h ├── cocos-base.h ├── lua_cocos2dx_cocosbase_auto.cpp └── lua_cocos2dx_cocosbase_auto.hpp ├── CocosBaseTestCpp ├── .cocos-project.json ├── CMakeLists.txt ├── Classes │ ├── AppDelegate.cpp │ ├── AppDelegate.h │ ├── MenuScene.cpp │ ├── MenuScene.h │ └── Test │ │ └── BasicSceneTest │ │ ├── BasicSceneTest.cpp │ │ └── BasicSceneTest.h ├── Resources │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── back1.png │ ├── back2.png │ ├── background.png │ ├── btn1_1.png │ ├── btn1_2.png │ ├── fonts │ │ └── Marker Felt.ttf │ ├── next1.png │ ├── next2.png │ ├── startMenuBG.png │ ├── toggle1_1.png │ └── toggle1_2.png ├── proj.android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── ant.properties │ ├── build-cfg.json │ ├── build.xml │ ├── build_native.py │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── hellocpp │ │ │ └── main.cpp │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── cpp │ │ └── AppActivity.java ├── proj.ios_mac │ ├── CocosBaseTestCpp.xcodeproj │ │ └── project.pbxproj │ ├── ios │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-100.png │ │ ├── Icon-114.png │ │ ├── Icon-120.png │ │ ├── Icon-144.png │ │ ├── Icon-152.png │ │ ├── Icon-29.png │ │ ├── Icon-40.png │ │ ├── Icon-50.png │ │ ├── Icon-57.png │ │ ├── Icon-58.png │ │ ├── Icon-72.png │ │ ├── Icon-76.png │ │ ├── Icon-80.png │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ ├── RootViewController.h │ │ ├── RootViewController.mm │ │ └── main.m │ └── mac │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ └── main.cpp ├── proj.linux │ └── main.cpp ├── proj.win32 │ ├── CocosBaseTestCpp.sln │ ├── CocosBaseTestCpp.v11.suo │ ├── CocosBaseTestCpp.vcxproj │ ├── CocosBaseTestCpp.vcxproj.filters │ ├── CocosBaseTestCpp.vcxproj.user │ ├── build-cfg.json │ ├── game.rc │ ├── main.cpp │ ├── main.h │ ├── res │ │ └── game.ico │ └── resource.h └── proj.wp8-xaml │ ├── HelloCpp.sln │ ├── HelloCpp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ ├── Resources │ │ │ └── fonts │ │ │ │ └── arial.ttf │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── EditBox.xaml │ ├── EditBox.xaml.cs │ ├── HelloCpp.csproj │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ └── SplashScreenImage.jpg │ └── HelloCppComponent │ ├── HelloCppComponent.vcxproj │ ├── HelloCppComponent.vcxproj.filters │ ├── pch.cpp │ └── pch.h ├── CocosNet ├── CCBuffer.cpp ├── CCBuffer.h ├── CCInetAddress.cpp ├── CCInetAddress.h ├── CCNetDelegate.cpp ├── CCNetDelegate.h ├── CCNetMacros.h ├── CCSocket.cpp ├── CCSocket.h ├── cocos-net.h ├── lua_cocos2dx_cocosnet_auto.cpp └── lua_cocos2dx_cocosnet_auto.hpp ├── CocosNetTestCpp ├── .cocos-project.json ├── CMakeLists.txt ├── Classes │ ├── AppDelegate.cpp │ ├── AppDelegate.h │ ├── HelloWorldScene.cpp │ └── HelloWorldScene.h ├── Resources │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── Icon.png │ └── fonts │ │ └── Marker Felt.ttf ├── proj.android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── ant.properties │ ├── build-cfg.json │ ├── build.xml │ ├── build_native.py │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── hellocpp │ │ │ └── main.cpp │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── cpp │ │ └── AppActivity.java ├── proj.ios_mac │ ├── CocosNetTestCpp.xcodeproj │ │ └── project.pbxproj │ ├── ios │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-100.png │ │ ├── Icon-114.png │ │ ├── Icon-120.png │ │ ├── Icon-144.png │ │ ├── Icon-152.png │ │ ├── Icon-29.png │ │ ├── Icon-40.png │ │ ├── Icon-50.png │ │ ├── Icon-57.png │ │ ├── Icon-58.png │ │ ├── Icon-72.png │ │ ├── Icon-76.png │ │ ├── Icon-80.png │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ ├── RootViewController.h │ │ ├── RootViewController.mm │ │ └── main.m │ └── mac │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ └── main.cpp ├── proj.linux │ └── main.cpp ├── proj.win32 │ ├── CocosNetTestCpp.sln │ ├── CocosNetTestCpp.v11.suo │ ├── CocosNetTestCpp.vcxproj │ ├── CocosNetTestCpp.vcxproj.filters │ ├── CocosNetTestCpp.vcxproj.user │ ├── build-cfg.json │ ├── game.rc │ ├── main.cpp │ ├── main.h │ ├── res │ │ └── game.ico │ └── resource.h └── proj.wp8-xaml │ ├── HelloCpp.sln │ ├── HelloCpp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ ├── Resources │ │ │ └── fonts │ │ │ │ └── arial.ttf │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── EditBox.xaml │ ├── EditBox.xaml.cs │ ├── HelloCpp.csproj │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ └── SplashScreenImage.jpg │ └── HelloCppComponent │ ├── HelloCppComponent.vcxproj │ ├── HelloCppComponent.vcxproj.filters │ ├── pch.cpp │ └── pch.h ├── CocosWidget ├── ArmatureBtn.cpp ├── ArmatureBtn.h ├── Button.cpp ├── Button.h ├── CEditBox │ ├── CEditBox.cpp │ ├── CEditBox.h │ ├── CEditBoxImpl.h │ ├── CEditBoxImplAndroid.cpp │ ├── CEditBoxImplAndroid.h │ ├── CEditBoxImplIOS.h │ ├── CEditBoxImplIOS.mm │ ├── CEditBoxImplMac.h │ ├── CEditBoxImplMac.mm │ ├── CEditBoxImplNone.cpp │ ├── CEditBoxImplWin.cpp │ ├── CEditBoxImplWin.h │ ├── CEditBoxImplWp8.cpp │ ├── CEditBoxImplWp8.h │ ├── Win32InputBox.cpp │ └── Win32InputBox.h ├── CheckBox.cpp ├── CheckBox.h ├── CircleMenu.cpp ├── CircleMenu.h ├── ColorView.cpp ├── ColorView.h ├── ControlView.cpp ├── ControlView.h ├── ExpandableListView.cpp ├── ExpandableListView.h ├── GradientView.cpp ├── GradientView.h ├── GridPageView.cpp ├── GridPageView.h ├── GridView.cpp ├── GridView.h ├── ImageView.cpp ├── ImageView.h ├── ImageViewScale9.cpp ├── ImageViewScale9.h ├── Label.cpp ├── Label.h ├── LabelAtlas.cpp ├── LabelAtlas.h ├── LabelBMFont.cpp ├── LabelBMFont.h ├── Layout.cpp ├── Layout.h ├── ListView.cpp ├── ListView.h ├── MapView.cpp ├── MapView.h ├── NumericStepper.cpp ├── NumericStepper.h ├── PageView.cpp ├── PageView.h ├── ProgressBar.cpp ├── ProgressBar.h ├── Scale9Sprite.cpp ├── Scale9Sprite.h ├── ScrollView.cpp ├── ScrollView.h ├── Slider.cpp ├── Slider.h ├── TableView.cpp ├── TableView.h ├── TextRich.cpp ├── TextRich.h ├── ToggleView.cpp ├── ToggleView.h ├── Widget.cpp ├── Widget.h ├── WidgetMacros.h ├── WidgetProtocol.cpp ├── WidgetProtocol.h ├── WidgetWindow.cpp ├── WidgetWindow.h ├── WitlsMacros.cpp ├── WitlsMacros.h ├── cocos-widget.h ├── lua_cocos2dx_cocoswidget_auto.cpp └── lua_cocos2dx_cocoswidget_auto.hpp ├── CocosWidgetTestCpp ├── .cocos-project.json ├── CMakeLists.txt ├── Classes │ ├── AppDelegate.cpp │ ├── AppDelegate.h │ ├── HelloWorldScene.cpp │ ├── HelloWorldScene.h │ ├── MenuScene.cpp │ ├── MenuScene.h │ ├── action │ │ ├── LabelChange.cpp │ │ └── LabelChange.h │ └── testwidget │ │ ├── ButtonTest │ │ ├── ButtonTest.cpp │ │ └── ButtonTest.h │ │ ├── CheckBoxTest │ │ ├── CheckBoxTest.cpp │ │ └── CheckBoxTest.h │ │ ├── ControlViewTest │ │ ├── ControlViewTest.cpp │ │ └── ControlViewTest.h │ │ ├── DrawOrderTest │ │ ├── DrawOrderTest.cpp │ │ └── DrawOrderTest.h │ │ ├── ExpandableListViewTest │ │ ├── ExpandableListViewTest.cpp │ │ └── ExpandableListViewTest.h │ │ ├── GridPageViewTest │ │ ├── GridPageViewTest.cpp │ │ └── GridPageViewTest.h │ │ ├── GridViewTest │ │ ├── GridViewTest.cpp │ │ └── GridViewTest.h │ │ ├── LabelTest │ │ ├── LabelTest.cpp │ │ └── LabelTest.h │ │ ├── LayoutTest │ │ ├── LayoutTest.cpp │ │ └── LayoutTest.h │ │ ├── ListViewTest │ │ ├── ListViewTest.cpp │ │ └── ListViewTest.h │ │ ├── PageViewTest │ │ ├── PageViewTest.cpp │ │ └── PageViewTest.h │ │ ├── ProgressBarTest │ │ ├── ProgressBarTest.cpp │ │ └── ProgressBarTest.h │ │ ├── ScrollViewTest │ │ ├── ScrollViewTest.cpp │ │ └── ScrollViewTest.h │ │ ├── SliderTest │ │ ├── SliderTest.cpp │ │ └── SliderTest.h │ │ ├── TableViewTest │ │ ├── TableViewTest.cpp │ │ └── TableViewTest.h │ │ ├── TextRichTest │ │ ├── TextRichTest.cpp │ │ └── TextRichTest.h │ │ └── ToggleViewTest │ │ ├── ToggleViewTest.cpp │ │ └── ToggleViewTest.h ├── Resources │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── again1.png │ ├── again2.png │ ├── arial-unicode-26.fnt │ ├── arial-unicode-26.png │ ├── armBtn_test2.plist │ ├── armBtn_test2.png │ ├── armBtn_test2.xml │ ├── armature_boss1.plist │ ├── armature_boss1.png │ ├── armature_boss1.xml │ ├── back1.png │ ├── back2.png │ ├── background.png │ ├── background2.png │ ├── background3.png │ ├── btn1_1.png │ ├── btn1_2.png │ ├── btn1_3.png │ ├── circle1.png │ ├── circle2.png │ ├── ckb_disable_01.png │ ├── ckb_disable_02.png │ ├── ckb_normal_01.png │ ├── ckb_normal_02.png │ ├── ckb_selected_01.png │ ├── ckb_selected_02.png │ ├── control_baseboard.png │ ├── control_joystick.png │ ├── expandnodebg.png │ ├── fonts │ │ ├── Marker Felt.ttf │ │ └── arial.ttf │ ├── icon.png │ ├── next1.png │ ├── next2.png │ ├── num.png │ ├── numStep_test_ldisable.png │ ├── numStep_test_lnomal.png │ ├── numStep_test_lselect.png │ ├── numStep_test_rdisable.png │ ├── numStep_test_rnomal.png │ ├── numStep_test_rselect.png │ ├── numStep_test_stepbg.png │ ├── progress.png │ ├── progress_bg.png │ ├── progress_v.png │ ├── progress_v_bg.png │ ├── scrollcontent.png │ ├── slider.png │ ├── sprite9_btn1.png │ ├── sprite9_btn2.png │ ├── toggle1_1.png │ └── toggle1_2.png ├── proj.android │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── README.md │ ├── ant.properties │ ├── build-cfg.json │ ├── build.xml │ ├── build_native.py │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── hellocpp │ │ │ └── main.cpp │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── cpp │ │ └── AppActivity.java ├── proj.ios_mac │ ├── CocosWidgetTestCpp.xcodeproj │ │ └── project.pbxproj │ ├── ios │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-100.png │ │ ├── Icon-114.png │ │ ├── Icon-120.png │ │ ├── Icon-144.png │ │ ├── Icon-152.png │ │ ├── Icon-29.png │ │ ├── Icon-40.png │ │ ├── Icon-50.png │ │ ├── Icon-57.png │ │ ├── Icon-58.png │ │ ├── Icon-72.png │ │ ├── Icon-76.png │ │ ├── Icon-80.png │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ ├── RootViewController.h │ │ ├── RootViewController.mm │ │ └── main.m │ └── mac │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ └── main.cpp ├── proj.linux │ └── main.cpp ├── proj.win32 │ ├── CocosWidgetTestCpp.sln │ ├── CocosWidgetTestCpp.v11.suo │ ├── CocosWidgetTestCpp.v12.suo │ ├── CocosWidgetTestCpp.vcxproj │ ├── CocosWidgetTestCpp.vcxproj.filters │ ├── CocosWidgetTestCpp.vcxproj.user │ ├── build-cfg.json │ ├── game.rc │ ├── main.cpp │ ├── main.h │ ├── res │ │ └── game.ico │ └── resource.h ├── proj.wp8-xaml │ ├── HelloCpp.sln │ ├── HelloCpp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ ├── Resources │ │ │ │ └── fonts │ │ │ │ │ └── arial.ttf │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── EditBox.xaml │ │ ├── EditBox.xaml.cs │ │ ├── HelloCpp.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ └── SplashScreenImage.jpg │ └── HelloCppComponent │ │ ├── HelloCppComponent.vcxproj │ │ ├── HelloCppComponent.vcxproj.filters │ │ ├── pch.cpp │ │ └── pch.h └── 素材 │ └── armBtn_test2.fla ├── HelloTuiCpp ├── .cocos-project.json ├── CMakeLists.txt ├── Classes │ ├── .DS_Store │ ├── AppDelegate.cpp │ ├── AppDelegate.h │ ├── module │ │ ├── ResoureMgr.cpp │ │ └── ResoureMgr.h │ ├── scene │ │ ├── Bag │ │ │ ├── BagCfg.h │ │ │ ├── Bagui.cpp │ │ │ └── Bagui.h │ │ ├── Guide │ │ │ ├── Guideui.cpp │ │ │ └── Guideui.h │ │ ├── Main │ │ │ ├── MainCfg.h │ │ │ ├── Mainui.cpp │ │ │ ├── Mainui.h │ │ │ └── dialog │ │ │ │ ├── MsgBox.cpp │ │ │ │ └── MsgBox.h │ │ ├── Map │ │ │ ├── MapCfg.h │ │ │ ├── Mapui.cpp │ │ │ └── Mapui.h │ │ ├── Recombine │ │ │ ├── Recombineui.cpp │ │ │ └── Recombineui.h │ │ ├── ShowPhone │ │ │ ├── ShowPhoneCfg.h │ │ │ ├── ShowPhoneui.cpp │ │ │ └── ShowPhoneui.h │ │ ├── Store │ │ │ ├── StoreCfg.h │ │ │ ├── Storeui.cpp │ │ │ └── Storeui.h │ │ └── Welcome │ │ │ ├── WelcomeCfg.h │ │ │ ├── Welcomeui.cpp │ │ │ └── Welcomeui.h │ ├── tagMap │ │ └── Tag_map.h │ └── tui │ │ ├── TuiBase.cpp │ │ ├── TuiBase.h │ │ ├── TuiMacros.h │ │ ├── TuiManager.cpp │ │ ├── TuiManager.h │ │ ├── TuiUtil.cpp │ │ ├── TuiUtil.h │ │ ├── tagMap │ │ ├── Tag_bag.h │ │ ├── Tag_main.h │ │ ├── Tag_map.h │ │ ├── Tag_recombineui.h │ │ ├── Tag_showPhone.h │ │ ├── Tag_store.h │ │ └── Tag_welcome.h │ │ └── tuiconsts.h ├── Resources │ ├── bag │ │ ├── bagui.plist │ │ ├── bagui.png │ │ ├── btn_grid_disable.png │ │ ├── btn_grid_normal.png │ │ ├── btn_grid_select.png │ │ ├── gv_bag.png │ │ ├── pv_bag.png │ │ └── tbl_bag.png │ ├── fonts │ │ └── Arial.ttf │ ├── i18n.xml │ ├── main │ │ ├── anim_coin.plist │ │ ├── anim_coin.png │ │ ├── armature_boss1.plist │ │ ├── armature_boss1.png │ │ ├── armature_boss1.xml │ │ ├── btn_green_normal.png │ │ ├── btn_green_select.png │ │ ├── btn_ok_normal.png │ │ ├── btn_ok_select.png │ │ ├── ckb_test_disable1.png │ │ ├── ckb_test_disable2.png │ │ ├── ckb_test_normal1.png │ │ ├── ckb_test_normal2.png │ │ ├── ckb_test_select1.png │ │ ├── ckb_test_select2.png │ │ ├── ctlv_left_baseboard.png │ │ ├── ctlv_left_joystick.png │ │ ├── dialog │ │ │ ├── btn_close_disable.png │ │ │ ├── btn_close_normal.png │ │ │ ├── btn_close_select.png │ │ │ ├── img9_boxbg.png │ │ │ ├── labAtlas_num.png │ │ │ ├── prog_hp_bg.png │ │ │ ├── prog_hp_progress.png │ │ │ ├── slider_test_bg.png │ │ │ ├── slider_test_progress.png │ │ │ └── slider_test_thumb.png │ │ ├── edit_login.png │ │ ├── img_guidefinger.png │ │ ├── img_mainbg.png │ │ ├── mainui.plist │ │ ├── mainui.png │ │ ├── numStep_test_ldisable.png │ │ ├── numStep_test_lnomal.png │ │ ├── numStep_test_lselect.png │ │ ├── numStep_test_rdisable.png │ │ ├── numStep_test_rnomal.png │ │ ├── numStep_test_rselect.png │ │ ├── numStep_test_stepbg.png │ │ ├── ptl_flower.plist │ │ ├── ptl_flower.png │ │ ├── tgv_test_normal.png │ │ └── tgv_test_select.png │ ├── map │ │ ├── img_icon.png │ │ ├── iso-test2.png │ │ ├── iso-test2.tmx │ │ ├── ortho-test1.png │ │ └── ortho-test1.tmx │ ├── recombine │ │ ├── btn_grid_disable.png │ │ ├── btn_grid_normal.png │ │ ├── btn_grid_select.png │ │ ├── gpv_bag.png │ │ ├── img_scrollview.png │ │ ├── recombineui.plist │ │ └── recombineui.png │ ├── showphone │ │ ├── img9_empty.png │ │ ├── img_note3.png │ │ ├── showphoneui.plist │ │ └── showphoneui.png │ ├── store │ │ ├── armBtn_test2.plist │ │ ├── armBtn_test2.png │ │ ├── armBtn_test2.xml │ │ ├── btn_pay_disable.png │ │ ├── btn_pay_normal.png │ │ ├── btn_pay_select.png │ │ ├── img_itembg.png │ │ ├── labBmf_test.fnt │ │ ├── labBmf_test.png │ │ ├── storeui.plist │ │ └── storeui.png │ ├── tui │ │ ├── tui_bag.xml │ │ ├── tui_main.xml │ │ ├── tui_map.xml │ │ ├── tui_recombineui.xml │ │ ├── tui_showPhone.xml │ │ ├── tui_store.xml │ │ └── tui_welcome.xml │ └── welcome │ │ ├── img9_bg.png │ │ ├── img_logo.png │ │ ├── welcomeui.plist │ │ └── welcomeui.png ├── proj.android-studio │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── hellocpp │ │ │ │ └── main.cpp │ │ ├── proguard-rules.pro │ │ ├── project.properties │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── cpp │ │ │ └── AppActivity.java │ ├── build-cfg.json │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── proj.android │ ├── .classpath │ ├── .cproject │ ├── .externalToolBuilders │ │ └── org.eclipse.cdt.managedbuilder.core.genmakebuilder.launch │ ├── .project │ ├── .settings │ │ ├── org.eclipse.cdt.codan.core.prefs │ │ ├── org.eclipse.cdt.core.prefs │ │ └── org.eclipse.ltk.core.refactoring.prefs │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build-cfg.json │ ├── build.xml │ ├── build_native.py │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── hellocpp │ │ │ └── main.cpp │ ├── local.properties │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── cocos2dx │ │ └── cpp │ │ └── AppActivity.java ├── proj.ios_mac │ ├── .DS_Store │ ├── HelloTuiCpp.xcodeproj │ │ └── project.pbxproj │ ├── ios │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Default-568h@2x.png │ │ ├── Default-667h@2x.png │ │ ├── Default-736h@3x.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-100.png │ │ ├── Icon-114.png │ │ ├── Icon-120.png │ │ ├── Icon-144.png │ │ ├── Icon-152.png │ │ ├── Icon-180.png │ │ ├── Icon-29.png │ │ ├── Icon-40.png │ │ ├── Icon-50.png │ │ ├── Icon-57.png │ │ ├── Icon-58.png │ │ ├── Icon-72.png │ │ ├── Icon-76.png │ │ ├── Icon-80.png │ │ ├── Icon-87.png │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ ├── RootViewController.h │ │ ├── RootViewController.mm │ │ └── main.m │ └── mac │ │ ├── Icon.icns │ │ ├── Info.plist │ │ ├── Prefix.pch │ │ └── main.cpp ├── proj.linux │ └── main.cpp ├── proj.win10 │ ├── App │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── Cocos2dEngine │ │ │ ├── Cocos2dRenderer.cpp │ │ │ ├── Cocos2dRenderer.h │ │ │ ├── OpenGLES.cpp │ │ │ ├── OpenGLES.h │ │ │ ├── OpenGLESPage.xaml │ │ │ ├── OpenGLESPage.xaml.cpp │ │ │ └── OpenGLESPage.xaml.h │ │ ├── HelloTuiCpp.vcxproj │ │ ├── HelloTuiCpp.vcxproj.filters │ │ ├── HelloTuiCpp_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── resources.props │ └── HelloTuiCpp.sln ├── proj.win32 │ ├── HelloCpp.sln │ ├── HelloCpp.vcxproj │ ├── HelloCpp.vcxproj.filters │ ├── HelloCpp.vcxproj.user │ ├── build-cfg.json │ ├── game.rc │ ├── main.cpp │ ├── main.h │ ├── res │ │ └── game.ico │ └── resource.h ├── proj.win8.1-universal │ ├── App.Shared │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── Cocos2dRenderer.cpp │ │ ├── Cocos2dRenderer.h │ │ ├── HelloTuiCpp.Shared.vcxitems │ │ ├── HelloTuiCpp.Shared.vcxitems.filters │ │ ├── OpenGLES.cpp │ │ ├── OpenGLES.h │ │ ├── OpenGLESPage.xaml │ │ ├── OpenGLESPage.xaml.cpp │ │ ├── OpenGLESPage.xaml.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── App.Windows │ │ ├── Assets │ │ │ ├── Logo.scale-100.png │ │ │ ├── SmallLogo.scale-100.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ └── StoreLogo.scale-100.png │ │ ├── HelloTuiCpp.Windows.vcxproj │ │ ├── HelloTuiCpp.Windows.vcxproj.filters │ │ ├── HelloTuiCpp.Windows_TemporaryKey.pfx │ │ └── Package.appxmanifest │ ├── App.WindowsPhone │ │ ├── Assets │ │ │ ├── Logo.scale-240.png │ │ │ ├── SmallLogo.scale-240.png │ │ │ ├── SplashScreen.scale-240.png │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ ├── StoreLogo.scale-240.png │ │ │ └── WideLogo.scale-240.png │ │ ├── HelloTuiCpp.WindowsPhone.vcxproj │ │ ├── HelloTuiCpp.WindowsPhone.vcxproj.filters │ │ └── Package.appxmanifest │ └── HelloTuiCpp.sln └── 素材 │ ├── 场景 │ ├── bag.fla │ ├── main.fla │ ├── map.fla │ ├── recombineui.fla │ ├── showPhone.fla │ ├── store.fla │ ├── tuiconfig.xml │ └── welcome.fla │ └── 骨骼 │ ├── armBtn_test2.fla │ └── armature_boss1.fla ├── HelloTuiLua ├── .cocos-project.json ├── .project ├── .settings │ └── version.json ├── AudioEngine.lua ├── CCBReaderLoad.lua ├── CocoStudio.lua ├── Cocos2d.lua ├── Cocos2dConstants.lua ├── Deprecated.lua ├── DeprecatedClass.lua ├── DeprecatedEnum.lua ├── DeprecatedOpenglEnum.lua ├── DrawPrimitives.lua ├── GuiConstants.lua ├── Opengl.lua ├── OpenglConstants.lua ├── StudioConstants.lua ├── bitExtend.lua ├── config.json ├── experimentalConstants.lua ├── extern.lua ├── frameworks │ ├── CMakeLists.txt │ └── runtime-src │ │ ├── Classes │ │ ├── AppDelegate.cpp │ │ ├── AppDelegate.h │ │ ├── ide-support │ │ │ ├── CodeIDESupport.h │ │ │ ├── RuntimeLuaImpl.cpp │ │ │ ├── RuntimeLuaImpl.h │ │ │ ├── SimpleConfigParser.cpp │ │ │ ├── SimpleConfigParser.h │ │ │ ├── lang │ │ │ ├── lua_debugger.c │ │ │ └── lua_debugger.h │ │ ├── lua_module_register.h │ │ └── tui │ │ │ ├── TuiBase.cpp │ │ │ ├── TuiBase.h │ │ │ ├── TuiMacros.h │ │ │ ├── TuiManager.cpp │ │ │ ├── TuiManager.h │ │ │ ├── TuiUtil.cpp │ │ │ ├── TuiUtil.h │ │ │ ├── lua_cocos2dx_tui_auto.cpp │ │ │ ├── lua_cocos2dx_tui_auto.hpp │ │ │ └── tuiconsts.h │ │ ├── proj.android-studio │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── hellolua │ │ │ │ │ └── main.cpp │ │ │ ├── proguard-rules.pro │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── lua │ │ │ │ └── AppActivity.java │ │ ├── build-cfg.json │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── build-cfg.json │ │ ├── build.xml │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── hellolua │ │ │ │ └── main.cpp │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── lua │ │ │ └── AppActivity.java │ │ ├── proj.ios_mac │ │ ├── .DS_Store │ │ ├── HelloTuiLua.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── air.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── air.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ ├── ios │ │ │ ├── AppController.h │ │ │ ├── AppController.mm │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape~ipad.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-100.png │ │ │ ├── Icon-114.png │ │ │ ├── Icon-120.png │ │ │ ├── Icon-144.png │ │ │ ├── Icon-152.png │ │ │ ├── Icon-180.png │ │ │ ├── Icon-29.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-50.png │ │ │ ├── Icon-57.png │ │ │ ├── Icon-58.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-80.png │ │ │ ├── Icon-87.png │ │ │ ├── Info.plist │ │ │ ├── Prefix.pch │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.mm │ │ │ ├── build-cfg.json │ │ │ └── main.m │ │ └── mac │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── ConsoleWindow.xib │ │ │ ├── ConsoleWindowController.h │ │ │ ├── ConsoleWindowController.m │ │ │ ├── Icon.icns │ │ │ ├── Info.plist │ │ │ ├── Prefix.pch │ │ │ ├── SimulatorApp.h │ │ │ ├── SimulatorApp.mm │ │ │ ├── build-cfg.json │ │ │ ├── en.lproj │ │ │ └── MainMenu.xib │ │ │ ├── main.m │ │ │ └── zh-Hans.lproj │ │ │ └── MainMenu.xib │ │ ├── proj.linux │ │ └── main.cpp │ │ └── proj.win32 │ │ ├── HelloTuiLua.sln │ │ ├── HelloTuiLua.vcxproj │ │ ├── HelloTuiLua.vcxproj.filters │ │ ├── HelloTuiLua.vcxproj.user │ │ ├── SimulatorWin.cpp │ │ ├── SimulatorWin.h │ │ ├── build-cfg.json │ │ ├── game.rc │ │ ├── main.cpp │ │ ├── main.h │ │ ├── res │ │ └── game.ico │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── json.lua ├── luaj.lua ├── luaoc.lua ├── res │ ├── bag │ │ ├── bagui.plist │ │ ├── bagui.png │ │ ├── btn_grid_disable.png │ │ ├── btn_grid_normal.png │ │ ├── btn_grid_select.png │ │ ├── gv_bag.png │ │ ├── pv_bag.png │ │ └── tbl_bag.png │ ├── effect │ │ ├── movie_test.json │ │ ├── movie_test.plist │ │ └── movie_test.png │ ├── fonts │ │ └── Arial.ttf │ ├── i18n.xml │ ├── main │ │ ├── AudioEngine.lua │ │ ├── CCBReaderLoad.lua │ │ ├── CocoStudio.lua │ │ ├── Cocos2d.lua │ │ ├── anim_coin.plist │ │ ├── anim_coin.png │ │ ├── armBtn_test2.plist │ │ ├── armBtn_test2.png │ │ ├── armBtn_test2.xml │ │ ├── armature_boss1.plist │ │ ├── armature_boss1.png │ │ ├── armature_boss1.xml │ │ ├── btn_green_normal.png │ │ ├── btn_green_select.png │ │ ├── btn_ok_disable.png │ │ ├── btn_ok_normal.png │ │ ├── btn_ok_select.png │ │ ├── btn_pay_disable.png │ │ ├── btn_pay_normal.png │ │ ├── btn_pay_select.png │ │ ├── ckb_test_disable1.png │ │ ├── ckb_test_disable2.png │ │ ├── ckb_test_normal1.png │ │ ├── ckb_test_normal2.png │ │ ├── ckb_test_select1.png │ │ ├── ckb_test_select2.png │ │ ├── ctlv_left_baseboard.png │ │ ├── ctlv_left_joystick.png │ │ ├── dialog │ │ │ ├── btn_close_normal.png │ │ │ ├── btn_close_select.png │ │ │ ├── img9_boxbg.png │ │ │ ├── labAtlas_num.png │ │ │ ├── labBmf_test.fnt │ │ │ ├── labBmf_test.png │ │ │ ├── prog_hp_bg.png │ │ │ ├── prog_hp_progress.png │ │ │ ├── slider_test_bg.png │ │ │ ├── slider_test_progress.png │ │ │ └── slider_test_thumb.png │ │ ├── edit_login.png │ │ ├── extern.lua │ │ ├── img_bg.png │ │ ├── img_itembg.png │ │ ├── img_listgoodsmedicine2.png │ │ ├── img_listgoodsmedicine3.png │ │ ├── img_listgoodsprop1.png │ │ ├── json.lua │ │ ├── list_goods.png │ │ ├── mainui.plist │ │ ├── mainui.png │ │ ├── numStep_test_ldisable.png │ │ ├── numStep_test_lnomal.png │ │ ├── numStep_test_lselect.png │ │ ├── numStep_test_rdisable.png │ │ ├── numStep_test_rnomal.png │ │ ├── numStep_test_rselect.png │ │ ├── numStep_test_stepbg.png │ │ ├── ptl_flower.plist │ │ ├── ptl_flower.png │ │ ├── tgv_option_normal.png │ │ └── tgv_option_select.png │ ├── map │ │ ├── img_icon.png │ │ ├── iso-test2.png │ │ ├── iso-test2.tmx │ │ ├── ortho-test1.png │ │ └── ortho-test1.tmx │ ├── recombine │ │ ├── btn_grid_disable.png │ │ ├── btn_grid_normal.png │ │ ├── btn_grid_select.png │ │ ├── gpv_bag.png │ │ ├── img_scrollview.png │ │ ├── recombineui.plist │ │ └── recombineui.png │ ├── showphone │ │ ├── img9_empty.png │ │ ├── img_note3.png │ │ ├── showphoneui.plist │ │ └── showphoneui.png │ └── tui │ │ ├── tui_bagui.xml │ │ ├── tui_map.xml │ │ ├── tui_recombineui.xml │ │ ├── tui_showphoneui.xml │ │ ├── tui_welcomeui.lua │ │ └── tui_welcomeui.xml ├── runtime │ └── win32 │ │ ├── OpenAL32.dll │ │ ├── glew32.dll │ │ ├── iconv.dll │ │ ├── libcurl.dll │ │ ├── libmpg123.dll │ │ ├── libogg.dll │ │ ├── libtiff.dll │ │ ├── libvorbis.dll │ │ ├── libvorbisfile.dll │ │ ├── lua51.dll │ │ ├── sqlite3.dll │ │ ├── websockets.dll │ │ └── zlib1.dll ├── src │ ├── AudioEngine.lua │ ├── CCBReaderLoad.lua │ ├── CocoStudio.lua │ ├── Cocos2d.lua │ ├── Cocos2dConstants.lua │ ├── Deprecated.lua │ ├── DeprecatedClass.lua │ ├── DeprecatedEnum.lua │ ├── DeprecatedOpenglEnum.lua │ ├── DrawPrimitives.lua │ ├── GuiConstants.lua │ ├── Opengl.lua │ ├── OpenglConstants.lua │ ├── StudioConstants.lua │ ├── bag │ │ └── bagui.lua │ ├── bitExtend.lua │ ├── config.json │ ├── experimentalConstants.lua │ ├── extern.lua │ ├── json.lua │ ├── luaj.lua │ ├── luaoc.lua │ ├── main.lua │ ├── map │ │ └── mapui.lua │ ├── proto │ │ ├── runtime │ │ │ ├── containers.lua │ │ │ ├── decoder.lua │ │ │ ├── descriptor.lua │ │ │ ├── encoder.lua │ │ │ ├── listener.lua │ │ │ ├── protobuf.lua │ │ │ ├── text_format.lua │ │ │ ├── type_checkers.lua │ │ │ └── wire_format.lua │ │ └── test_pb.lua │ ├── recombine │ │ └── recombineui.lua │ ├── showphone │ │ └── showphoneui.lua │ ├── tagMap │ │ ├── Tag_bagui.lua │ │ ├── Tag_map.lua │ │ ├── Tag_recombineui.lua │ │ ├── Tag_showphoneui.lua │ │ └── Tag_welcomeui.lua │ └── welcome │ │ ├── dialog │ │ └── msgBox.lua │ │ └── welcomeui.lua └── 素材 │ ├── armBtn_test2.fla │ ├── bagui.fla │ ├── map.fla │ ├── recombineui.fla │ ├── showphoneui.fla │ ├── tuiconfig.xml │ └── welcomeui.fla ├── LICENSE ├── README.md ├── dragonbones ├── DragonBones.h ├── DragonBonesHeaders.h ├── animation │ ├── Animation.cpp │ ├── Animation.h │ ├── AnimationState.cpp │ ├── AnimationState.h │ ├── IAnimatable.h │ ├── TimelineState.cpp │ ├── TimelineState.h │ ├── WorldClock.cpp │ └── WorldClock.h ├── core │ ├── Armature.cpp │ ├── Armature.h │ ├── Bone.cpp │ ├── Bone.h │ ├── Object.cpp │ ├── Object.h │ ├── Slot.cpp │ └── Slot.h ├── events │ ├── EventData.cpp │ ├── EventData.h │ └── IEventDispatcher.h ├── factories │ ├── BaseFactory.cpp │ └── BaseFactory.h ├── geoms │ ├── ColorTransform.h │ ├── Matrix.h │ ├── Point.h │ ├── Rectangle.h │ └── Transform.h ├── lua_dragonbones_auto.cpp ├── lua_dragonbones_auto.hpp ├── objects │ ├── AnimationData.h │ ├── ArmatureData.h │ ├── BoneData.h │ ├── DisplayData.h │ ├── DragonBonesData.h │ ├── EllipseData.h │ ├── Frame.h │ ├── IAreaData.h │ ├── RectangleData.h │ ├── SkinData.h │ ├── SlotData.h │ ├── Timeline.h │ ├── TransformFrame.h │ └── TransformTimeline.h ├── parsers │ ├── BaseDataParser.cpp │ ├── BaseDataParser.h │ ├── ConstValues.cpp │ ├── ConstValues.h │ ├── XMLDataParser.cpp │ ├── XMLDataParser.h │ ├── dbtinyxml2.cpp │ └── dbtinyxml2.h ├── renderer │ └── cocos2d-x-3.2 │ │ ├── DBCCArmature.cpp │ │ ├── DBCCArmature.h │ │ ├── DBCCArmatureNode.cpp │ │ ├── DBCCArmatureNode.h │ │ ├── DBCCEventDispatcher.h │ │ ├── DBCCFactory.cpp │ │ ├── DBCCFactory.h │ │ ├── DBCCRenderHeaders.h │ │ ├── DBCCSlot.cpp │ │ ├── DBCCSlot.h │ │ ├── DBCCTextureAtlas.h │ │ ├── android_demo │ │ └── Android.mk │ │ ├── dbccMacro.h │ │ └── proj.win32 │ │ ├── libDragonbones.vcxproj │ │ ├── libDragonbones.vcxproj.filters │ │ ├── libDragonbones_demo.vcxproj │ │ └── libDragonbones_demo.vcxproj.filters └── textures │ ├── ITextureAtlas.h │ ├── TextureAtlasData.h │ └── TextureData.h ├── flash ├── DragonBonesDesignPanel.zxp ├── Template.fla ├── TuiEditor_Export.jsfl └── TuiMakeImg9.jsfl ├── picture ├── pic1.png └── pic2.png └── rapidXml ├── rapidxml.hpp ├── rapidxml_iterators.hpp ├── rapidxml_print.hpp └── rapidxml_utils.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | project.xcworkspace/ 3 | cocos2d 4 | cocos2d-x/ 5 | */bin/ 6 | */proj.win32/Debug.win32/ 7 | HelloTuiLua/frameworks/runtime-src/proj.win32/Debug.win32/ 8 | HelloTuiLua/runtime/win32/* 9 | *.suo 10 | .DS_Store 11 | *.obj 12 | *.sdf 13 | *.opensdf 14 | *._* 15 | win32/ 16 | Build/ -------------------------------------------------------------------------------- /CocosBaseTestCpp/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_type": "cpp" 3 | } -------------------------------------------------------------------------------- /CocosBaseTestCpp/Classes/MenuScene.h: -------------------------------------------------------------------------------- 1 | #ifndef __MENUSCENE_H__ 2 | #define __MENUSCENE_H__ 3 | 4 | #include "../../CocosBase/cocos-base.h" 5 | #include "cocos-ext.h" 6 | using namespace cocos2d; 7 | using namespace cocos2d::extension; 8 | using namespace std; 9 | 10 | class MenuScene : public CSceneExtension 11 | { 12 | public: 13 | CREATE_SCENE_FUNC(MenuScene); 14 | 15 | public: 16 | MenuScene(); 17 | virtual ~MenuScene(); 18 | 19 | virtual void onLoadScene(); 20 | 21 | private: 22 | ScrollView* m_pScrollView; 23 | vector m_vMenuItems; 24 | void onClick(Ref* sender); 25 | }; 26 | 27 | #endif //__MENUSCENE_H__ -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/CloseNormal.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/CloseSelected.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/HelloWorld.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/back1.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/back2.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/background.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/btn1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/btn1_1.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/btn1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/btn1_2.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/next1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/next1.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/next2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/next2.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/startMenuBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/startMenuBG.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/toggle1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/toggle1_1.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/toggle1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/Resources/toggle1_2.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "ndk_module_path" :[ 3 | "../cocos2d", 4 | "../cocos2d/cocos", 5 | "../cocos2d/external" 6 | ], 7 | "copy_resources": [ 8 | { 9 | "from": "../Resources", 10 | "to": "" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 -std=c++11 -fsigned-char 3 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "cocos2d.h" 3 | #include "CCEventType.h" 4 | #include "platform/android/jni/JniHelper.h" 5 | #include 6 | #include 7 | 8 | #define LOG_TAG "main" 9 | #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__) 10 | 11 | using namespace cocos2d; 12 | 13 | void cocos_android_app_init (JNIEnv* env, jobject thiz) { 14 | LOGD("cocos_android_app_init"); 15 | AppDelegate *pAppDelegate = new AppDelegate(); 16 | } 17 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-10 12 | 13 | android.library.reference.1=../cocos2d/cocos/2d/platform/android/java 14 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | CocosBaseTestCpp 4 | 5 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class RootViewController; 4 | 5 | @interface AppController : NSObject { 6 | UIWindow *window; 7 | } 8 | 9 | @property(nonatomic, readonly) RootViewController* viewController; 10 | 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'iphone' target in the 'iphone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main(int argc, char *argv[]) { 4 | 5 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 6 | int retVal = UIApplicationMain(argc, argv, nil, @"AppController"); 7 | [pool release]; 8 | return retVal; 9 | } 10 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Paralaxer' target in the 'Paralaxer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.linux/main.cpp: -------------------------------------------------------------------------------- 1 | #include "../Classes/AppDelegate.h" 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | USING_NS_CC; 9 | 10 | int main(int argc, char **argv) 11 | { 12 | // create the application instance 13 | AppDelegate app; 14 | return Application::getInstance()->run(); 15 | } 16 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.v11.suo -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(ProjectDir)..\Resources 5 | WindowsLocalDebugger 6 | 7 | 8 | $(ProjectDir)..\Resources 9 | WindowsLocalDebugger 10 | 11 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy_resources": [ 3 | { 4 | "from": "../Resources", 5 | "to": "" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/main.cpp: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | #include "AppDelegate.h" 3 | #include "cocos2d.h" 4 | 5 | USING_NS_CC; 6 | 7 | int APIENTRY _tWinMain(HINSTANCE hInstance, 8 | HINSTANCE hPrevInstance, 9 | LPTSTR lpCmdLine, 10 | int nCmdShow) 11 | { 12 | UNREFERENCED_PARAMETER(hPrevInstance); 13 | UNREFERENCED_PARAMETER(lpCmdLine); 14 | 15 | // create the application instance 16 | AppDelegate app; 17 | return Application::getInstance()->run(); 18 | } 19 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/main.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAIN_H__ 2 | #define __MAIN_H__ 3 | 4 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 5 | 6 | // Windows Header Files: 7 | #include 8 | #include 9 | 10 | // C RunTime Header Files 11 | #include "CCStdC.h" 12 | 13 | #endif // __MAIN_H__ 14 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.win32/res/game.ico -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by game.RC 4 | // 5 | 6 | #define IDS_PROJNAME 100 7 | #define IDR_TESTJS 100 8 | 9 | #define ID_FILE_NEW_WINDOW 32771 10 | 11 | // Next default values for new objects 12 | // 13 | #ifdef APSTUDIO_INVOKED 14 | #ifndef APSTUDIO_READONLY_SYMBOLS 15 | #define _APS_NEXT_RESOURCE_VALUE 201 16 | #define _APS_NEXT_CONTROL_VALUE 1000 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #define _APS_NEXT_COMMAND_VALUE 32775 19 | #endif 20 | #endif 21 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Resources/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Resources/fonts/arial.ttf -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/LocalizedStrings.cs: -------------------------------------------------------------------------------- 1 | using PhoneDirect3DXamlAppInterop.Resources; 2 | 3 | namespace PhoneDirect3DXamlAppInterop 4 | { 5 | /// 6 | /// Provides access to string resources. 7 | /// 8 | public class LocalizedStrings 9 | { 10 | private static AppResources _localizedResources = new AppResources(); 11 | 12 | public AppResources LocalizedResources { get { return _localizedResources; } } 13 | } 14 | } -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/SplashScreenImage.jpg -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCppComponent/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCppComponent/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "cocos2d.h" -------------------------------------------------------------------------------- /CocosNetTestCpp/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_type": "cpp" 3 | } -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/Resources/CloseNormal.png -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/Resources/CloseSelected.png -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/Resources/HelloWorld.png -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/Resources/Icon.png -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "ndk_module_path" :[ 3 | "../cocos2d", 4 | "../cocos2d/cocos", 5 | "../cocos2d/external" 6 | ], 7 | "copy_resources": [ 8 | { 9 | "from": "../Resources", 10 | "to": "" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 -std=c++11 -fsigned-char 3 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "cocos2d.h" 3 | #include "CCEventType.h" 4 | #include "platform/android/jni/JniHelper.h" 5 | #include 6 | #include 7 | 8 | #define LOG_TAG "main" 9 | #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__) 10 | 11 | using namespace cocos2d; 12 | 13 | void cocos_android_app_init (JNIEnv* env, jobject thiz) { 14 | LOGD("cocos_android_app_init"); 15 | AppDelegate *pAppDelegate = new AppDelegate(); 16 | } 17 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-10 12 | 13 | android.library.reference.1=../cocos2d/cocos/2d/platform/android/java 14 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | CocosNetTestCpp 4 | 5 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class RootViewController; 4 | 5 | @interface AppController : NSObject { 6 | UIWindow *window; 7 | } 8 | 9 | @property(nonatomic, readonly) RootViewController* viewController; 10 | 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'iphone' target in the 'iphone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main(int argc, char *argv[]) { 4 | 5 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 6 | int retVal = UIApplicationMain(argc, argv, nil, @"AppController"); 7 | [pool release]; 8 | return retVal; 9 | } 10 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Paralaxer' target in the 'Paralaxer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.linux/main.cpp: -------------------------------------------------------------------------------- 1 | #include "../Classes/AppDelegate.h" 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | USING_NS_CC; 9 | 10 | int main(int argc, char **argv) 11 | { 12 | // create the application instance 13 | AppDelegate app; 14 | return Application::getInstance()->run(); 15 | } 16 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/CocosNetTestCpp.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.win32/CocosNetTestCpp.v11.suo -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/CocosNetTestCpp.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(ProjectDir)..\Resources 5 | WindowsLocalDebugger 6 | 7 | 8 | $(ProjectDir)..\Resources 9 | WindowsLocalDebugger 10 | 11 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy_resources": [ 3 | { 4 | "from": "../Resources", 5 | "to": "" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/main.cpp: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | #include "AppDelegate.h" 3 | #include "cocos2d.h" 4 | 5 | USING_NS_CC; 6 | 7 | int APIENTRY _tWinMain(HINSTANCE hInstance, 8 | HINSTANCE hPrevInstance, 9 | LPTSTR lpCmdLine, 10 | int nCmdShow) 11 | { 12 | UNREFERENCED_PARAMETER(hPrevInstance); 13 | UNREFERENCED_PARAMETER(lpCmdLine); 14 | 15 | // create the application instance 16 | AppDelegate app; 17 | return Application::getInstance()->run(); 18 | } 19 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/main.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAIN_H__ 2 | #define __MAIN_H__ 3 | 4 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 5 | 6 | // Windows Header Files: 7 | #include 8 | #include 9 | 10 | // C RunTime Header Files 11 | #include "CCStdC.h" 12 | 13 | #endif // __MAIN_H__ 14 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.win32/res/game.ico -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by game.RC 4 | // 5 | 6 | #define IDS_PROJNAME 100 7 | #define IDR_TESTJS 100 8 | 9 | #define ID_FILE_NEW_WINDOW 32771 10 | 11 | // Next default values for new objects 12 | // 13 | #ifdef APSTUDIO_INVOKED 14 | #ifndef APSTUDIO_READONLY_SYMBOLS 15 | #define _APS_NEXT_RESOURCE_VALUE 201 16 | #define _APS_NEXT_CONTROL_VALUE 1000 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #define _APS_NEXT_COMMAND_VALUE 32775 19 | #endif 20 | #endif 21 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Resources/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Resources/fonts/arial.ttf -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/LocalizedStrings.cs: -------------------------------------------------------------------------------- 1 | using PhoneDirect3DXamlAppInterop.Resources; 2 | 3 | namespace PhoneDirect3DXamlAppInterop 4 | { 5 | /// 6 | /// Provides access to string resources. 7 | /// 8 | public class LocalizedStrings 9 | { 10 | private static AppResources _localizedResources = new AppResources(); 11 | 12 | public AppResources LocalizedResources { get { return _localizedResources; } } 13 | } 14 | } -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/SplashScreenImage.jpg -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCppComponent/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCppComponent/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "cocos2d.h" -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplNone.cpp: -------------------------------------------------------------------------------- 1 | #include "CEditBox.h" 2 | 3 | #if (CC_TARGET_PLATFORM != CC_PLATFORM_ANDROID ) && (CC_TARGET_PLATFORM != CC_PLATFORM_IOS ) && (CC_TARGET_PLATFORM != CC_PLATFORM_WIN32) && (CC_TARGET_PLATFORM != CC_PLATFORM_MAC) && (CC_TARGET_PLATFORM != CC_PLATFORM_TIZEN) 4 | 5 | NS_CC_EXT_BEGIN 6 | 7 | EditBoxImpl* __createSystemEditBox(EditBox* pEditBox) 8 | { 9 | return NULL; 10 | } 11 | 12 | NS_CC_EXT_END 13 | 14 | #endif /* #if (..) */ 15 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_type": "cpp" 3 | } -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/CloseNormal.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/CloseSelected.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/HelloWorld.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/again1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/again1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/again2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/again2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/arial-unicode-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/arial-unicode-26.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/armBtn_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/armBtn_test2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/armature_boss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/armature_boss1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/back1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/back2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/background.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/background2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/background3.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/btn1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/btn1_1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/btn1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/btn1_2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/btn1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/btn1_3.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/circle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/circle1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/circle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/circle2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_disable_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/ckb_disable_01.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_disable_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/ckb_disable_02.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_normal_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/ckb_normal_01.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_normal_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/ckb_normal_02.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_selected_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/ckb_selected_01.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_selected_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/ckb_selected_02.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/control_baseboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/control_baseboard.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/control_joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/control_joystick.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/expandnodebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/expandnodebg.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/fonts/arial.ttf -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/icon.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/next1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/next1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/next2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/next2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/num.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/numStep_test_ldisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/numStep_test_ldisable.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/numStep_test_lnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/numStep_test_lnomal.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/numStep_test_lselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/numStep_test_lselect.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/numStep_test_rdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/numStep_test_rdisable.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/numStep_test_rnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/numStep_test_rnomal.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/numStep_test_rselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/numStep_test_rselect.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/numStep_test_stepbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/numStep_test_stepbg.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/progress.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/progress_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/progress_bg.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/progress_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/progress_v.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/progress_v_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/progress_v_bg.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/scrollcontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/scrollcontent.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/slider.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/sprite9_btn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/sprite9_btn1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/sprite9_btn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/sprite9_btn2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/toggle1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/toggle1_1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/toggle1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/Resources/toggle1_2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "ndk_module_path" :[ 3 | "../cocos2d", 4 | "../cocos2d/cocos", 5 | "../cocos2d/external" 6 | ], 7 | "copy_resources": [ 8 | { 9 | "from": "../Resources", 10 | "to": "" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 -std=c++11 -fsigned-char 3 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "cocos2d.h" 3 | #include "CCEventType.h" 4 | #include "platform/android/jni/JniHelper.h" 5 | #include 6 | #include 7 | 8 | #define LOG_TAG "main" 9 | #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__) 10 | 11 | using namespace cocos2d; 12 | 13 | void cocos_android_app_init (JNIEnv* env, jobject thiz) { 14 | LOGD("cocos_android_app_init"); 15 | AppDelegate *pAppDelegate = new AppDelegate(); 16 | } 17 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-10 12 | 13 | android.library.reference.1=../cocos2d/cocos/2d/platform/android/java 14 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | CocosWidgetTestCpp 4 | 5 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class RootViewController; 4 | 5 | @interface AppController : NSObject { 6 | UIWindow *window; 7 | } 8 | 9 | @property(nonatomic, readonly) RootViewController* viewController; 10 | 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'iphone' target in the 'iphone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main(int argc, char *argv[]) { 4 | 5 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 6 | int retVal = UIApplicationMain(argc, argv, nil, @"AppController"); 7 | [pool release]; 8 | return retVal; 9 | } 10 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Paralaxer' target in the 'Paralaxer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.linux/main.cpp: -------------------------------------------------------------------------------- 1 | #include "../Classes/AppDelegate.h" 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | USING_NS_CC; 9 | 10 | int main(int argc, char **argv) 11 | { 12 | // create the application instance 13 | AppDelegate app; 14 | return Application::getInstance()->run(); 15 | } 16 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/CocosWidgetTestCpp.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.win32/CocosWidgetTestCpp.v11.suo -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/CocosWidgetTestCpp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.win32/CocosWidgetTestCpp.v12.suo -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/CocosWidgetTestCpp.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(ProjectDir)..\Resources 5 | WindowsLocalDebugger 6 | 7 | 8 | $(ProjectDir)..\Resources 9 | WindowsLocalDebugger 10 | 11 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy_resources": [ 3 | { 4 | "from": "../Resources", 5 | "to": "" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/main.cpp: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | #include "AppDelegate.h" 3 | #include "cocos2d.h" 4 | 5 | USING_NS_CC; 6 | 7 | int APIENTRY _tWinMain(HINSTANCE hInstance, 8 | HINSTANCE hPrevInstance, 9 | LPTSTR lpCmdLine, 10 | int nCmdShow) 11 | { 12 | UNREFERENCED_PARAMETER(hPrevInstance); 13 | UNREFERENCED_PARAMETER(lpCmdLine); 14 | 15 | // create the application instance 16 | AppDelegate app; 17 | return Application::getInstance()->run(); 18 | } 19 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/main.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAIN_H__ 2 | #define __MAIN_H__ 3 | 4 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 5 | 6 | // Windows Header Files: 7 | #include 8 | #include 9 | 10 | // C RunTime Header Files 11 | #include "CCStdC.h" 12 | 13 | #endif // __MAIN_H__ 14 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.win32/res/game.ico -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by game.RC 4 | // 5 | 6 | #define IDS_PROJNAME 100 7 | #define IDR_TESTJS 100 8 | 9 | #define ID_FILE_NEW_WINDOW 32771 10 | 11 | // Next default values for new objects 12 | // 13 | #ifdef APSTUDIO_INVOKED 14 | #ifndef APSTUDIO_READONLY_SYMBOLS 15 | #define _APS_NEXT_RESOURCE_VALUE 201 16 | #define _APS_NEXT_CONTROL_VALUE 1000 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #define _APS_NEXT_COMMAND_VALUE 32775 19 | #endif 20 | #endif 21 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Resources/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Resources/fonts/arial.ttf -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/LocalizedStrings.cs: -------------------------------------------------------------------------------- 1 | using PhoneDirect3DXamlAppInterop.Resources; 2 | 3 | namespace PhoneDirect3DXamlAppInterop 4 | { 5 | /// 6 | /// Provides access to string resources. 7 | /// 8 | public class LocalizedStrings 9 | { 10 | private static AppResources _localizedResources = new AppResources(); 11 | 12 | public AppResources LocalizedResources { get { return _localizedResources; } } 13 | } 14 | } -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/SplashScreenImage.jpg -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCppComponent/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCppComponent/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "cocos2d.h" -------------------------------------------------------------------------------- /CocosWidgetTestCpp/素材/armBtn_test2.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/CocosWidgetTestCpp/素材/armBtn_test2.fla -------------------------------------------------------------------------------- /HelloTuiCpp/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine_version": "cocos2d-x-3.9beta0", 3 | "project_type": "cpp" 4 | } -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Classes/.DS_Store -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/module/ResoureMgr.h: -------------------------------------------------------------------------------- 1 | #ifndef __RESOURE_MGR__ 2 | #define __RESOURE_MGR__ 3 | 4 | #include "../../CocosBase/cocos-base.h" 5 | #include "tui/TuiMacros.h" 6 | #include "cocos2d.h" 7 | USING_NS_CC; 8 | 9 | //资源管理 10 | class ResoureMgr : public Ref 11 | { 12 | public: 13 | SINGLE_INSTANCE_FUNC(ResoureMgr); 14 | virtual bool init(); 15 | //注册场景(和对话框) 16 | void registScene(); 17 | 18 | protected: 19 | private: 20 | }; 21 | 22 | 23 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Bag/BagCfg.h: -------------------------------------------------------------------------------- 1 | #ifndef __BAG_CFG__ 2 | #define __BAG_CFG__ 3 | 4 | #define NS_BAG_BEGIN namespace Bag { 5 | #define NS_BAG_END } 6 | #define USING_BAG using namespace Bag; 7 | 8 | 9 | 10 | 11 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Bag/Bagui.h: -------------------------------------------------------------------------------- 1 | #ifndef __BAG_UI__ 2 | #define __BAG_UI__ 3 | 4 | #include "tui/TuiBase.h" 5 | #include "BagCfg.h" 6 | 7 | NS_BAG_BEGIN 8 | 9 | class Bagui : public TuiBase 10 | { 11 | public: 12 | CREATE_SCENE_FUNC(Bagui); 13 | Node* getPanel( int tagPanel ); 14 | void onLoadScene(); 15 | protected: 16 | Ref* event_adapt_gvBag(Ref* pConvertCell, unsigned int uIdx); 17 | Ref* event_adapt_tblBag(Ref* pConvertCell, unsigned int uIdx); 18 | Ref* event_adapt_pageBag(Ref* pConvertCell, unsigned int uIdx); 19 | void event_btn_back(Ref* pSender); 20 | 21 | void event_btn_gv(Ref* pSender); 22 | private: 23 | 24 | }; 25 | 26 | NS_BAG_END 27 | 28 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Guide/Guideui.cpp: -------------------------------------------------------------------------------- 1 | #include "Guideui.h" 2 | #include "tui/TuiManager.h" 3 | #include "tui/tagMap/Tag_main.h" 4 | 5 | void Guideui::onLoadScene() 6 | { 7 | TuiManager::getInstance()->parseScene(this,"panel_guide",PATH_MAIN); 8 | 9 | } 10 | 11 | /************************************************************************/ 12 | // GET/SET/IS 13 | /************************************************************************/ 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Guide/Guideui.h: -------------------------------------------------------------------------------- 1 | #ifndef __GUIDE_UI__ 2 | #define __GUIDE_UI__ 3 | 4 | #include "tui/TuiBase.h" 5 | 6 | class Guideui : public TuiBase 7 | { 8 | public: 9 | CREATE_SCENE_FUNC(Guideui); 10 | 11 | void onLoadScene(); 12 | 13 | protected: 14 | private: 15 | 16 | }; 17 | 18 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Main/MainCfg.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAIN_CFG__ 2 | #define __MAIN_CFG__ 3 | 4 | #define NS_MAIN_BEGIN namespace Main { 5 | #define NS_MAIN_END } 6 | #define USING_MAIN using namespace Main; 7 | 8 | enum eMsg 9 | { 10 | FINISH_GUIDE = 1000 11 | }; 12 | 13 | 14 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Main/dialog/MsgBox.h: -------------------------------------------------------------------------------- 1 | #ifndef __MESSAGEBOX_H__ 2 | #define __MESSAGEBOX_H__ 3 | 4 | #include "../../../tui/TuiBase.h" 5 | #include "../MainCfg.h" 6 | 7 | NS_MAIN_BEGIN 8 | 9 | class MsgBox : public TuiBase 10 | { 11 | public: 12 | CREATE_SCENE_FUNC(MsgBox); 13 | 14 | void onLoadScene(); 15 | Node *getPanel(int tagPanel); 16 | 17 | void onEnterScene(); 18 | protected: 19 | void event_btn_close(Ref *pSender); 20 | void event_slider_test(Ref *pSender,int value); 21 | private: 22 | }; 23 | 24 | 25 | NS_MAIN_END 26 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Map/MapCfg.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAP_CFG__ 2 | #define __MAP_CFG__ 3 | 4 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Map/Mapui.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAP_UI_H__ 2 | #define __MAP_UI_H__ 3 | 4 | #include "../../tui/TuiBase.h" 5 | #include "MapCfg.h" 6 | 7 | class Mapui : public TuiBase 8 | { 9 | public: 10 | CREATE_SCENE_FUNC(Mapui); 11 | Node* getPanel( int tagPanel ); 12 | void onLoadScene(); 13 | protected: 14 | void event_btn_back(Ref* pSender); 15 | private: 16 | }; 17 | 18 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Recombine/Recombineui.h: -------------------------------------------------------------------------------- 1 | #ifndef __RECOMBINE_UI_H__ 2 | #define __RECOMBINE_UI_H__ 3 | 4 | #include "tui/TuiBase.h" 5 | 6 | class Recomebineui : public TuiBase 7 | { 8 | public: 9 | CREATE_SCENE_FUNC(Recomebineui); 10 | 11 | virtual void onLoadScene(); 12 | Node* getPanel( int tagPanel ); 13 | protected: 14 | Ref* adapt_gpv_bag(Ref* pConvertCell, unsigned int uIdx); 15 | 16 | void event_btn_click(Ref* pSender); 17 | void event_btn_back(Ref* pSender); 18 | private: 19 | 20 | 21 | }; 22 | 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/ShowPhone/ShowPhoneCfg.h: -------------------------------------------------------------------------------- 1 | #ifndef __SHOW_PHONE_CFG__ 2 | #define __SHOW_PHONE_CFG__ 3 | 4 | #define NS_SHOWPHONE_BEGIN namespace ShowPhone{ 5 | #define NS_SHOWPHONE_END } 6 | #define US_SHOWPONE using namespace ShowPhone; 7 | 8 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/ShowPhone/ShowPhoneui.h: -------------------------------------------------------------------------------- 1 | #ifndef __SHOW_PHONE_UI__ 2 | #define __SHOW_PHONE_UI__ 3 | 4 | #include "ShowPhoneCfg.h" 5 | #include "tui/TuiBase.h" 6 | 7 | NS_SHOWPHONE_BEGIN 8 | 9 | class ShowPhoneui : public TuiBase 10 | { 11 | public: 12 | CREATE_SCENE_FUNC(ShowPhoneui); 13 | void onLoadScene(); 14 | Node* getPanel( int tagPanel ); 15 | protected: 16 | void event_menu_phone(Ref* pSender); 17 | private: 18 | }; 19 | 20 | NS_SHOWPHONE_END 21 | 22 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Store/StoreCfg.h: -------------------------------------------------------------------------------- 1 | #ifndef __STORE_CFG__ 2 | #define __STORE_CFG__ 3 | 4 | #define NS_STORE_BEGIN namespace Store{ 5 | #define NS_STORE_END } 6 | #define USING_STORE using namespace Store; 7 | 8 | 9 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Store/Storeui.h: -------------------------------------------------------------------------------- 1 | #ifndef __STORE_UI_H__ 2 | #define __STORE_UI_H__ 3 | 4 | #include "../../tui/TuiBase.h" 5 | #include "StoreCfg.h" 6 | 7 | NS_STORE_BEGIN 8 | 9 | class Storeui : public TuiBase 10 | { 11 | public: 12 | CREATE_SCENE_FUNC(Storeui); 13 | Node* getPanel( int tagPanel ); 14 | void onLoadScene(); 15 | 16 | protected: 17 | void event_btn_test(Ref* pSender); 18 | void event_btn_pay(Ref* pSender); 19 | void event_explist_btn(Ref* pSender); 20 | void event_rtf_test(Ref* pSender,const char* data); 21 | private: 22 | }; 23 | 24 | NS_STORE_END 25 | 26 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Welcome/WelcomeCfg.h: -------------------------------------------------------------------------------- 1 | #ifndef __WELCOME_CFG__ 2 | #define __WELCOME_CFG__ 3 | 4 | #define NS_WELCOME_BEGIN namespace Welcome { 5 | #define NS_WELCOME_END } 6 | #define USING_WELCOME using namespace Welcome; 7 | 8 | 9 | 10 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Welcome/Welcomeui.h: -------------------------------------------------------------------------------- 1 | #ifndef __WELCOME_UI__ 2 | #define __WELCOME_UI__ 3 | 4 | #include "tui/TuiBase.h" 5 | #include "WelcomeCfg.h" 6 | 7 | NS_WELCOME_BEGIN 8 | 9 | class Welcomeui : public TuiBase 10 | { 11 | public: 12 | CREATE_SCENE_FUNC(Welcomeui); 13 | 14 | void onLoadScene(); 15 | 16 | protected: 17 | private: 18 | }; 19 | 20 | 21 | NS_WELCOME_END 22 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tagMap/Tag_map.h: -------------------------------------------------------------------------------- 1 | #ifndef __TAG_MAP_H__ 2 | #define __TAG_MAP_H__ 3 | 4 | #define PATH_MAP "tui/tui_map.xml" 5 | 6 | namespace { 7 | static const int PANEL_MAP = 1 ; 8 | static const int MAP_TEST = 2 ; 9 | } 10 | 11 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_bag.h: -------------------------------------------------------------------------------- 1 | #ifndef __TAG_BAG_H__ 2 | #define __TAG_BAG_H__ 3 | 4 | #define PATH_BAG "tui/tui_bag.xml" 5 | 6 | namespace Bag { 7 | static const int PANEL_BAG = 1 ; 8 | static const int GV_BAG = 2 ; 9 | static const int CELL_GRID = 8 ; 10 | static const int BTN_GRID = 9 ; 11 | static const int TBL_BAG = 6 ; 12 | static const int PV_BAG = 10 ; 13 | static const int CELL_PAGE = 12 ; 14 | static const int BTN_GRID1 = 13 ; 15 | static const int BTN_GRID4 = 14 ; 16 | static const int BTN_GRID3 = 15 ; 17 | static const int BTN_GRID2 = 16 ; 18 | static const int BTN_BACK = 17 ; 19 | } 20 | 21 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_map.h: -------------------------------------------------------------------------------- 1 | #ifndef __TAG_MAP_H__ 2 | #define __TAG_MAP_H__ 3 | 4 | #define PATH_MAP "tui/tui_map.xml" 5 | 6 | namespace { 7 | static const int PANEL_MAP = 1 ; 8 | static const int MAP_TEST = 2 ; 9 | static const int BTN_BACK = 3 ; 10 | } 11 | 12 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_recombineui.h: -------------------------------------------------------------------------------- 1 | #ifndef __TAG_RECOMBINEUI_H__ 2 | #define __TAG_RECOMBINEUI_H__ 3 | 4 | #define PATH_RECOMBINEUI "tui/tui_recombineui.xml" 5 | 6 | namespace { 7 | static const int PANEL_RECOMBINE = 1 ; 8 | static const int GPV_BAG = 2 ; 9 | static const int CELL_GRID = 4 ; 10 | static const int BTN_GRID = 5 ; 11 | static const int SCROL_MAP = 6 ; 12 | static const int IMG_SCROLLVIEW = 7 ; 13 | static const int BTN_BACK = 9 ; 14 | } 15 | 16 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_showPhone.h: -------------------------------------------------------------------------------- 1 | #ifndef __TAG_SHOWPHONE_H__ 2 | #define __TAG_SHOWPHONE_H__ 3 | 4 | #define PATH_SHOWPHONE "tui/tui_showPhone.xml" 5 | 6 | namespace ShowPhone { 7 | static const int PANEL_SHOWPHONE = 1 ; 8 | static const int CIRCLEMENU_SHOWPHONE = 2 ; 9 | static const int IMG_PHONE1 = 3 ; 10 | static const int IMG_PHONE2 = 4 ; 11 | static const int IMG_PHONE3 = 5 ; 12 | static const int IMG_PHONE4 = 6 ; 13 | static const int IMG_PHONE5 = 7 ; 14 | static const int IMG_PHONE6 = 8 ; 15 | } 16 | 17 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_welcome.h: -------------------------------------------------------------------------------- 1 | #ifndef __TAG_WELCOME_H__ 2 | #define __TAG_WELCOME_H__ 3 | 4 | #define PATH_WELCOME "tui/tui_welcome.xml" 5 | 6 | namespace Welcome { 7 | static const int PANEL_WELCOME = 1 ; 8 | static const int IMG9_BG1 = 2 ; 9 | static const int IMG9_BG2 = 3 ; 10 | static const int IMG9_BG3 = 4 ; 11 | static const int IMG9_BG4 = 5 ; 12 | static const int IMG_LOGO = 6 ; 13 | } 14 | 15 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/bagui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/bag/bagui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/btn_grid_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/bag/btn_grid_disable.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/btn_grid_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/bag/btn_grid_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/btn_grid_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/bag/btn_grid_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/gv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/bag/gv_bag.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/pv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/bag/pv_bag.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/tbl_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/bag/tbl_bag.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/fonts/Arial.ttf -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/anim_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/anim_coin.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/armature_boss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/armature_boss1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/btn_green_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/btn_green_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/btn_green_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/btn_green_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/btn_ok_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/btn_ok_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/btn_ok_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/btn_ok_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_disable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ckb_test_disable1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_disable2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ckb_test_disable2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_normal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ckb_test_normal1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_normal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ckb_test_normal2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ckb_test_select1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ckb_test_select2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ctlv_left_baseboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ctlv_left_baseboard.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ctlv_left_joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ctlv_left_joystick.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/btn_close_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/btn_close_disable.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/btn_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/btn_close_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/btn_close_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/btn_close_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/img9_boxbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/img9_boxbg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/labAtlas_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/labAtlas_num.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/prog_hp_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/prog_hp_bg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/prog_hp_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/prog_hp_progress.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/slider_test_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/slider_test_bg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/slider_test_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/slider_test_progress.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/slider_test_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/dialog/slider_test_thumb.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/edit_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/edit_login.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/img_guidefinger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/img_guidefinger.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/img_mainbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/img_mainbg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/mainui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/mainui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_ldisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/numStep_test_ldisable.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_lnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/numStep_test_lnomal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_lselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/numStep_test_lselect.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_rdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/numStep_test_rdisable.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_rnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/numStep_test_rnomal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_rselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/numStep_test_rselect.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_stepbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/numStep_test_stepbg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ptl_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/ptl_flower.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/tgv_test_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/tgv_test_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/tgv_test_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/main/tgv_test_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/map/img_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/map/img_icon.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/map/iso-test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/map/iso-test2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/map/ortho-test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/map/ortho-test1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/btn_grid_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/recombine/btn_grid_disable.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/btn_grid_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/recombine/btn_grid_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/btn_grid_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/recombine/btn_grid_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/gpv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/recombine/gpv_bag.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/img_scrollview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/recombine/img_scrollview.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/recombineui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/recombine/recombineui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/showphone/img9_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/showphone/img9_empty.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/showphone/img_note3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/showphone/img_note3.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/showphone/showphoneui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/showphone/showphoneui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/armBtn_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/store/armBtn_test2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/btn_pay_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/store/btn_pay_disable.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/btn_pay_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/store/btn_pay_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/btn_pay_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/store/btn_pay_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/img_itembg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/store/img_itembg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/labBmf_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/store/labBmf_test.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/storeui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/store/storeui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/tui/tui_map.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/welcome/img9_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/welcome/img9_bg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/welcome/img_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/welcome/img_logo.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/welcome/welcomeui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/Resources/welcome/welcomeui.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /jniLibs 3 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | 3 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char 4 | APP_LDFLAGS := -latomic 5 | 6 | 7 | ifeq ($(NDK_DEBUG),1) 8 | APP_CPPFLAGS += -DCOCOS2D_DEBUG=1 9 | APP_OPTIM := debug 10 | else 11 | APP_CPPFLAGS += -DNDEBUG 12 | APP_OPTIM := release 13 | endif 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "cocos2d.h" 3 | #include "platform/android/jni/JniHelper.h" 4 | #include 5 | #include 6 | 7 | #define LOG_TAG "main" 8 | #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__) 9 | 10 | using namespace cocos2d; 11 | 12 | void cocos_android_app_init (JNIEnv* env) { 13 | LOGD("cocos_android_app_init"); 14 | AppDelegate *pAppDelegate = new AppDelegate(); 15 | } 16 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-10 12 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.android-studio/app/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.android-studio/app/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.android-studio/app/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.android-studio/app/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | HelloTuiCpp 3 | 4 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "ndk_module_path" :[ 3 | "../cocos2d", 4 | "../cocos2d/cocos", 5 | "../cocos2d/external" 6 | ], 7 | "copy_resources": [ 8 | { 9 | "from": "../Resources", 10 | "to": "" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.android-studio/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jul 31 20:40:49 CST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':libcocos2dx' 2 | project(':libcocos2dx').projectDir = new File(settingsDir, '../cocos2d/cocos/platform/android/libcocos2dx') 3 | include ':HelloTuiCpp' 4 | project(':HelloTuiCpp').projectDir = new File(settingsDir, 'app') 5 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | environment/project/0.1230402123/append=true 3 | environment/project/0.1230402123/appendContributed=true 4 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false 3 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "ndk_module_path" :[ 3 | "../cocos2d", 4 | "../cocos2d/cocos", 5 | "../cocos2d/external" 6 | ], 7 | "copy_resources": [ 8 | { 9 | "from": "../Resources", 10 | "to": "" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | 3 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char 4 | APP_LDFLAGS := -latomic 5 | 6 | 7 | ifeq ($(NDK_DEBUG),1) 8 | APP_CPPFLAGS += -DCOCOS2D_DEBUG=1 9 | APP_OPTIM := debug 10 | else 11 | APP_CPPFLAGS += -DNDEBUG 12 | APP_OPTIM := release 13 | endif 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "cocos2d.h" 3 | #include "platform/android/jni/JniHelper.h" 4 | #include 5 | #include 6 | 7 | #define LOG_TAG "main" 8 | #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__) 9 | 10 | using namespace cocos2d; 11 | 12 | void cocos_android_app_init (JNIEnv* env) { 13 | LOGD("cocos_android_app_init"); 14 | AppDelegate *pAppDelegate = new AppDelegate(); 15 | } 16 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/local.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=D:\\adt-bundle-windows-x86_64-20140624\\sdk 11 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-20 12 | 13 | android.library.reference.1=../cocos2d/cocos/platform/android/java 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HelloTuiCpp 4 | 5 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/.DS_Store -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class RootViewController; 4 | 5 | @interface AppController : NSObject { 6 | UIWindow *window; 7 | } 8 | 9 | @property(nonatomic, readonly) RootViewController* viewController; 10 | 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Default-667h@2x.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Default-736h@3x.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-180.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/ios/Icon-87.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'iphone' target in the 'iphone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | 10 | #ifdef __cplusplus 11 | #include "cocos2d.h" 12 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main(int argc, char *argv[]) { 4 | 5 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 6 | int retVal = UIApplicationMain(argc, argv, nil, @"AppController"); 7 | [pool release]; 8 | return retVal; 9 | } 10 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Paralaxer' target in the 'Paralaxer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | 9 | #ifdef __cplusplus 10 | #include "cocos2d.h" 11 | #endif -------------------------------------------------------------------------------- /HelloTuiCpp/proj.linux/main.cpp: -------------------------------------------------------------------------------- 1 | #include "../Classes/AppDelegate.h" 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | USING_NS_CC; 9 | 10 | int main(int argc, char **argv) 11 | { 12 | // create the application instance 13 | AppDelegate app; 14 | return Application::getInstance()->run(); 15 | } 16 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | 10 | HelloCpp 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/App.xaml.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "app.g.h" 4 | #include "OpenGLES.h" 5 | #include "openglespage.xaml.h" 6 | 7 | namespace CocosAppWinRT 8 | { 9 | ref class App sealed 10 | { 11 | public: 12 | App(); 13 | virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e) override; 14 | 15 | private: 16 | void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e); 17 | void OnResuming(Platform::Object ^sender, Platform::Object ^args); 18 | 19 | OpenGLESPage^ mPage; 20 | OpenGLES mOpenGLES; 21 | }; 22 | } 23 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win10/App/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win10/App/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win10/App/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win10/App/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win10/App/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win10/App/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win10/App/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/HelloTuiCpp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win10/App/HelloTuiCpp_TemporaryKey.pfx -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | 11 | #include "cocos2d.h" 12 | #include "cocos-ext.h" 13 | 14 | 15 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/HelloCpp.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(ProjectDir)..\Resources 5 | WindowsLocalDebugger 6 | 7 | 8 | $(ProjectDir)..\Resources 9 | WindowsLocalDebugger 10 | 11 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy_resources": [ 3 | { 4 | "from": "../Resources", 5 | "to": "" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/main.cpp: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | #include "AppDelegate.h" 3 | #include "cocos2d.h" 4 | 5 | USING_NS_CC; 6 | 7 | int APIENTRY _tWinMain(HINSTANCE hInstance, 8 | HINSTANCE hPrevInstance, 9 | LPTSTR lpCmdLine, 10 | int nCmdShow) 11 | { 12 | UNREFERENCED_PARAMETER(hPrevInstance); 13 | UNREFERENCED_PARAMETER(lpCmdLine); 14 | 15 | // create the application instance 16 | AppDelegate app; 17 | return Application::getInstance()->run(); 18 | } 19 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/main.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAIN_H__ 2 | #define __MAIN_H__ 3 | 4 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 5 | 6 | // Windows Header Files: 7 | #include 8 | #include 9 | 10 | // C RunTime Header Files 11 | #include "CCStdC.h" 12 | 13 | #endif // __MAIN_H__ 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win32/res/game.ico -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by game.RC 4 | // 5 | 6 | #define IDS_PROJNAME 100 7 | #define IDR_TESTJS 100 8 | 9 | #define ID_FILE_NEW_WINDOW 32771 10 | 11 | // Next default values for new objects 12 | // 13 | #ifdef APSTUDIO_INVOKED 14 | #ifndef APSTUDIO_READONLY_SYMBOLS 15 | #define _APS_NEXT_RESOURCE_VALUE 201 16 | #define _APS_NEXT_CONTROL_VALUE 1000 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #define _APS_NEXT_COMMAND_VALUE 32775 19 | #endif 20 | #endif 21 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Shared/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | 10 | HelloCpp 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Shared/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Shared/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | 11 | #include "cocos2d.h" 12 | #include "cocos-ext.h" 13 | 14 | 15 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Windows/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.Windows/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Windows/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.Windows/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Windows/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.Windows/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Windows/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.Windows/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Windows/HelloTuiCpp.Windows_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.Windows/HelloTuiCpp.Windows_TemporaryKey.pfx -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/proj.win8.1-universal/App.WindowsPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/bag.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/场景/bag.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/main.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/场景/main.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/map.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/场景/map.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/recombineui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/场景/recombineui.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/showPhone.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/场景/showPhone.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/store.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/场景/store.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/tuiconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/welcome.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/场景/welcome.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/骨骼/armBtn_test2.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/骨骼/armBtn_test2.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/骨骼/armature_boss1.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiCpp/素材/骨骼/armature_boss1.fla -------------------------------------------------------------------------------- /HelloTuiLua/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine_version": "cocos2d-x-3.9beta0", 3 | "has_native": true, 4 | "project_type": "lua" 5 | } -------------------------------------------------------------------------------- /HelloTuiLua/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HelloTuiLua 4 | 5 | 6 | 7 | 8 | 9 | 10 | org.ccdt.cocosproject 11 | org.eclipse.koneki.ldt.nature 12 | 13 | 14 | -------------------------------------------------------------------------------- /HelloTuiLua/.settings/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "templateVersion":"2.0", 3 | "runtimeVersion":"2.0" 4 | } 5 | -------------------------------------------------------------------------------- /HelloTuiLua/StudioConstants.lua: -------------------------------------------------------------------------------- 1 | ccs = ccs or {} 2 | 3 | 4 | ccs.MovementEventType = { 5 | start = 0, 6 | complete = 1, 7 | loopComplete = 2, 8 | } 9 | -------------------------------------------------------------------------------- /HelloTuiLua/experimentalConstants.lua: -------------------------------------------------------------------------------- 1 | ccexp = ccexp or {} 2 | 3 | 4 | ccexp.VideoPlayerEvent = { 5 | PLAYING = 0, 6 | PAUSED = 1, 7 | STOPPED= 2, 8 | COMPLETED =3, 9 | } 10 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/Classes/ide-support/CodeIDESupport.h: -------------------------------------------------------------------------------- 1 | #ifndef __CODE_IDE_SUPPORT_H__ 2 | #define __CODE_IDE_SUPPORT_H__ 3 | 4 | // define 1 to open Cocos Code IDE support, 0 to disable 5 | #define CC_CODE_IDE_DEBUG_SUPPORT 0 6 | 7 | #endif /* __CODE_IDE_SUPPORT_H__ */ 8 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/Classes/ide-support/lua_debugger.h: -------------------------------------------------------------------------------- 1 | 2 | /* lua_debugger.h.h */ 3 | 4 | #ifndef __LUA_MODULES_049C000C96FE547176CCBB7690BA01B6_H_ 5 | #define __LUA_MODULES_049C000C96FE547176CCBB7690BA01B6_H_ 6 | 7 | #if __cplusplus 8 | extern "C" { 9 | #endif 10 | 11 | #include "lua.h" 12 | 13 | void luaopen_lua_debugger(lua_State* L); 14 | 15 | /* 16 | int luaopen_lua_m_debugger(lua_State* L); 17 | */ 18 | 19 | #if __cplusplus 20 | } 21 | #endif 22 | 23 | #endif /* __LUA_MODULES_049C000C96FE547176CCBB7690BA01B6_H_ */ 24 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/Classes/tui/lua_cocos2dx_tui_auto.hpp: -------------------------------------------------------------------------------- 1 | #ifndef __cocos2dx_tui_h__ 2 | #define __cocos2dx_tui_h__ 3 | 4 | #ifdef __cplusplus 5 | extern "C" { 6 | #endif 7 | #include "tolua++.h" 8 | #ifdef __cplusplus 9 | } 10 | #endif 11 | 12 | int register_all_cocos2dx_tui(lua_State* tolua_S); 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | #endif // __cocos2dx_tui_h__ 57 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /jniLibs 3 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | 3 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char 4 | APP_LDFLAGS := -latomic 5 | 6 | 7 | ifeq ($(NDK_DEBUG),1) 8 | APP_CPPFLAGS += -DCOCOS2D_DEBUG=1 9 | APP_OPTIM := debug 10 | else 11 | APP_CPPFLAGS += -DNDEBUG 12 | APP_OPTIM := release 13 | endif 14 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-10 12 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | HelloTuiLua 3 | 4 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "ndk_module_path" :[ 3 | "../../cocos2d-x", 4 | "../../cocos2d-x/cocos/", 5 | "../../cocos2d-x/external", 6 | "../../cocos2d-x/cocos/scripting" 7 | ], 8 | "copy_resources": [ 9 | { 10 | "from": "../../../src", 11 | "to": "src" 12 | }, 13 | { 14 | "from": "../../../res", 15 | "to": "res" 16 | } 17 | ], 18 | "must_copy_resources": [ 19 | { 20 | "from": "../../../config.json", 21 | "to": "" 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.android-studio/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jul 31 20:40:49 CST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':libcocos2dx' 2 | project(':libcocos2dx').projectDir = new File(settingsDir, '../../cocos2d-x/cocos/platform/android/libcocos2dx') 3 | include ':HelloTuiLua' 4 | project(':HelloTuiLua').projectDir = new File(settingsDir, 'app') 5 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "ndk_module_path" :[ 3 | "../../cocos2d-x", 4 | "../../cocos2d-x/cocos/", 5 | "../../cocos2d-x/external", 6 | "../../cocos2d-x/cocos/scripting" 7 | ], 8 | "copy_resources": [ 9 | { 10 | "from": "../../../src", 11 | "to": "src" 12 | }, 13 | { 14 | "from": "../../../res", 15 | "to": "res" 16 | } 17 | ], 18 | "must_copy_resources": [ 19 | { 20 | "from": "../../../config.json", 21 | "to": "" 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | 3 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char 4 | APP_LDFLAGS := -latomic 5 | 6 | 7 | ifeq ($(NDK_DEBUG),1) 8 | APP_CPPFLAGS += -DCOCOS2D_DEBUG=1 9 | APP_OPTIM := debug 10 | else 11 | APP_CPPFLAGS += -DNDEBUG 12 | APP_OPTIM := release 13 | endif 14 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-10 12 | 13 | android.library.reference.1=../../cocos2d-x/cocos/platform/android/java 14 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HelloTuiLua 4 | 5 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/.DS_Store -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/HelloTuiLua.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/HelloTuiLua.xcodeproj/project.xcworkspace/xcuserdata/air.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/HelloTuiLua.xcodeproj/project.xcworkspace/xcuserdata/air.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default-667h@2x.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default-736h@3x.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-180.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Icon-87.png -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'simulator' target in the 'simulator' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "remove_res" : [ 3 | "src", 4 | "res" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // simulator 4 | // 5 | // Copyright __MyCompanyName__ 2011. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) { 11 | 12 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 13 | int retVal = UIApplicationMain(argc, argv, nil, @"AppController"); 14 | [pool release]; 15 | return retVal; 16 | } 17 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/mac/ConsoleWindowController.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface ConsoleWindowController : NSWindowController 5 | { 6 | NSTextView *textView; 7 | IBOutlet NSButton *checkScroll; 8 | IBOutlet NSButton *topCheckBox; 9 | NSMutableArray *linesCount; 10 | NSUInteger traceCount; 11 | } 12 | 13 | @property (assign) IBOutlet NSTextView *textView; 14 | 15 | - (void) trace:(NSString*)msg; 16 | - (IBAction)onClear:(id)sender; 17 | - (IBAction)onScrollChange:(id)sender; 18 | - (IBAction)onTopChange:(id)sender; 19 | 20 | @end 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Paralaxer' target in the 'Paralaxer' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/mac/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "remove_res" : [ 3 | "src", 4 | "res", 5 | "config.json" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.ios_mac/mac/main.m: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | return NSApplicationMain(argc, (const char **)argv); 7 | } 8 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.linux/main.cpp: -------------------------------------------------------------------------------- 1 | #include "../Classes/AppDelegate.h" 2 | #include "cocos2d.h" 3 | 4 | #include 5 | #include 6 | #include 7 | #include 8 | 9 | USING_NS_CC; 10 | 11 | int main(int argc, char **argv) 12 | { 13 | // create the application instance 14 | AppDelegate app; 15 | return Application::getInstance()->run(); 16 | } 17 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy_resources": [ 3 | { 4 | "from": "../../../src", 5 | "to": "src" 6 | }, 7 | { 8 | "from": "../../../res", 9 | "to": "res" 10 | }, 11 | { 12 | "from": "../../../config.json", 13 | "to": "" 14 | }, 15 | { 16 | "from": "../Classes/ide-support/lang", 17 | "to": "" 18 | } 19 | ], 20 | "must_copy_resources": [ 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.win32/game.rc -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.win32/main.cpp: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | #include "SimulatorWin.h" 3 | #include 4 | 5 | int APIENTRY _tWinMain(HINSTANCE hInstance, 6 | HINSTANCE hPrevInstance, 7 | LPTSTR lpCmdLine, 8 | int nCmdShow) 9 | { 10 | UNREFERENCED_PARAMETER(hPrevInstance); 11 | UNREFERENCED_PARAMETER(lpCmdLine); 12 | auto simulator = SimulatorWin::getInstance(); 13 | return simulator->run(); 14 | } 15 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.win32/main.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAIN_H__ 2 | #define __MAIN_H__ 3 | 4 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 5 | 6 | // Windows Header Files: 7 | #include 8 | #include 9 | 10 | #endif // __WINMAIN_H__ 11 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/frameworks/runtime-src/proj.win32/res/game.ico -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.win32/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // player.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.win32/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | // 5 | 6 | #pragma once 7 | 8 | #include "targetver.h" 9 | 10 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 11 | // Windows Header Files: 12 | #include 13 | 14 | // C RunTime Header Files 15 | #include 16 | #include 17 | #include 18 | #include 19 | 20 | 21 | // TODO: reference additional headers your program requires here 22 | -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.win32/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // Including SDKDDKVer.h defines the highest available Windows platform. 4 | 5 | // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and 6 | // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. 7 | 8 | #include 9 | -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/bagui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/bag/bagui.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/btn_grid_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/bag/btn_grid_disable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/btn_grid_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/bag/btn_grid_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/btn_grid_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/bag/btn_grid_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/gv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/bag/gv_bag.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/pv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/bag/pv_bag.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/tbl_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/bag/tbl_bag.png -------------------------------------------------------------------------------- /HelloTuiLua/res/effect/movie_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/effect/movie_test.png -------------------------------------------------------------------------------- /HelloTuiLua/res/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/fonts/Arial.ttf -------------------------------------------------------------------------------- /HelloTuiLua/res/main/Cocos2d.lua: -------------------------------------------------------------------------------- 1 | require "CocoStudio" 2 | 3 | local ConfigType = 4 | { 5 | NONE = 0, 6 | COCOSTUDIO = 1, 7 | } 8 | 9 | function __onParseConfig(configType,jasonStr) 10 | if configType == ConfigType.COCOSTUDIO then 11 | TriggerMng.getInstance():parse(jasonStr) 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /HelloTuiLua/res/main/anim_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/anim_coin.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/armBtn_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/armBtn_test2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/armature_boss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/armature_boss1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_green_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/btn_green_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_green_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/btn_green_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_ok_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/btn_ok_disable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_ok_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/btn_ok_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_ok_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/btn_ok_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_pay_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/btn_pay_disable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_pay_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/btn_pay_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_pay_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/btn_pay_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_disable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ckb_test_disable1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_disable2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ckb_test_disable2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_normal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ckb_test_normal1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_normal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ckb_test_normal2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ckb_test_select1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ckb_test_select2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ctlv_left_baseboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ctlv_left_baseboard.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ctlv_left_joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ctlv_left_joystick.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/btn_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/btn_close_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/btn_close_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/btn_close_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/img9_boxbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/img9_boxbg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/labAtlas_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/labAtlas_num.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/labBmf_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/labBmf_test.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/prog_hp_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/prog_hp_bg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/prog_hp_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/prog_hp_progress.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/slider_test_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/slider_test_bg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/slider_test_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/slider_test_progress.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/slider_test_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/dialog/slider_test_thumb.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/edit_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/edit_login.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/img_bg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_itembg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/img_itembg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_listgoodsmedicine2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/img_listgoodsmedicine2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_listgoodsmedicine3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/img_listgoodsmedicine3.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_listgoodsprop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/img_listgoodsprop1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/list_goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/list_goods.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/mainui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/mainui.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_ldisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/numStep_test_ldisable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_lnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/numStep_test_lnomal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_lselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/numStep_test_lselect.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_rdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/numStep_test_rdisable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_rnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/numStep_test_rnomal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_rselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/numStep_test_rselect.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_stepbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/numStep_test_stepbg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ptl_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/ptl_flower.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/tgv_option_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/tgv_option_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/tgv_option_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/main/tgv_option_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/map/img_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/map/img_icon.png -------------------------------------------------------------------------------- /HelloTuiLua/res/map/iso-test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/map/iso-test2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/map/ortho-test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/map/ortho-test1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/btn_grid_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/recombine/btn_grid_disable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/btn_grid_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/recombine/btn_grid_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/btn_grid_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/recombine/btn_grid_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/gpv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/recombine/gpv_bag.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/img_scrollview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/recombine/img_scrollview.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/recombineui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/recombine/recombineui.png -------------------------------------------------------------------------------- /HelloTuiLua/res/showphone/img9_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/showphone/img9_empty.png -------------------------------------------------------------------------------- /HelloTuiLua/res/showphone/img_note3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/showphone/img_note3.png -------------------------------------------------------------------------------- /HelloTuiLua/res/showphone/showphoneui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/res/showphone/showphoneui.png -------------------------------------------------------------------------------- /HelloTuiLua/res/tui/tui_map.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/OpenAL32.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/glew32.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/iconv.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/libcurl.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libmpg123.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/libmpg123.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libogg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/libogg.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/libtiff.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libvorbis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/libvorbis.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libvorbisfile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/libvorbisfile.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/lua51.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/sqlite3.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/websockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/websockets.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/runtime/win32/zlib1.dll -------------------------------------------------------------------------------- /HelloTuiLua/src/StudioConstants.lua: -------------------------------------------------------------------------------- 1 | ccs = ccs or {} 2 | 3 | 4 | ccs.MovementEventType = { 5 | start = 0, 6 | complete = 1, 7 | loopComplete = 2, 8 | } 9 | -------------------------------------------------------------------------------- /HelloTuiLua/src/experimentalConstants.lua: -------------------------------------------------------------------------------- 1 | ccexp = ccexp or {} 2 | 3 | 4 | ccexp.VideoPlayerEvent = { 5 | PLAYING = 0, 6 | PAUSED = 1, 7 | STOPPED= 2, 8 | COMPLETED =3, 9 | } 10 | -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/test_pb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/src/proto/test_pb.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_bagui.lua: -------------------------------------------------------------------------------- 1 | PATH_BAGUI = "tui/tui_bagui.xml" 2 | 3 | Tag_bagui = { 4 | PANEL_BAG = 1 , 5 | GV_BAG = 2 , 6 | CELL_GRID = 8 , 7 | BTN_GRID = 9 , 8 | TBL_BAG = 6 , 9 | PV_BAG = 10 , 10 | CELL_PAGE = 12 , 11 | BTN_GRID4 = 13 , 12 | BTN_GRID2 = 14 , 13 | BTN_GRID3 = 15 , 14 | BTN_GRID1 = 16 , 15 | BTN_BACK = 17 , 16 | BTN_RECOMBINE = 18 } 17 | 18 | -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_map.lua: -------------------------------------------------------------------------------- 1 | PATH_MAP = "tui/tui_map.xml" 2 | 3 | Tag_map = { 4 | PANEL_MAP = 1 , 5 | MAP_TEST = 2 , 6 | BTN_BACK = 3 } 7 | 8 | -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_recombineui.lua: -------------------------------------------------------------------------------- 1 | PATH_RECOMBINEUI = "tui/tui_recombineui.xml" 2 | 3 | Tag_recombineui = { 4 | PANEL_RECOMBINE = 1 , 5 | GPV_BAG = 2 , 6 | BTN_BACK = 4 , 7 | SCROL_MAP = 5 , 8 | IMG_SCROLLVIEW = 6 , 9 | RTF_TEST = 8 , 10 | CELL_GRID = 9 , 11 | BTN_GRID = 10 } 12 | 13 | -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_showphoneui.lua: -------------------------------------------------------------------------------- 1 | PATH_SHOWPHONEUI = "tui/tui_showphoneui.xml" 2 | 3 | Tag_showphoneui = { 4 | PANEL_SHOWPHONE = 1 , 5 | CIRCLEMENU_SHOWPHONE = 2 , 6 | IMG_PHONE1 = 4 , 7 | IMG_PHONE2 = 5 , 8 | IMG_PHONE6 = 6 , 9 | IMG_PHONE4 = 7 , 10 | IMG_PHONE5 = 8 , 11 | IMG_PHONE3 = 9 } 12 | 13 | -------------------------------------------------------------------------------- /HelloTuiLua/素材/armBtn_test2.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/素材/armBtn_test2.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/bagui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/素材/bagui.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/map.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/素材/map.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/recombineui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/素材/recombineui.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/showphoneui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/素材/showphoneui.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/tuiconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /HelloTuiLua/素材/welcomeui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/HelloTuiLua/素材/welcomeui.fla -------------------------------------------------------------------------------- /dragonbones/animation/IAnimatable.h: -------------------------------------------------------------------------------- 1 | #ifndef ANIMATION_I_ANIMATABLE_H 2 | #define ANIMATION_I_ANIMATABLE_H 3 | 4 | NAME_SPACE_DRAGON_BONES_BEGIN 5 | class IAnimatable 6 | { 7 | public: 8 | IAnimatable() {}; 9 | virtual ~IAnimatable() {}; 10 | virtual void advanceTime(float passedTime) = 0; 11 | 12 | private: 13 | DRAGON_BONES_DISALLOW_COPY_AND_ASSIGN(IAnimatable); 14 | }; 15 | NAME_SPACE_DRAGON_BONES_END 16 | #endif // ANIMATION_I_ANIMATABLE_H 17 | -------------------------------------------------------------------------------- /dragonbones/events/IEventDispatcher.h: -------------------------------------------------------------------------------- 1 | #ifndef EVENTS_I_EVENT_DISPATCHER_H 2 | #define EVENTS_I_EVENT_DISPATCHER_H 3 | 4 | #include "../DragonBones.h" 5 | #include "EventData.h" 6 | 7 | NAME_SPACE_DRAGON_BONES_BEGIN 8 | class IEventDispatcher 9 | { 10 | public: 11 | IEventDispatcher() {} 12 | virtual ~IEventDispatcher() {}; 13 | virtual void dispose() = 0; 14 | 15 | virtual void dispatchEvent(EventData *eventData) = 0; 16 | virtual bool hasEvent(EventData::EventType eventDataType) const = 0; 17 | 18 | private: 19 | DRAGON_BONES_DISALLOW_COPY_AND_ASSIGN(IEventDispatcher); 20 | }; 21 | NAME_SPACE_DRAGON_BONES_END 22 | #endif // EVENTS_I_EVENT_DISPATCHER_H 23 | -------------------------------------------------------------------------------- /dragonbones/geoms/Point.h: -------------------------------------------------------------------------------- 1 | #ifndef GEOMS_POINT_H 2 | #define GEOMS_POINT_H 3 | 4 | #include "../DragonBones.h" 5 | 6 | NAME_SPACE_DRAGON_BONES_BEGIN 7 | class Point 8 | { 9 | public: 10 | float x; 11 | float y; 12 | 13 | public: 14 | Point() 15 | { 16 | x = 0.f; 17 | y = 0.f; 18 | } 19 | Point(const Point ©Data) 20 | { 21 | operator=(copyData); 22 | } 23 | void operator=(const Point ©Data) 24 | { 25 | x = copyData.x; 26 | y = copyData.y; 27 | } 28 | virtual ~Point() {} 29 | }; 30 | NAME_SPACE_DRAGON_BONES_END 31 | #endif // GEOMS_POINT_H 32 | -------------------------------------------------------------------------------- /dragonbones/renderer/cocos2d-x-3.2/DBCCRenderHeaders.h: -------------------------------------------------------------------------------- 1 | #ifndef DBCC_RENDER_HEADERS_H 2 | #define DBCC_RENDER_HEADERS_H 3 | 4 | 5 | #include "dbccMacro.h" 6 | #include "DBCCTextureAtlas.h" 7 | #include "DBCCSlot.h" 8 | #include "DBCCEventDispatcher.h" 9 | #include "DBCCArmature.h" 10 | #include "DBCCArmatureNode.h" 11 | #include "DBCCFactory.h" 12 | 13 | 14 | 15 | 16 | #endif // DBCC_RENDER_HEADERS_H -------------------------------------------------------------------------------- /dragonbones/renderer/cocos2d-x-3.2/dbccMacro.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ifndef DBCC_MACRO_H 4 | #define DBCC_MACRO_H 5 | 6 | #ifndef DRAGON_BONES_ENABLE_LUA 7 | #define DRAGON_BONES_ENABLE_LUA 0 8 | #endif // !DRAGON_BONES_ENABLE_LUA 9 | 10 | 11 | #endif // DBCC_MACRO_H 12 | -------------------------------------------------------------------------------- /dragonbones/textures/ITextureAtlas.h: -------------------------------------------------------------------------------- 1 | #ifndef TEXTURES_I_TEXTURE_ATLAS_H 2 | #define TEXTURES_I_TEXTURE_ATLAS_H 3 | 4 | #include "../DragonBones.h" 5 | #include "TextureAtlasData.h" 6 | 7 | NAME_SPACE_DRAGON_BONES_BEGIN 8 | class ITextureAtlas 9 | { 10 | public: 11 | TextureAtlasData *textureAtlasData; 12 | 13 | public: 14 | ITextureAtlas() 15 | { 16 | } 17 | virtual ~ITextureAtlas() {}; 18 | virtual void dispose() = 0; 19 | 20 | private: 21 | DRAGON_BONES_DISALLOW_COPY_AND_ASSIGN(ITextureAtlas); 22 | }; 23 | NAME_SPACE_DRAGON_BONES_END 24 | #endif // TEXTURES_I_TEXTURE_ATLAS_H -------------------------------------------------------------------------------- /flash/DragonBonesDesignPanel.zxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/flash/DragonBonesDesignPanel.zxp -------------------------------------------------------------------------------- /flash/Template.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/flash/Template.fla -------------------------------------------------------------------------------- /picture/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/picture/pic1.png -------------------------------------------------------------------------------- /picture/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/e00e79109db466143ed2b399a8991be4e5fea28f/picture/pic2.png --------------------------------------------------------------------------------