网站综合信息 www.lifeurl.com
    • 标题:
    • 沉心如水-Game&Life 
    • 关键字:
    • cocos2d x 开源游戏 iOS 游戏机制 
    • 描述:
    • Game&Life 
    • 域名信息
    • 域名年龄:15年5个月11天  注册日期:2010年01月04日  到期时间:2017年01月04日
      注册商:GODADDY.COM, LLC 
    • 备案信息
    • 备案号: 
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • 百度
    • 0  
    • 11  
    • 快照:无首页快照  
    • Google
    • 0  
    • 0  
    • pr:0  
    • 雅虎
    • 0  
    •  
    •  
    • 搜搜
    • 0  
    •  
    •  
    • 搜狗
    • 0  
    •  
    • 评级:2/10  
    • 360搜索
    • 0  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • -  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    lifeurl.com

    域名年龄: 15年5个月11天
    注册时间: 2010-01-04
    到期时间: 2017-01-04
    注 册 商: GODADDY.COM, LLC

    获取时间: 2016年09月25日 06:10:00
    Domain Name: LIFEURL.COM
    Registrar: GODADDY.COM, LLC
    Sponsoring Registrar IANA ID: 146
    Whois Server: whois.godaddy.com
    Referral URL: http://www.godaddy.com
    Name Server: F1G1NS1.DNSPOD.NET
    Name Server: F1G1NS2.DNSPOD.NET
    Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
    Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
    Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
    Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
    Updated Date: 2015-10-28
    Creation Date: 2010-01-04
    Expiration Date: 2017-01-04

    >>> Last update of whois database: Sat, 2016-Sep-24 22:12:59 GMT <<<

    For more information on Whois status codes, please visit https://icann.org/epp

    Domain Name: LIFEURL.COM
    Registrar URL: http://www.godaddy.com
    Registrant Name: chengliang zhang
    Registrant Organization:
    Name Server: F1G1NS1.DNSPOD.NET
    Name Server: F1G1NS2.DNSPOD.NET
    DNSSEC: unsigned

    For complete domain details go to:
    http://who.godaddy.com/whoischeck.aspx?domain=LIFEURL.COM
    其他后缀域名
    • 顶级域名
    • 相关信息
    网站首页快照(纯文字版)
    抓取时间:2015年05月16日 05:38:16
    网址:http://www.lifeurl.com/
    标题:沉心如水-Game&Life
    关键字:cocos2d-x,开源游戏,iOS,游戏机制
    描述:Game&Life
    主体:
    沉心如水-Game&Life存档私信
    我的腾讯微博我的新浪微博小游戏推荐AS3开源大全
    wormux
    http://wormux.en.softonic.com 一块模仿百战天虫的游戏
    Warsow
    Warsow 是一款卡通风格的Doom类射击游戏。地址:http://www.warsow.net/
    yofrankie
    Yo Frankie! 是一块基于blender引擎的开源3d游戏。 地址:http://www.yofrankie.org/
    mersenne twister伪随机算法
    Mersenne Twister算法译为马特赛特旋转演算法,是伪随机数发生器之一,其主要作用是生成伪随机数。此算法是Makoto Matsumoto (松本)和Takuji Nishimura (西村)于1997年开发的,基于有限二进制字段上的矩阵线性再生。可以快速产生高质量的伪随机数,修正了古老随机数产生算法的很多缺陷。 Mersenne Twister这个名字来自周期长度通常取Mersenne质数这样一个事实。常见的有两个变种Mersenne Twister MT19937和Mersenne Twister MT19937-64。Mersenne Twister算法的原理:Mersenne...
    ios平台农场经营游戏hayday机制分析
    cocos2d-x中的事件机制
    哎呦,跟as3的一样。//发送事件
    02  CCNotificationCenter::sharedNotificationCenter()->postNotification(CLICK_TEST_MSG, (CCObject*)data);
    03   
    04  //监听事件
    05  void GameManager::initListener()
    06  {
    07      CCNotificationCenter::sharedNotificationCenter()->addObserver(this, callfuncO_selector(GameManager::onClick...
    cocos2d-x集成lua
    1 在cocos2d-x里开启luaCCLuaEngine* pEngine = CCLuaEngine::defaultEngine();
    CCScriptEngineManager::sharedManager()->setScriptEngine(pEngine);2 在cocos2d-x里执行luapEngine->addSearchPath();
    CCLuaEngine::defaultEngine()->executeScriptFile("hello.lua");3 在lua里调用cocos2d-x框架代码cocos2d-x已经把所有类使用tolua++做了绑定。在lua脚本里都可以直接调用。local visibleSize = CCDirector:sharedDirector():getVisibleSize();4 使用tolua++绑定自定义的c++类。安装环境及工具1) install lua. 
    #: make macosx
    #:make install
    2) install scons
    #:python setup.py install
    3) install tolua++
    #:scons all
    #:scons install
    4) before install tolua++, find file config_posix.py, change LIBS = ['lua', 'lualib', 'm']
    into LIBS = ['lua', 'dl', 'm']编写pkg文件1. Generating the lua<-->C bindings with tolua++
    tolua++.exe -tCocos2d -o LuaCocos2d.cpp Cocos2d.pkg
    An ant script has been provided to generate the relevant files, to do this after
    modifying the .pkg files you should use the following command in this directory:
    ant
    This will generate the bindings file, patch it to compile successfully and move it
    to the standard destination.
    2. Writing .pkg files
    1) enum keeps the same
    2) remove CC_DLL for the class defines, pay attention to multi inherites
    3) remove inline keyword for declaration and implementation
    4) remove public protect and private
    5) remove the decalration of class member variable
    6) keep static keyword
    7) remove memeber functions that declared as private or protected使用tolua++,根据pkg文件生成cpp文件。mac:
    tolua++ -o XX.cpp XX.pkg新建demoluagame.h文件,并添加tolua_XX_open()声明,命名同XX.cpp里的*_open()方法。#ifndef Demo_LuaGame_h
    #define Demo_LuaGame_h
    extern "C" {
    #include "tolua++.h"
    #include "tolua_fix.h"
    }
    TOLUA_API int  tolua_XX_open (lua_State* tolua_S);
    #endif绑定生成的cpp到cocos2d-x的lua Engine。lua_State * state = pEngine->getLuaState();
    tolua_XX_open(state);
    查看大图
    查看大图
    网易开源node.js 游戏服务器端引擎
    项目地址:https://github.com/NetEase/pomelo
    Powered by diandian
    下一页 →

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2025-06-10 22:20, Process in 0.0111 second.