顯示具有 iOS 標籤的文章。 顯示所有文章
顯示具有 iOS 標籤的文章。 顯示所有文章

2016年10月18日 星期二

[Tools] Tools for Cocos2dX

Effects for Cocos2dx
1. EffectNodes for Cocos2dx

Play flash files in Cocos2dx
1. cocos2dx-swf
2. Cocos2dxUsefulClasses
3. cocos2dx-extensions

Ads: Chartboost
1. Chartboost-x

Ads: Vungle
1. Vungle - Android SDK
2. Vungle - iOS SDK

Ads: AdColony
1. AdColony - Android SDK
2. AdColony - iOS SDK

[GameServer] Game Server for Cocos2Dx

Game Server

1. ScutGame
2. NoahGameFrame
3. breeze
4. gce
5. Quick-Cocos2dx-Community

2016年6月12日 星期日

[SQLITE] sqlite3 encryption/decryption

SQLite3 Simple works

sqlite3 commands.
http://www.runoob.com/sqlite/sqlite-syntax.html

SQLite Manager on Firefox. (Of course, it's free.)
https://addons.mozilla.org/zh-tw/firefox/addon/sqlite-manager/
https://dotblogs.com.tw/toysboy21/2014/04/21/144813

Android SQLite Database Tutorial.
http://www.tutorialspoint.com/android/android_sqlite_database.htm

SQLite for iOS.
http://pro.ctlok.com/2010/07/iphone-ipad-with-sqlite.html
https://www.facebook.com/teacherchi/posts/359338594127416

SQLite for Android.
https://github.com/sqlcipher/android-database-sqlcipher

CopyFiles.
http://www.iforce2d.net/cc2dxres/fileutils

SQLite Manager
http://www.sqlabs.com/sqlitemanager.php

SQLite3 Encryption/Decryption

Types of sqlite3 encryption/decryption

sqlcipher_export() to make plain text database to be encrypted.
https://www.zetetic.net/sqlcipher/sqlcipher-api/#sqlcipher_export

SQL Cipher is free but need some works.
Here is SQL Cipher official web site:

sqlcipher gits:

Make Sqlcipher available on iOS and Android.
To Make Sqlcipher available on iOS.

To Make Sqlcipher available on Android.

Reference web sites:
My Solution:
1. Use SQLiteManager to encrypt the database.


2. To decrypt the database in code.

2014年1月1日 星期三

[Cocos2Dx] Create a new project

How to create a new game

Cocos2d-x 2.2
$ cd cocos2d-x
$ ./create-multi-platform-projects.py -p MyGame -k com.MyCompany.AwesomeGame -l cpp

Cocos2d-x 3.0alpha1
$ cd cocos2d-x-3.0alpha1/tools/project-creator
$ ./create_project.py
Usage: create_project.py -p -k -l
Sample: create_project.py -p MyGame -k com.MyCompany.AwesomeGame -l javascript


2013年12月26日 星期四