今天測試了oreganno伺服器
伺服器方需要安裝mysql,需要修改根目錄下的config.xml
(2)例子檔案的結構
首先例子中的目錄結構是
example_as 目錄
oregano_as目錄
example.fla flash場景檔案
config.xml 配置檔案
首先要配置config.xml檔案
包括伺服器位址 ,資料庫伺服器名字
(3)example_as的登陸**
首先建立的單個實體
org.omus.session = new org.omus._session();
org.omus.clazz = new org.omus._class();
org.omus.log = new org.omus._log(org.omus._log.client_dev);
建立session實體的時候,就建立了socket
org.omus._session = function ()
在登陸頁面首先呼叫
org.omus._session.prototype.init = function (vers,addr,login,recon)
var argcheck = [[vers,"string",true],[addr,"string",true],[login,"number",true],[recon,"number",false]];
if (!org.omus.clazz.checkarguments("org.omus.session.init",argcheck)) return;
this.reset();
this.versionid = vers;
this.address = addr;
this.loginport = login;
this.reconnectport = recon;
}點了註冊按鈕,進入login.connect,然後呼叫
org.omus.session.register(username,password,"");
否則進入登陸函式
org.omus._session.prototype.login = function (user,pwd)
登陸函式呼叫連線函式
org.omus._session.prototype.connect = function (addr,port)
if (typeof(addr) != "string" || typeof(port) != "number")
var ok = this.socket.connect(addr,port);
if (!ok)
}
git 的使用(多人協作)
1 git init 初始化git 倉庫 2 git clone git github.com genwozou ch.git clone 專案 3 cd 倉庫名 進入到倉庫目錄 4 git checkout b fz 建立自己的分支 5 git add 新增到本地倉庫 6 git commit m...
關於 Git 多人協作的流程
如今的專案,規模越來越大,功能越來越多,需要有乙個團隊進行開發。如果有多個開發人員共同開發乙個專案,如何進行協作的呢。git提供了乙個非常好的解決方案 多人協作開發。git常用命令 git init 初始化倉庫 git remote add origin 與遠端倉庫建立連線 git clone 轉殖...
Git對gitee的多人協作
在工作空間根目錄下,開啟git bash here 轉殖專案到自己的資料夾中 git clone xx 一 進行全域性設定,建立gitee賬戶,建立乙個自己 的倉庫,名字任意 輸入名字之後直接建立 二 在gitbashhere中輸入圖中的命令列 設定完畢之後,對專案進行修改,修改完畢之後,輸入下列命...