上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 问题: lua c api未提供获取lua函数到c的api,lua_tofunction获取的是c函数,而不是lua函数,故,用int类型作为lua函数的句柄,当需要调用lua函数时,在进行转换。三张表: 1、存 句柄 -> lua函数的映射 2、存 lua函数 -> 句柄的反向映射 3、存 句柄 阅读全文
posted @ 2019-03-21 12:20 lcinx 阅读(1591) 评论(0) 推荐(0) 编辑
摘要: 工具:AngelCode 的 Bitmap Font Generator。把需要用到的文字写到一个txt,注意编码为Unicode。接着,在工具里 Edit->select chars from file选择刚才新建的txt文件。然后。。。之后的没啥细节,随意搞吧。 阅读全文
posted @ 2019-03-21 12:19 lcinx 阅读(381) 评论(0) 推荐(0) 编辑
摘要: Unable to open kernel device "\\.\vmci": 系统找不到指定的文件. Did you reboot after installing VMware Workstation?Module DevicePowerOn power on failed.解决方法:对虚拟机 阅读全文
posted @ 2019-03-21 12:19 lcinx 阅读(447) 评论(0) 推荐(0) 编辑
摘要: tolua++的包装会限制参数类型,故用类型转换,如下:假设layerobj 为CCLayer类型,则local nodeobj = tolua.cast(layerobj, "CCNode")用法:转换后的对象 = tolua.cast(原对象, "要转换到的类型") 阅读全文
posted @ 2019-03-21 12:18 lcinx 阅读(436) 评论(0) 推荐(0) 编辑
摘要: /data/data/app的包路径(例如:com.xxx.xxx)/lib/本地代码.so文件。注:一般app的包路径文件夹中只有lib目录。/data/app/app的包名-版本代码.apk一般而言,app的资源目录assets下的文件,就在.apk文件中,系统不会解压缩。ps.专门把手机搞ro 阅读全文
posted @ 2019-03-21 12:18 lcinx 阅读(1509) 评论(0) 推荐(0) 编辑
摘要: 8MB的xml文件,一行30个属性,有1W多行注:以下数据仅作参考,与机器等环境有关。tinyxml:1830msrapidxml:130mspugixml:110ms从接口上来讲,tinyxml、pugixml很近似从名气来讲,rapidxml貌似是boost选用的,应该更出名吧。由于之前一直使用 阅读全文
posted @ 2019-03-21 12:18 lcinx 阅读(1243) 评论(0) 推荐(0) 编辑
摘要: 需求(CG复杂剧情): 对指定面板(面板继承自CCLayer)设置指定的效果,例如:淡入淡出、闪烁等 此时对于淡入淡出,需要递归遍历面板的子对象,并当其子对象为CCRGBAProtocol的子类时,增加动作。需求中,某些情况图片无纹理,此时。。。结果是这样的: 若无效果,则看起来是正常的。当淡入淡出 阅读全文
posted @ 2019-03-21 12:17 lcinx 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 转自:这里11.5 如何获得Linux命令的源代码 Q: Linux中如何知道ifconfig属于哪个包 A: # which ifconfig /sbin/ifconfig # rpm -qf /sbin/ifconfig net-tools-1.51-3 <-- rpm包名字 # rpm -qi 阅读全文
posted @ 2019-03-21 12:17 lcinx 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 一、横屏、竖屏设置(以及基于传感器的) AndroidManifest.xml文件中, 1、不论任何情况的: screenOrientation="landscape" 为横屏 screenOrientation="portrait"为竖屏 2、基于传感器的 screenOrientation="s 阅读全文
posted @ 2019-03-21 12:16 lcinx 阅读(310) 评论(0) 推荐(0) 编辑
摘要: web服务器中,无index.html、index.php等文件时,访问此url会导致浏览此目录,禁止的方法如下:打开httpd.conf,找到 Options Indexes FollowSymLinks这句,改为 Options FollowSymLinks重点是移除 Indexes 阅读全文
posted @ 2019-03-21 12:16 lcinx 阅读(288) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页