摘要: 你可能遇到 from google.protobuf import descriptor 这样的错误 1、这个工具依赖 Python 的 protobuf 生成 2、protobuf 的源代码根目录下有 Python 的目录 3、运行前先编译 protoc 在 src 目录下,或者将之前编译好的拷贝 阅读全文
posted @ 2016-07-28 18:33 tomren 阅读(1139) 评论(0) 推荐(0) 编辑
摘要: 1、安装AndroidStudio 2、安装JDK 3、安装NDK 4、编译Cocos2dx工程,到 build 打开工程,用的都是动态库。 Cocos2dx自动生成的项目中,Additional Dependencies 里看不到引用的 Lib。 在 Command Line 可以看到引用的库,如 阅读全文
posted @ 2016-07-08 18:35 tomren 阅读(1289) 评论(0) 推荐(0) 编辑
摘要: 一、场景物件遍历所有物件旋转、位移,缩放 在重新摆放物件时,如果有光照贴图,需要恢复贴图的索引信息。 二、场景烘焙后会生成贴图和对应的LightmapSnapshot.asset文件 LightmapSnapshot.asset 只在 editor 模式下有效,是不能导出 assetbundle ... 阅读全文
posted @ 2015-08-06 12:16 tomren 阅读(2253) 评论(0) 推荐(0) 编辑
摘要: right-handed left-handed 可以通过交换另外两个轴获得,其实是翻转了180度。这两种方法只是用来定义当确定一个平面时,哪个方向才是正的。 阅读全文
posted @ 2014-09-12 02:00 tomren 阅读(109) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get install apache2sudo apt-get install php5sudo apt-get install php5-mcrypt需要开启 mod_rewrite 模块修改 apache2 的配置文件 /etc/apache2/apache2.conf为 la... 阅读全文
posted @ 2014-08-03 23:08 tomren 阅读(213) 评论(0) 推荐(0) 编辑
摘要: #ifndef COLORLOG_H#define COLORLOG_H#include <stdio.h>#include <time.h>#ifdef WIN32#include "windows.h"#endif//#############################ifdef WIN32//============================#define FC_BLACK 0x0000#define FC_DARK_BLUE 0x0001#define FC_DARK_GREEN 0x0002#define FC_DARK_CRA 阅读全文
posted @ 2012-02-29 12:05 tomren 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 只在Linux下查看了malloc的使用情况:GCC版本4.6.1libc-dev 3.0.0-14.23//============================================================libc中有非线程安全/线程安全两个版本malloc函数下面的链接对此有描述,几年前的版本可能是这样的:通过-pthreads 选项可以明确指定在链接时是链接非线程安全的版本还是线程安全的版本。http://stackoverflow.com/questions/987444/about-thread-safety-in-malloc-and-free//====== 阅读全文
posted @ 2011-12-24 19:13 tomren 阅读(9989) 评论(0) 推荐(1) 编辑
摘要: 环境:ubuntu11.10编译器:hisiv200的gcc版本4.4.1代码:valgrind版本3.7//============================================================hisiv200 的工具目录在/home/tomren/hisi-linux注意设置工具链的时候使用绝对路径!不要使用相对路径,我开始使用~/hisi-linux/...会提示找不到编译器。(我当时没注意它找不到编译器的提示,因为我反复执行单条命令是可以编译成功文件的)命令如下:CC='/home/tomren/hisi-linux/x86-arm/arm-h 阅读全文
posted @ 2011-12-19 19:49 tomren 阅读(1821) 评论(1) 推荐(0) 编辑
摘要: 1、Linux内核错误的输出: 在终端上看不到,需要查看/var/log/messages2、如果找不到modprobe命令 使用whereis modprobe,使用路径/sbin/modprobe3、netconsole的发送看不到 不要加目标机器的MAC地址 我反复对过机器的MAC地址没错误,但是在虚拟机上发送的消息在windows上就是收不到,后来去掉MAC地址就收到了。4、没在当前目录下生成core文件 检查/proc/sys/kernel/core_pattern 文件 将路径直接设置为 core5、检查内存操作的问题 env MALLOC=CHECK_=1 ./tom 阅读全文
posted @ 2011-12-08 12:40 tomren 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 获得游戏数据块 1 -- ---------------------------- 2 -- Procedure structure for `GetGameBlockData` 3 -- ---------------------------- 4 DROP PROCEDURE IF EXISTS `GetGameBlockData`; 5 DELIMITER ;; 6 CREATE PROCEDURE `GetGameBlockData`(IN `inTable` varchar(64), IN `inID` bigint unsigned) 7 BEGIN 8 SET @RowC... 阅读全文
posted @ 2011-11-08 09:33 tomren 阅读(287) 评论(0) 推荐(0) 编辑