├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/.gitignore -------------------------------------------------------------------------------- /CocosBase/CCBaseMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCBaseMacros.h -------------------------------------------------------------------------------- /CocosBase/CCBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCBundle.cpp -------------------------------------------------------------------------------- /CocosBase/CCBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCBundle.h -------------------------------------------------------------------------------- /CocosBase/CCMsgDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCMsgDelegate.cpp -------------------------------------------------------------------------------- /CocosBase/CCMsgDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCMsgDelegate.h -------------------------------------------------------------------------------- /CocosBase/CCMsgManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCMsgManager.cpp -------------------------------------------------------------------------------- /CocosBase/CCMsgManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCMsgManager.h -------------------------------------------------------------------------------- /CocosBase/CCSceneExTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCSceneExTransition.cpp -------------------------------------------------------------------------------- /CocosBase/CCSceneExTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCSceneExTransition.h -------------------------------------------------------------------------------- /CocosBase/CCSceneExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCSceneExtension.cpp -------------------------------------------------------------------------------- /CocosBase/CCSceneExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCSceneExtension.h -------------------------------------------------------------------------------- /CocosBase/CCSceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCSceneManager.cpp -------------------------------------------------------------------------------- /CocosBase/CCSceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/CCSceneManager.h -------------------------------------------------------------------------------- /CocosBase/cocos-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/cocos-base.h -------------------------------------------------------------------------------- /CocosBase/lua_cocos2dx_cocosbase_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/lua_cocos2dx_cocosbase_auto.cpp -------------------------------------------------------------------------------- /CocosBase/lua_cocos2dx_cocosbase_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBase/lua_cocos2dx_cocosbase_auto.hpp -------------------------------------------------------------------------------- /CocosBaseTestCpp/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_type": "cpp" 3 | } -------------------------------------------------------------------------------- /CocosBaseTestCpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/CMakeLists.txt -------------------------------------------------------------------------------- /CocosBaseTestCpp/Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /CocosBaseTestCpp/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Classes/AppDelegate.h -------------------------------------------------------------------------------- /CocosBaseTestCpp/Classes/MenuScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Classes/MenuScene.cpp -------------------------------------------------------------------------------- /CocosBaseTestCpp/Classes/MenuScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Classes/MenuScene.h -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/CloseNormal.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/CloseSelected.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/HelloWorld.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/back1.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/back2.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/background.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/btn1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/btn1_1.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/btn1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/btn1_2.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/next1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/next1.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/next2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/next2.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/startMenuBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/startMenuBG.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/toggle1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/toggle1_1.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/Resources/toggle1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/Resources/toggle1_2.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/.classpath -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/.project -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/AndroidManifest.xml -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/README.md -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/ant.properties -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/build-cfg.json -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/build.xml -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/build_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/build_native.py -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/jni/hellocpp/main.cpp -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/proguard-project.txt -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/project.properties -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.android/res/values/strings.xml -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/AppController.h -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/AppController.mm -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/Prefix.pch -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/mac/Prefix.pch -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.ios_mac/mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.ios_mac/mac/main.cpp -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.linux/main.cpp -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.sln -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.v11.suo -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/CocosBaseTestCpp.vcxproj -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/build-cfg.json -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/game.rc -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/main.cpp -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/main.h -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/res/game.ico -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.win32/resource.h -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp.sln -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/App.xaml -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/App.xaml.cs -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/EditBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/EditBox.xaml -------------------------------------------------------------------------------- /CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosBaseTestCpp/proj.wp8-xaml/HelloCpp/MainPage.xaml -------------------------------------------------------------------------------- /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" -------------------------------------------------------------------------------- /CocosNet/CCBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCBuffer.cpp -------------------------------------------------------------------------------- /CocosNet/CCBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCBuffer.h -------------------------------------------------------------------------------- /CocosNet/CCInetAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCInetAddress.cpp -------------------------------------------------------------------------------- /CocosNet/CCInetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCInetAddress.h -------------------------------------------------------------------------------- /CocosNet/CCNetDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCNetDelegate.cpp -------------------------------------------------------------------------------- /CocosNet/CCNetDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCNetDelegate.h -------------------------------------------------------------------------------- /CocosNet/CCNetMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCNetMacros.h -------------------------------------------------------------------------------- /CocosNet/CCSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCSocket.cpp -------------------------------------------------------------------------------- /CocosNet/CCSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/CCSocket.h -------------------------------------------------------------------------------- /CocosNet/cocos-net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/cocos-net.h -------------------------------------------------------------------------------- /CocosNet/lua_cocos2dx_cocosnet_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/lua_cocos2dx_cocosnet_auto.cpp -------------------------------------------------------------------------------- /CocosNet/lua_cocos2dx_cocosnet_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNet/lua_cocos2dx_cocosnet_auto.hpp -------------------------------------------------------------------------------- /CocosNetTestCpp/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_type": "cpp" 3 | } -------------------------------------------------------------------------------- /CocosNetTestCpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/CMakeLists.txt -------------------------------------------------------------------------------- /CocosNetTestCpp/Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /CocosNetTestCpp/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Classes/AppDelegate.h -------------------------------------------------------------------------------- /CocosNetTestCpp/Classes/HelloWorldScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Classes/HelloWorldScene.cpp -------------------------------------------------------------------------------- /CocosNetTestCpp/Classes/HelloWorldScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Classes/HelloWorldScene.h -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Resources/CloseNormal.png -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Resources/CloseSelected.png -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Resources/HelloWorld.png -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Resources/Icon.png -------------------------------------------------------------------------------- /CocosNetTestCpp/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/.classpath -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/.project -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/AndroidManifest.xml -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/README.md -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/ant.properties -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/build-cfg.json -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/build.xml -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/build_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/build_native.py -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/jni/hellocpp/main.cpp -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/proguard-project.txt -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/project.properties -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.android/res/values/strings.xml -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/AppController.h -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/AppController.mm -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/Prefix.pch -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/RootViewController.h -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/mac/Prefix.pch -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.ios_mac/mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.ios_mac/mac/main.cpp -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.linux/main.cpp -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/CocosNetTestCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/CocosNetTestCpp.sln -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/CocosNetTestCpp.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/CocosNetTestCpp.v11.suo -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/CocosNetTestCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/CocosNetTestCpp.vcxproj -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/build-cfg.json -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/game.rc -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/main.cpp -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/main.h -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/res/game.ico -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.win32/resource.h -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.wp8-xaml/HelloCpp.sln -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/App.xaml -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/App.xaml.cs -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/EditBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/EditBox.xaml -------------------------------------------------------------------------------- /CocosNetTestCpp/proj.wp8-xaml/HelloCpp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosNetTestCpp/proj.wp8-xaml/HelloCpp/MainPage.xaml -------------------------------------------------------------------------------- /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/ArmatureBtn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ArmatureBtn.cpp -------------------------------------------------------------------------------- /CocosWidget/ArmatureBtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ArmatureBtn.h -------------------------------------------------------------------------------- /CocosWidget/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Button.cpp -------------------------------------------------------------------------------- /CocosWidget/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Button.h -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBox.cpp -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBox.h -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImpl.h -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplAndroid.cpp -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplAndroid.h -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplIOS.h -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplIOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplIOS.mm -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplMac.h -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplMac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplMac.mm -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplNone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplNone.cpp -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplWin.cpp -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplWin.h -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplWp8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplWp8.cpp -------------------------------------------------------------------------------- /CocosWidget/CEditBox/CEditBoxImplWp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/CEditBoxImplWp8.h -------------------------------------------------------------------------------- /CocosWidget/CEditBox/Win32InputBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/Win32InputBox.cpp -------------------------------------------------------------------------------- /CocosWidget/CEditBox/Win32InputBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CEditBox/Win32InputBox.h -------------------------------------------------------------------------------- /CocosWidget/CheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CheckBox.cpp -------------------------------------------------------------------------------- /CocosWidget/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CheckBox.h -------------------------------------------------------------------------------- /CocosWidget/CircleMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CircleMenu.cpp -------------------------------------------------------------------------------- /CocosWidget/CircleMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/CircleMenu.h -------------------------------------------------------------------------------- /CocosWidget/ColorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ColorView.cpp -------------------------------------------------------------------------------- /CocosWidget/ColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ColorView.h -------------------------------------------------------------------------------- /CocosWidget/ControlView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ControlView.cpp -------------------------------------------------------------------------------- /CocosWidget/ControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ControlView.h -------------------------------------------------------------------------------- /CocosWidget/ExpandableListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ExpandableListView.cpp -------------------------------------------------------------------------------- /CocosWidget/ExpandableListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ExpandableListView.h -------------------------------------------------------------------------------- /CocosWidget/GradientView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/GradientView.cpp -------------------------------------------------------------------------------- /CocosWidget/GradientView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/GradientView.h -------------------------------------------------------------------------------- /CocosWidget/GridPageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/GridPageView.cpp -------------------------------------------------------------------------------- /CocosWidget/GridPageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/GridPageView.h -------------------------------------------------------------------------------- /CocosWidget/GridView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/GridView.cpp -------------------------------------------------------------------------------- /CocosWidget/GridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/GridView.h -------------------------------------------------------------------------------- /CocosWidget/ImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ImageView.cpp -------------------------------------------------------------------------------- /CocosWidget/ImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ImageView.h -------------------------------------------------------------------------------- /CocosWidget/ImageViewScale9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ImageViewScale9.cpp -------------------------------------------------------------------------------- /CocosWidget/ImageViewScale9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ImageViewScale9.h -------------------------------------------------------------------------------- /CocosWidget/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Label.cpp -------------------------------------------------------------------------------- /CocosWidget/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Label.h -------------------------------------------------------------------------------- /CocosWidget/LabelAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/LabelAtlas.cpp -------------------------------------------------------------------------------- /CocosWidget/LabelAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/LabelAtlas.h -------------------------------------------------------------------------------- /CocosWidget/LabelBMFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/LabelBMFont.cpp -------------------------------------------------------------------------------- /CocosWidget/LabelBMFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/LabelBMFont.h -------------------------------------------------------------------------------- /CocosWidget/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Layout.cpp -------------------------------------------------------------------------------- /CocosWidget/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Layout.h -------------------------------------------------------------------------------- /CocosWidget/ListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ListView.cpp -------------------------------------------------------------------------------- /CocosWidget/ListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ListView.h -------------------------------------------------------------------------------- /CocosWidget/MapView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/MapView.cpp -------------------------------------------------------------------------------- /CocosWidget/MapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/MapView.h -------------------------------------------------------------------------------- /CocosWidget/NumericStepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/NumericStepper.cpp -------------------------------------------------------------------------------- /CocosWidget/NumericStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/NumericStepper.h -------------------------------------------------------------------------------- /CocosWidget/PageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/PageView.cpp -------------------------------------------------------------------------------- /CocosWidget/PageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/PageView.h -------------------------------------------------------------------------------- /CocosWidget/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ProgressBar.cpp -------------------------------------------------------------------------------- /CocosWidget/ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ProgressBar.h -------------------------------------------------------------------------------- /CocosWidget/Scale9Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Scale9Sprite.cpp -------------------------------------------------------------------------------- /CocosWidget/Scale9Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Scale9Sprite.h -------------------------------------------------------------------------------- /CocosWidget/ScrollView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ScrollView.cpp -------------------------------------------------------------------------------- /CocosWidget/ScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ScrollView.h -------------------------------------------------------------------------------- /CocosWidget/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Slider.cpp -------------------------------------------------------------------------------- /CocosWidget/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Slider.h -------------------------------------------------------------------------------- /CocosWidget/TableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/TableView.cpp -------------------------------------------------------------------------------- /CocosWidget/TableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/TableView.h -------------------------------------------------------------------------------- /CocosWidget/TextRich.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/TextRich.cpp -------------------------------------------------------------------------------- /CocosWidget/TextRich.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/TextRich.h -------------------------------------------------------------------------------- /CocosWidget/ToggleView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ToggleView.cpp -------------------------------------------------------------------------------- /CocosWidget/ToggleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/ToggleView.h -------------------------------------------------------------------------------- /CocosWidget/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Widget.cpp -------------------------------------------------------------------------------- /CocosWidget/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/Widget.h -------------------------------------------------------------------------------- /CocosWidget/WidgetMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/WidgetMacros.h -------------------------------------------------------------------------------- /CocosWidget/WidgetProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/WidgetProtocol.cpp -------------------------------------------------------------------------------- /CocosWidget/WidgetProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/WidgetProtocol.h -------------------------------------------------------------------------------- /CocosWidget/WidgetWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/WidgetWindow.cpp -------------------------------------------------------------------------------- /CocosWidget/WidgetWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/WidgetWindow.h -------------------------------------------------------------------------------- /CocosWidget/WitlsMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/WitlsMacros.cpp -------------------------------------------------------------------------------- /CocosWidget/WitlsMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/WitlsMacros.h -------------------------------------------------------------------------------- /CocosWidget/cocos-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/cocos-widget.h -------------------------------------------------------------------------------- /CocosWidget/lua_cocos2dx_cocoswidget_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/lua_cocos2dx_cocoswidget_auto.cpp -------------------------------------------------------------------------------- /CocosWidget/lua_cocos2dx_cocoswidget_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidget/lua_cocos2dx_cocoswidget_auto.hpp -------------------------------------------------------------------------------- /CocosWidgetTestCpp/.cocos-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_type": "cpp" 3 | } -------------------------------------------------------------------------------- /CocosWidgetTestCpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/CMakeLists.txt -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Classes/AppDelegate.h -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Classes/HelloWorldScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Classes/HelloWorldScene.cpp -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Classes/HelloWorldScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Classes/HelloWorldScene.h -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Classes/MenuScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Classes/MenuScene.cpp -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Classes/MenuScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Classes/MenuScene.h -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Classes/action/LabelChange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Classes/action/LabelChange.cpp -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Classes/action/LabelChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Classes/action/LabelChange.h -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/CloseNormal.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/CloseSelected.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/HelloWorld.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/again1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/again1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/again2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/again2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/arial-unicode-26.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/arial-unicode-26.fnt -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/arial-unicode-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/arial-unicode-26.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/armBtn_test2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/armBtn_test2.plist -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/armBtn_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/armBtn_test2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/armBtn_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/armBtn_test2.xml -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/armature_boss1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/armature_boss1.plist -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/armature_boss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/armature_boss1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/armature_boss1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/armature_boss1.xml -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/back1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/back2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/background.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/background2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/background3.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/btn1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/btn1_1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/btn1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/btn1_2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/btn1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/btn1_3.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/circle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/circle1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/circle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/circle2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_disable_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/ckb_disable_01.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_disable_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/ckb_disable_02.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_normal_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/ckb_normal_01.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_normal_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/ckb_normal_02.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_selected_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/ckb_selected_01.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/ckb_selected_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/ckb_selected_02.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/control_baseboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/control_baseboard.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/control_joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/control_joystick.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/expandnodebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/expandnodebg.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/fonts/arial.ttf -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/icon.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/next1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/next1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/next2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/next2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/num.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/numStep_test_lnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/numStep_test_lnomal.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/progress.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/progress_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/progress_bg.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/progress_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/progress_v.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/progress_v_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/progress_v_bg.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/scrollcontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/scrollcontent.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/slider.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/sprite9_btn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/sprite9_btn1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/sprite9_btn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/sprite9_btn2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/toggle1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/toggle1_1.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/Resources/toggle1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/Resources/toggle1_2.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/.classpath -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/.project -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/README.md -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/ant.properties -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/build-cfg.json -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/build.xml -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/build_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/build_native.py -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.android/project.properties -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/Prefix.pch -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/mac/Prefix.pch -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.ios_mac/mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.ios_mac/mac/main.cpp -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.linux/main.cpp -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.win32/build-cfg.json -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.win32/game.rc -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.win32/main.cpp -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.win32/main.h -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.win32/res/game.ico -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.win32/resource.h -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp.sln -------------------------------------------------------------------------------- /CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/CocosWidgetTestCpp/proj.wp8-xaml/HelloCpp/App.xaml -------------------------------------------------------------------------------- /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/HEAD/CocosWidgetTestCpp/素材/armBtn_test2.fla -------------------------------------------------------------------------------- /HelloTuiCpp/.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/.cocos-project.json -------------------------------------------------------------------------------- /HelloTuiCpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/CMakeLists.txt -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/.DS_Store -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/AppDelegate.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/module/ResoureMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/module/ResoureMgr.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/module/ResoureMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/module/ResoureMgr.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Bag/BagCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Bag/BagCfg.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Bag/Bagui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Bag/Bagui.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Bag/Bagui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Bag/Bagui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Guide/Guideui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Guide/Guideui.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Guide/Guideui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Guide/Guideui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Main/MainCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Main/MainCfg.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Main/Mainui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Main/Mainui.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Main/Mainui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Main/Mainui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Main/dialog/MsgBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Main/dialog/MsgBox.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Main/dialog/MsgBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Main/dialog/MsgBox.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Map/MapCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Map/MapCfg.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Map/Mapui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Map/Mapui.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Map/Mapui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Map/Mapui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Recombine/Recombineui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Recombine/Recombineui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/ShowPhone/ShowPhoneCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/ShowPhone/ShowPhoneCfg.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/ShowPhone/ShowPhoneui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/ShowPhone/ShowPhoneui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Store/StoreCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Store/StoreCfg.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Store/Storeui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Store/Storeui.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Store/Storeui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Store/Storeui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Welcome/WelcomeCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Welcome/WelcomeCfg.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Welcome/Welcomeui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Welcome/Welcomeui.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/scene/Welcome/Welcomeui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/scene/Welcome/Welcomeui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tagMap/Tag_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tagMap/Tag_map.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/TuiBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/TuiBase.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/TuiBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/TuiBase.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/TuiMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/TuiMacros.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/TuiManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/TuiManager.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/TuiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/TuiManager.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/TuiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/TuiUtil.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/TuiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/TuiUtil.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/tagMap/Tag_bag.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/tagMap/Tag_main.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/tagMap/Tag_map.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_recombineui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/tagMap/Tag_recombineui.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_showPhone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/tagMap/Tag_showPhone.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/tagMap/Tag_store.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tagMap/Tag_welcome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/tagMap/Tag_welcome.h -------------------------------------------------------------------------------- /HelloTuiCpp/Classes/tui/tuiconsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Classes/tui/tuiconsts.h -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/bagui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/bag/bagui.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/bagui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/bag/bagui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/btn_grid_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/bag/btn_grid_disable.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/btn_grid_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/bag/btn_grid_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/btn_grid_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/bag/btn_grid_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/gv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/bag/gv_bag.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/pv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/bag/pv_bag.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/bag/tbl_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/bag/tbl_bag.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/fonts/Arial.ttf -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/i18n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/i18n.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/anim_coin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/anim_coin.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/anim_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/anim_coin.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/armature_boss1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/armature_boss1.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/armature_boss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/armature_boss1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/armature_boss1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/armature_boss1.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/btn_green_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/btn_green_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/btn_green_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/btn_green_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/btn_ok_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/btn_ok_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/btn_ok_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/btn_ok_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_disable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ckb_test_disable1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_disable2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ckb_test_disable2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_normal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ckb_test_normal1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_normal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ckb_test_normal2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ckb_test_select1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ckb_test_select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ckb_test_select2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ctlv_left_baseboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ctlv_left_baseboard.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ctlv_left_joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ctlv_left_joystick.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/img9_boxbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/dialog/img9_boxbg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/labAtlas_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/dialog/labAtlas_num.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/dialog/prog_hp_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/dialog/prog_hp_bg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/edit_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/edit_login.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/img_guidefinger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/img_guidefinger.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/img_mainbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/img_mainbg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/mainui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/mainui.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/mainui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/mainui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_lnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/numStep_test_lnomal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_rnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/numStep_test_rnomal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/numStep_test_stepbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/numStep_test_stepbg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ptl_flower.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ptl_flower.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/ptl_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/ptl_flower.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/tgv_test_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/tgv_test_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/main/tgv_test_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/main/tgv_test_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/map/img_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/map/img_icon.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/map/iso-test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/map/iso-test2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/map/iso-test2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/map/iso-test2.tmx -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/map/ortho-test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/map/ortho-test1.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/map/ortho-test1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/map/ortho-test1.tmx -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/gpv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/recombine/gpv_bag.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/img_scrollview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/recombine/img_scrollview.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/recombineui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/recombine/recombineui.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/recombine/recombineui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/recombine/recombineui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/showphone/img9_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/showphone/img9_empty.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/showphone/img_note3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/showphone/img_note3.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/showphone/showphoneui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/showphone/showphoneui.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/showphone/showphoneui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/showphone/showphoneui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/armBtn_test2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/armBtn_test2.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/armBtn_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/armBtn_test2.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/armBtn_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/armBtn_test2.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/btn_pay_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/btn_pay_disable.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/btn_pay_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/btn_pay_normal.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/btn_pay_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/btn_pay_select.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/img_itembg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/img_itembg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/labBmf_test.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/labBmf_test.fnt -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/labBmf_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/labBmf_test.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/storeui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/storeui.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/store/storeui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/store/storeui.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/tui/tui_bag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/tui/tui_bag.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/tui/tui_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/tui/tui_main.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/tui/tui_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/tui/tui_map.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/tui/tui_recombineui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/tui/tui_recombineui.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/tui/tui_showPhone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/tui/tui_showPhone.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/tui/tui_store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/tui/tui_store.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/tui/tui_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/tui/tui_welcome.xml -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/welcome/img9_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/welcome/img9_bg.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/welcome/img_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/welcome/img_logo.png -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/welcome/welcomeui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/welcome/welcomeui.plist -------------------------------------------------------------------------------- /HelloTuiCpp/Resources/welcome/welcomeui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/Resources/welcome/welcomeui.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/.gitignore -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /jniLibs 3 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/app/build.gradle -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/app/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/app/jni/Android.mk -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/build-cfg.json -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/build.gradle -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/gradle.properties -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/gradlew -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/gradlew.bat -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android-studio/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android-studio/settings.gradle -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/.classpath -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/.cproject -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/.project -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/AndroidManifest.xml -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/ant.properties -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/build-cfg.json -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/build.xml -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/build_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/build_native.py -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/jni/hellocpp/main.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/local.properties -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/proguard-project.txt -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/project.properties -------------------------------------------------------------------------------- /HelloTuiCpp/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.android/res/values/strings.xml -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/.DS_Store -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/AppController.h -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/AppController.mm -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/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/HEAD/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/HEAD/HelloTuiCpp/proj.ios_mac/ios/Default-736h@3x.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-180.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Icon-87.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/Prefix.pch -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/RootViewController.h -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/RootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/RootViewController.mm -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/mac/Prefix.pch -------------------------------------------------------------------------------- /HelloTuiCpp/proj.ios_mac/mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.ios_mac/mac/main.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.linux/main.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/App/App.xaml -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/App/App.xaml.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/App/App.xaml.h -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/App/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/HelloTuiCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/App/HelloTuiCpp.vcxproj -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/App/Package.appxmanifest -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/App/pch.h -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/App/resources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/App/resources.props -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win10/HelloTuiCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win10/HelloTuiCpp.sln -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/HelloCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/HelloCpp.sln -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/HelloCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/HelloCpp.vcxproj -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/HelloCpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/HelloCpp.vcxproj.filters -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/HelloCpp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/HelloCpp.vcxproj.user -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/build-cfg.json -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/game.rc -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/main.cpp -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/main.h -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/res/game.ico -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win32/resource.h -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Shared/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/App.Shared/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win8.1-universal/App.Shared/pch.h -------------------------------------------------------------------------------- /HelloTuiCpp/proj.win8.1-universal/HelloTuiCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/proj.win8.1-universal/HelloTuiCpp.sln -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/bag.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/场景/bag.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/main.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/场景/main.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/map.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/场景/map.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/recombineui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/场景/recombineui.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/showPhone.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/场景/showPhone.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/store.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/场景/store.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/tuiconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/场景/tuiconfig.xml -------------------------------------------------------------------------------- /HelloTuiCpp/素材/场景/welcome.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/场景/welcome.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/骨骼/armBtn_test2.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/骨骼/armBtn_test2.fla -------------------------------------------------------------------------------- /HelloTuiCpp/素材/骨骼/armature_boss1.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiCpp/素材/骨骼/armature_boss1.fla -------------------------------------------------------------------------------- /HelloTuiLua/.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/.cocos-project.json -------------------------------------------------------------------------------- /HelloTuiLua/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/.project -------------------------------------------------------------------------------- /HelloTuiLua/.settings/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/.settings/version.json -------------------------------------------------------------------------------- /HelloTuiLua/AudioEngine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/AudioEngine.lua -------------------------------------------------------------------------------- /HelloTuiLua/CCBReaderLoad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/CCBReaderLoad.lua -------------------------------------------------------------------------------- /HelloTuiLua/CocoStudio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/CocoStudio.lua -------------------------------------------------------------------------------- /HelloTuiLua/Cocos2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/Cocos2d.lua -------------------------------------------------------------------------------- /HelloTuiLua/Cocos2dConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/Cocos2dConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/Deprecated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/Deprecated.lua -------------------------------------------------------------------------------- /HelloTuiLua/DeprecatedClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/DeprecatedClass.lua -------------------------------------------------------------------------------- /HelloTuiLua/DeprecatedEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/DeprecatedEnum.lua -------------------------------------------------------------------------------- /HelloTuiLua/DeprecatedOpenglEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/DeprecatedOpenglEnum.lua -------------------------------------------------------------------------------- /HelloTuiLua/DrawPrimitives.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/DrawPrimitives.lua -------------------------------------------------------------------------------- /HelloTuiLua/GuiConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/GuiConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/Opengl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/Opengl.lua -------------------------------------------------------------------------------- /HelloTuiLua/OpenglConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/OpenglConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/StudioConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/StudioConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/bitExtend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/bitExtend.lua -------------------------------------------------------------------------------- /HelloTuiLua/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/config.json -------------------------------------------------------------------------------- /HelloTuiLua/experimentalConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/experimentalConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/extern.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/extern.lua -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/frameworks/CMakeLists.txt -------------------------------------------------------------------------------- /HelloTuiLua/frameworks/runtime-src/proj.android-studio/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /jniLibs 3 | -------------------------------------------------------------------------------- /HelloTuiLua/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/json.lua -------------------------------------------------------------------------------- /HelloTuiLua/luaj.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/luaj.lua -------------------------------------------------------------------------------- /HelloTuiLua/luaoc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/luaoc.lua -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/bagui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/bag/bagui.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/bagui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/bag/bagui.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/btn_grid_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/bag/btn_grid_disable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/btn_grid_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/bag/btn_grid_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/btn_grid_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/bag/btn_grid_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/gv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/bag/gv_bag.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/pv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/bag/pv_bag.png -------------------------------------------------------------------------------- /HelloTuiLua/res/bag/tbl_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/bag/tbl_bag.png -------------------------------------------------------------------------------- /HelloTuiLua/res/effect/movie_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/effect/movie_test.json -------------------------------------------------------------------------------- /HelloTuiLua/res/effect/movie_test.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/effect/movie_test.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/effect/movie_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/effect/movie_test.png -------------------------------------------------------------------------------- /HelloTuiLua/res/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/fonts/Arial.ttf -------------------------------------------------------------------------------- /HelloTuiLua/res/i18n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/i18n.xml -------------------------------------------------------------------------------- /HelloTuiLua/res/main/AudioEngine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/AudioEngine.lua -------------------------------------------------------------------------------- /HelloTuiLua/res/main/CCBReaderLoad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/CCBReaderLoad.lua -------------------------------------------------------------------------------- /HelloTuiLua/res/main/CocoStudio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/CocoStudio.lua -------------------------------------------------------------------------------- /HelloTuiLua/res/main/Cocos2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/Cocos2d.lua -------------------------------------------------------------------------------- /HelloTuiLua/res/main/anim_coin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/anim_coin.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/main/anim_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/anim_coin.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/armBtn_test2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/armBtn_test2.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/main/armBtn_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/armBtn_test2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/armBtn_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/armBtn_test2.xml -------------------------------------------------------------------------------- /HelloTuiLua/res/main/armature_boss1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/armature_boss1.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/main/armature_boss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/armature_boss1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/armature_boss1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/armature_boss1.xml -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_green_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/btn_green_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_green_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/btn_green_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_ok_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/btn_ok_disable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_ok_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/btn_ok_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_ok_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/btn_ok_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_pay_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/btn_pay_disable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_pay_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/btn_pay_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/btn_pay_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/btn_pay_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_disable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ckb_test_disable1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_disable2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ckb_test_disable2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_normal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ckb_test_normal1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_normal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ckb_test_normal2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ckb_test_select1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ckb_test_select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ckb_test_select2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ctlv_left_baseboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ctlv_left_baseboard.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ctlv_left_joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ctlv_left_joystick.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/btn_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/btn_close_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/btn_close_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/btn_close_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/img9_boxbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/img9_boxbg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/labAtlas_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/labAtlas_num.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/labBmf_test.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/labBmf_test.fnt -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/labBmf_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/labBmf_test.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/prog_hp_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/prog_hp_bg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/prog_hp_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/prog_hp_progress.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/slider_test_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/slider_test_bg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/dialog/slider_test_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/dialog/slider_test_thumb.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/edit_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/edit_login.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/extern.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/extern.lua -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/img_bg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_itembg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/img_itembg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_listgoodsmedicine2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/img_listgoodsmedicine2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_listgoodsmedicine3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/img_listgoodsmedicine3.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/img_listgoodsprop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/img_listgoodsprop1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/json.lua -------------------------------------------------------------------------------- /HelloTuiLua/res/main/list_goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/list_goods.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/mainui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/mainui.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/main/mainui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/mainui.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_ldisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/numStep_test_ldisable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_lnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/numStep_test_lnomal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_lselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/numStep_test_lselect.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_rdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/numStep_test_rdisable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_rnomal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/numStep_test_rnomal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_rselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/numStep_test_rselect.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/numStep_test_stepbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/numStep_test_stepbg.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ptl_flower.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ptl_flower.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/main/ptl_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/ptl_flower.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/tgv_option_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/tgv_option_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/main/tgv_option_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/main/tgv_option_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/map/img_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/map/img_icon.png -------------------------------------------------------------------------------- /HelloTuiLua/res/map/iso-test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/map/iso-test2.png -------------------------------------------------------------------------------- /HelloTuiLua/res/map/iso-test2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/map/iso-test2.tmx -------------------------------------------------------------------------------- /HelloTuiLua/res/map/ortho-test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/map/ortho-test1.png -------------------------------------------------------------------------------- /HelloTuiLua/res/map/ortho-test1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/map/ortho-test1.tmx -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/btn_grid_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/recombine/btn_grid_disable.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/btn_grid_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/recombine/btn_grid_normal.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/btn_grid_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/recombine/btn_grid_select.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/gpv_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/recombine/gpv_bag.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/img_scrollview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/recombine/img_scrollview.png -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/recombineui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/recombine/recombineui.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/recombine/recombineui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/recombine/recombineui.png -------------------------------------------------------------------------------- /HelloTuiLua/res/showphone/img9_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/showphone/img9_empty.png -------------------------------------------------------------------------------- /HelloTuiLua/res/showphone/img_note3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/showphone/img_note3.png -------------------------------------------------------------------------------- /HelloTuiLua/res/showphone/showphoneui.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/showphone/showphoneui.plist -------------------------------------------------------------------------------- /HelloTuiLua/res/showphone/showphoneui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/showphone/showphoneui.png -------------------------------------------------------------------------------- /HelloTuiLua/res/tui/tui_bagui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/tui/tui_bagui.xml -------------------------------------------------------------------------------- /HelloTuiLua/res/tui/tui_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/tui/tui_map.xml -------------------------------------------------------------------------------- /HelloTuiLua/res/tui/tui_recombineui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/tui/tui_recombineui.xml -------------------------------------------------------------------------------- /HelloTuiLua/res/tui/tui_showphoneui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/tui/tui_showphoneui.xml -------------------------------------------------------------------------------- /HelloTuiLua/res/tui/tui_welcomeui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/tui/tui_welcomeui.lua -------------------------------------------------------------------------------- /HelloTuiLua/res/tui/tui_welcomeui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/res/tui/tui_welcomeui.xml -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/OpenAL32.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/glew32.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/iconv.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/libcurl.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libmpg123.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/libmpg123.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libogg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/libogg.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/libtiff.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libvorbis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/libvorbis.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/libvorbisfile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/libvorbisfile.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/lua51.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/sqlite3.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/websockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/websockets.dll -------------------------------------------------------------------------------- /HelloTuiLua/runtime/win32/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/runtime/win32/zlib1.dll -------------------------------------------------------------------------------- /HelloTuiLua/src/AudioEngine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/AudioEngine.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/CCBReaderLoad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/CCBReaderLoad.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/CocoStudio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/CocoStudio.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/Cocos2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/Cocos2d.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/Cocos2dConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/Cocos2dConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/Deprecated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/Deprecated.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/DeprecatedClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/DeprecatedClass.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/DeprecatedEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/DeprecatedEnum.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/DeprecatedOpenglEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/DeprecatedOpenglEnum.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/DrawPrimitives.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/DrawPrimitives.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/GuiConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/GuiConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/Opengl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/Opengl.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/OpenglConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/OpenglConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/StudioConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/StudioConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/bag/bagui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/bag/bagui.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/bitExtend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/bitExtend.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/config.json -------------------------------------------------------------------------------- /HelloTuiLua/src/experimentalConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/experimentalConstants.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/extern.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/extern.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/json.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/luaj.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/luaj.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/luaoc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/luaoc.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/main.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/map/mapui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/map/mapui.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/containers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/containers.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/decoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/decoder.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/descriptor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/descriptor.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/encoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/encoder.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/listener.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/listener.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/protobuf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/protobuf.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/text_format.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/text_format.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/type_checkers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/type_checkers.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/runtime/wire_format.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/proto/runtime/wire_format.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/proto/test_pb.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HelloTuiLua/src/recombine/recombineui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/recombine/recombineui.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/showphone/showphoneui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/showphone/showphoneui.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_bagui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/tagMap/Tag_bagui.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_map.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/tagMap/Tag_map.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_recombineui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/tagMap/Tag_recombineui.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_showphoneui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/tagMap/Tag_showphoneui.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/tagMap/Tag_welcomeui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/tagMap/Tag_welcomeui.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/welcome/dialog/msgBox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/welcome/dialog/msgBox.lua -------------------------------------------------------------------------------- /HelloTuiLua/src/welcome/welcomeui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/src/welcome/welcomeui.lua -------------------------------------------------------------------------------- /HelloTuiLua/素材/armBtn_test2.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/素材/armBtn_test2.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/bagui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/素材/bagui.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/map.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/素材/map.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/recombineui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/素材/recombineui.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/showphoneui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/素材/showphoneui.fla -------------------------------------------------------------------------------- /HelloTuiLua/素材/tuiconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/素材/tuiconfig.xml -------------------------------------------------------------------------------- /HelloTuiLua/素材/welcomeui.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/HelloTuiLua/素材/welcomeui.fla -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/README.md -------------------------------------------------------------------------------- /dragonbones/DragonBones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/DragonBones.h -------------------------------------------------------------------------------- /dragonbones/DragonBonesHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/DragonBonesHeaders.h -------------------------------------------------------------------------------- /dragonbones/animation/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/Animation.cpp -------------------------------------------------------------------------------- /dragonbones/animation/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/Animation.h -------------------------------------------------------------------------------- /dragonbones/animation/AnimationState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/AnimationState.cpp -------------------------------------------------------------------------------- /dragonbones/animation/AnimationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/AnimationState.h -------------------------------------------------------------------------------- /dragonbones/animation/IAnimatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/IAnimatable.h -------------------------------------------------------------------------------- /dragonbones/animation/TimelineState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/TimelineState.cpp -------------------------------------------------------------------------------- /dragonbones/animation/TimelineState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/TimelineState.h -------------------------------------------------------------------------------- /dragonbones/animation/WorldClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/WorldClock.cpp -------------------------------------------------------------------------------- /dragonbones/animation/WorldClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/animation/WorldClock.h -------------------------------------------------------------------------------- /dragonbones/core/Armature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/core/Armature.cpp -------------------------------------------------------------------------------- /dragonbones/core/Armature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/core/Armature.h -------------------------------------------------------------------------------- /dragonbones/core/Bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/core/Bone.cpp -------------------------------------------------------------------------------- /dragonbones/core/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/core/Bone.h -------------------------------------------------------------------------------- /dragonbones/core/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/core/Object.cpp -------------------------------------------------------------------------------- /dragonbones/core/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/core/Object.h -------------------------------------------------------------------------------- /dragonbones/core/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/core/Slot.cpp -------------------------------------------------------------------------------- /dragonbones/core/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/core/Slot.h -------------------------------------------------------------------------------- /dragonbones/events/EventData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/events/EventData.cpp -------------------------------------------------------------------------------- /dragonbones/events/EventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/events/EventData.h -------------------------------------------------------------------------------- /dragonbones/events/IEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/events/IEventDispatcher.h -------------------------------------------------------------------------------- /dragonbones/factories/BaseFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/factories/BaseFactory.cpp -------------------------------------------------------------------------------- /dragonbones/factories/BaseFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/factories/BaseFactory.h -------------------------------------------------------------------------------- /dragonbones/geoms/ColorTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/geoms/ColorTransform.h -------------------------------------------------------------------------------- /dragonbones/geoms/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/geoms/Matrix.h -------------------------------------------------------------------------------- /dragonbones/geoms/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/geoms/Point.h -------------------------------------------------------------------------------- /dragonbones/geoms/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/geoms/Rectangle.h -------------------------------------------------------------------------------- /dragonbones/geoms/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/geoms/Transform.h -------------------------------------------------------------------------------- /dragonbones/lua_dragonbones_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/lua_dragonbones_auto.cpp -------------------------------------------------------------------------------- /dragonbones/lua_dragonbones_auto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/lua_dragonbones_auto.hpp -------------------------------------------------------------------------------- /dragonbones/objects/AnimationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/AnimationData.h -------------------------------------------------------------------------------- /dragonbones/objects/ArmatureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/ArmatureData.h -------------------------------------------------------------------------------- /dragonbones/objects/BoneData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/BoneData.h -------------------------------------------------------------------------------- /dragonbones/objects/DisplayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/DisplayData.h -------------------------------------------------------------------------------- /dragonbones/objects/DragonBonesData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/DragonBonesData.h -------------------------------------------------------------------------------- /dragonbones/objects/EllipseData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/EllipseData.h -------------------------------------------------------------------------------- /dragonbones/objects/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/Frame.h -------------------------------------------------------------------------------- /dragonbones/objects/IAreaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/IAreaData.h -------------------------------------------------------------------------------- /dragonbones/objects/RectangleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/RectangleData.h -------------------------------------------------------------------------------- /dragonbones/objects/SkinData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/SkinData.h -------------------------------------------------------------------------------- /dragonbones/objects/SlotData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/SlotData.h -------------------------------------------------------------------------------- /dragonbones/objects/Timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/Timeline.h -------------------------------------------------------------------------------- /dragonbones/objects/TransformFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/TransformFrame.h -------------------------------------------------------------------------------- /dragonbones/objects/TransformTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/objects/TransformTimeline.h -------------------------------------------------------------------------------- /dragonbones/parsers/BaseDataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/parsers/BaseDataParser.cpp -------------------------------------------------------------------------------- /dragonbones/parsers/BaseDataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/parsers/BaseDataParser.h -------------------------------------------------------------------------------- /dragonbones/parsers/ConstValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/parsers/ConstValues.cpp -------------------------------------------------------------------------------- /dragonbones/parsers/ConstValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/parsers/ConstValues.h -------------------------------------------------------------------------------- /dragonbones/parsers/XMLDataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/parsers/XMLDataParser.cpp -------------------------------------------------------------------------------- /dragonbones/parsers/XMLDataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/parsers/XMLDataParser.h -------------------------------------------------------------------------------- /dragonbones/parsers/dbtinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/parsers/dbtinyxml2.cpp -------------------------------------------------------------------------------- /dragonbones/parsers/dbtinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/parsers/dbtinyxml2.h -------------------------------------------------------------------------------- /dragonbones/renderer/cocos2d-x-3.2/DBCCArmature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/renderer/cocos2d-x-3.2/DBCCArmature.h -------------------------------------------------------------------------------- /dragonbones/renderer/cocos2d-x-3.2/DBCCFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/renderer/cocos2d-x-3.2/DBCCFactory.cpp -------------------------------------------------------------------------------- /dragonbones/renderer/cocos2d-x-3.2/DBCCFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/renderer/cocos2d-x-3.2/DBCCFactory.h -------------------------------------------------------------------------------- /dragonbones/renderer/cocos2d-x-3.2/DBCCSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/renderer/cocos2d-x-3.2/DBCCSlot.cpp -------------------------------------------------------------------------------- /dragonbones/renderer/cocos2d-x-3.2/DBCCSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/renderer/cocos2d-x-3.2/DBCCSlot.h -------------------------------------------------------------------------------- /dragonbones/renderer/cocos2d-x-3.2/dbccMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/renderer/cocos2d-x-3.2/dbccMacro.h -------------------------------------------------------------------------------- /dragonbones/textures/ITextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/textures/ITextureAtlas.h -------------------------------------------------------------------------------- /dragonbones/textures/TextureAtlasData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/textures/TextureAtlasData.h -------------------------------------------------------------------------------- /dragonbones/textures/TextureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/dragonbones/textures/TextureData.h -------------------------------------------------------------------------------- /flash/DragonBonesDesignPanel.zxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/flash/DragonBonesDesignPanel.zxp -------------------------------------------------------------------------------- /flash/Template.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/flash/Template.fla -------------------------------------------------------------------------------- /flash/TuiEditor_Export.jsfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/flash/TuiEditor_Export.jsfl -------------------------------------------------------------------------------- /flash/TuiMakeImg9.jsfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/flash/TuiMakeImg9.jsfl -------------------------------------------------------------------------------- /picture/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/picture/pic1.png -------------------------------------------------------------------------------- /picture/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/picture/pic2.png -------------------------------------------------------------------------------- /rapidXml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/rapidXml/rapidxml.hpp -------------------------------------------------------------------------------- /rapidXml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/rapidXml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /rapidXml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/rapidXml/rapidxml_print.hpp -------------------------------------------------------------------------------- /rapidXml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LingJiJian/Tui-x/HEAD/rapidXml/rapidxml_utils.hpp --------------------------------------------------------------------------------