Python论坛  - 讨论区

标题:Re: [python-chinese] Python应用

2006年04月28日 星期五 13:48

吴俊玉 wujunyu at gmail.com
Fri Apr 28 13:48:10 HKT 2006

不会上传,不知道传到哪

还没有答辩,我再继续完成部分功能,到时候再上传吧!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/8fdd9eef/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年04月28日 星期五 19:32

tocer tocer.deng at gmail.com
Fri Apr 28 19:32:36 HKT 2006

好,希望能看到你的论文:)

吴俊玉 写道:
> 不会上传,不知道传到哪
>  
> 还没有答辩,我再继续完成部分功能,到时候再上传吧!
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年04月28日 星期五 20:09

吴俊玉 wujunyu at gmail.com
Fri Apr 28 20:09:02 HKT 2006

python作为脚本模拟的IBM的RoboCode
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/2c9610c0/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年04月28日 星期五 21:50

于业平 yyp226 at gmail.com
Fri Apr 28 21:50:05 HKT 2006

社区上不上有讲吗: 学习脚本是一种个人爱好,管不了那么多别人的看法 , 论文还是要争取高分的
我也学过些java , 做个小应用能胜任,
但是python确不行, 可是python一直都在我的学习计划中,感觉很舒服 .
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/c52153b0/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年04月28日 星期五 21:57

yi huang yi.codeplayer at gmail.com
Fri Apr 28 21:57:40 HKT 2006

python作为脚本模拟的IBM的RoboCode

已经完成了? 我这几天模仿微软的Terrarium.net写了个小原型,想等再丰富一些的时候拿出来。
我觉得这种东西很有意义啊,简直就是在构建一个平台了,设计API,任务调度(我现在用的是StacklessPython) 等等。

On 4/28/06, 吴俊玉 <wujunyu at gmail.com> wrote:
>
> python作为脚本模拟的IBM的RoboCode
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


--
http://codeplayer.blogbus.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060428/2c36a8a7/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年04月29日 星期六 09:48

吴俊玉 wujunyu at gmail.com
Sat Apr 29 09:48:06 HKT 2006

2006/4/28, yi huang <yi.codeplayer at gmail.com>:
>
> python作为脚本模拟的IBM的RoboCode
>
> 已经完成了? 我这几天模仿微软的Terrarium.net写了个小原型,想等再丰富一些的时候拿出来。
> 我觉得这种东西很有意义啊,简直就是在构建一个平台了,设计API,任务调度(我现在用的是StacklessPython) 等等。
>

我的想法正是这样的,
而且我花了大功夫在提供如何API上面

当然了,实力不够,只能说有个基本的框架了,
ibm的 坦克可以旋转身体,或者掉转炮头,或者旋转雷达,
我的只能旋转坦克

这里面有一个难题,首先我的提供算法能够任意角度旋转图片。但单纯的计算新点的坐标很容易导致画面变形。
也许这不难解决。
随之而来的就是不规则图片的碰撞检测了。这我还真没什么头绪。

这里我可以认为stackless就是coroutine吗?他们不都是比线程轻量的执行单位吗?
或者说stackless相比coroutine有什么优势呢?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060429/72f50677/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年04月29日 星期六 10:13

yi huang yi.codeplayer at gmail.com
Sat Apr 29 10:13:24 HKT 2006

    使用stackless的微线程可以使用基于时间片的调度也可以使用协同线程(cooperative
coroutine应该是一个意思吧),我使用的是后者,现在还不能控制用户脚本运行的时间。

我这是一个生态系统,动物植物在其中生活,相互攻击、繁殖。目前还简陋得很,API还只提供了个begin_moving(target),不过我已经写了测试的小动物以各种花样进行移动,自愉自乐,呵呵。纯python编写的,使用pygame做的界面。

On 4/29/06, 吴俊玉 <wujunyu at gmail.com> wrote:
>
>
>
> 2006/4/28, yi huang <yi.codeplayer at gmail.com>:
>
> > python作为脚本模拟的IBM的RoboCode
> >
> > 已经完成了? 我这几天模仿微软的Terrarium.net写了个小原型,想等再丰富一些的时候拿出来。
> > 我觉得这种东西很有意义啊,简直就是在构建一个平台了,设计API,任务调度(我现在用的是StacklessPython) 等等。
> >
>
> 我的想法正是这样的,
> 而且我花了大功夫在提供如何API上面
>
> 当然了,实力不够,只能说有个基本的框架了,
> ibm的 坦克可以旋转身体,或者掉转炮头,或者旋转雷达,
> 我的只能旋转坦克
>
> 这里面有一个难题,首先我的提供算法能够任意角度旋转图片。但单纯的计算新点的坐标很容易导致画面变形。
> 也许这不难解决。
> 随之而来的就是不规则图片的碰撞检测了。这我还真没什么头绪。
>
> 这里我可以认为stackless就是coroutine吗?他们不都是比线程轻量的执行单位吗?
> 或者说stackless相比coroutine有什么优势呢?
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


--
http://codeplayer.blogbus.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060429/21e7c77a/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年04月29日 星期六 10:31

吴俊玉 wujunyu at gmail.com
Sat Apr 29 10:31:57 HKT 2006

有意思
大鱼吃小鱼的AI版本?
以后多指教
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060429/117ca550/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号