05 2015 档案

摘要:C#代码:using System; namespace ConsoleApplication{ public unsafe struct TestStruct { public int x; public int y; public fixed... 阅读全文
posted @ 2015-05-19 11:19 蛮婆的老公 阅读(416) 评论(0) 推荐(0)
摘要:帧锁定算法解决游戏同步早期 RTS,XBOX360 LIVE游戏常用同步策略是什么?格斗游戏多人联机如何保证流畅性和一致性?如何才能像单机游戏一样编写网游?敬请观看《帧锁定同步算法》《帧锁定同步算法》转载请注明出处:http://www.skywind.me/blog/archives/131算法概... 阅读全文
posted @ 2015-05-14 14:07 蛮婆的老公 阅读(322) 评论(0) 推荐(0)
摘要:下面是步骤,强烈建议之前备份数据It looks like you've already rebooted but just in case, ensure the kernel recognizes the larger diskecho 1 > /sys/class/scsi_disk/0:0:... 阅读全文
posted @ 2015-05-12 16:34 蛮婆的老公 阅读(257) 评论(0) 推荐(0)
摘要:系统centos6.x 64位wget http://mirrors.163.com/centos/6/os/x86_64/Packages/lapack-devel-3.2.1-4.el6.x86_64.rpmwget http://mirrors.163.com/centos/6/os/x86_... 阅读全文
posted @ 2015-05-12 14:05 蛮婆的老公 阅读(4276) 评论(0) 推荐(0)
摘要:我抓包肤浅的分析了下LOL的网络设计。先说观察到的一些现象:A)协议基于UDPB)采用纯C/S模型(无C2C过程),C)99% 包大小length小于576bytes,最大1038bytes。(100%小于1500bytes)D)发包的频率是平均0.017s然后一一的分析:A)协议基于UDP不用多说... 阅读全文
posted @ 2015-05-12 12:06 蛮婆的老公 阅读(3583) 评论(2) 推荐(1)