转自OGRE的一些游戏编程的链接

简介:

C++ / STL

[ edit]

Introduction / Help

[ edit]

User Misconception of C++/STL

[ edit]

Performance

[ edit]

Design patterns

[ edit]

Games

[ edit]

Game Developper Sites

[ edit]

Hardware

Ati (papers, tools, source) (http://www.ati.com/developer/) (MUST READ) Nvidia (papers, tools, source) (http://developer.nvidia.com) (MUST READ)

[ edit]

Game/3d Conference

[ edit]

Siggraph Conferrnce

[ edit]

Game developper Conference

  • gdc (http://www.gdconf.org)
  • nvdia slides and demos (http://developer.nvidia.com/object/gdc_2005_presentations.html)
  • Ati papers (http://www.ati.com/developer/techpapers.html)
[ edit]

MainStream

[ edit]

Blogs

  • Sinbad (http://www.stevestreeting.com/)
  • Carmack (http://www.armadilloaerospace.com/n.x/johnc/Recent%20Updates)
  • Brian Hook (http://www.bookofhook.com/)
  • Gaffer (http://www.gaffer.org/gaffer)
  • Gamegirl (http://www.gamegirladvance.com)
  • Gamedev (http://www.gamedevblog.com)


[ edit]

Animation

  • Walk Cycle (http://www.idleworm.com/how/anm/02w/walks.shtml)
[ edit]

Shaders

[ edit]

Terrain

[ edit]

Vegetation

[ edit]

Articles

[ edit]

Sdk

[ edit]

Artificial Intelligence

[ edit]

AI Links repositories

[ edit]

Sdk

[ edit]

General Architectures Articles

[ edit]

PathFinding

[ edit]

Group AI

[ edit]

Tactic

[ edit]

Steering

[ edit]

Rule-Based System (RBS)

[ edit]

Neural Networks (NN)

  • tensor (small NN) (http://www.oroboro.com/rafael/docserv.php?index=project&article=tensor)
  • tensor neurals net (http://www.oroboro.com/rafael/project/tensor.html)
  • Untrained Neural Net Class (http://www.flipcode.com/cgi-bin/msg.cgi?showThread=COTD-UntrainedNeuralNet&forum=cotd&id=-1)
  • NN sample (http://www.kuenzle-family.ch/philippe/gl/SeniorProject.htm)
[ edit]

Fuzzy logic (FL)

  • aiGuru.com (http://www.aiguru.com/fl.htm)
  • bayesian systems... somewhere on generation 5 site.
[ edit]

Finite State Machine (FSM)

[ edit]

Decision Tree (DT)

[ edit]

Emotion

[ edit]

Lag

[ edit]

Expert Systems

[ edit]

Learning Systems

[ edit]

Network

[ edit]

Articles

[ edit]

Sdk

[ edit]

Physics

[ edit]

Articles

[ edit]

Sdk

[ edit]

Sound

  • Thief paper on sound and AI.
[ edit]

Visibility

目录
相关文章
|
27天前
|
搜索推荐 JavaScript 前端开发
博客添加Aplayer音乐播放器
本文介绍了如何在博客网站中添加一个美观且功能强大的音乐播放器APlayer.js,从基本设置到高级定制,包括单曲播放、播放列表以及第三方歌单的集成方法。通过简单的HTML和JavaScript代码,即可实现个性化的音乐播放体验,让访客在浏览文章的同时享受美妙的音乐。
85 12
博客添加Aplayer音乐播放器
|
人工智能 Java
编程小白的第一篇博客
编程小白的第一篇博客
66 0
|
设计模式 Java 程序员
安卓开发者必备的42个链接
安卓开发者必备的42个链接
|
设计模式 Java 程序员
安卓开发者必备的 42 个链接
暑假就要结束了(译注:本文发布在13年8月份),或许你已决定成为一个安卓程序员。假期中,我收集了42个帮助大家学习安卓的链接。有的链接是面向初学者的帮助你从头开始,其他的则面向比较高级的开发者。当然这个列表是相当主观的,如果您也有更多关于安卓内容的链接,欢迎在评论栏中留言。
204 0
|
SQL JavaScript 前端开发
DayDayUp:Markdown编辑器的简介、入门、使用方法(Markdown编辑器撰写博客)(一)
DayDayUp:Markdown编辑器的简介、入门、使用方法(Markdown编辑器撰写博客)
|
存储 Python
[雪峰磁针石博客]python 3.7极速入门教程4函数
本文教程目录 4函数 菲波那契序列: >>> # Fibonacci series: ... # the sum of two elements defines the next ... a, b = 0, 1 >>> while b < 10: ... print(b) ... a, b = b, a+b ... 1 1 2 3 5 8 本例的新特性。
|
Java Android开发 数据格式
阅读手札:《Android开发艺术探索》(二)
在 《阅读手札:《Android开发艺术探索》(一)》中主要介绍了Activity的生命周期以及异常处理、启动模式、意图过滤器。本篇文章主要介绍的是《Android开发艺术探索》的第二章 IPC机制 个人评语:第二章的内容非常多(第二章近90页内容),内容有IPC机制基本概念;序列化Serializable、Parcelable;Binder;实现IPC的多种方式;Binder连接池内容非常多,但还是要耐着性子分析完。
1485 0
|
Android开发
阅读手札:《Android开发艺术探索》(一)
《Android开发艺术探索》这本书在Android开发界内可谓口碑极佳,他的作者任玉刚在百度担任Android资深开发工程师。我的一个初中朋友现在深圳百度做Android研发,上周去深圳找他玩的时候碰巧在他电脑桌上看到了这本书,他谈到这本书内容多、有深度且知识点非常系统值得反复阅读。
1378 0