Pascal Game Development with Jason McMillen
In this much belated episode I talk with Jason McMillen of Pascal Game Development. We discuss the surprisingly vast world of Pascal Game Development with Delphi, Free Pascal, Oxygene and other Pascal and Object Pascal derivatives. You can find Jason “WILL” McMillen in the following places:
- DelphiX / UnDelphiX
- Asphyre Sphinx
- GLScene
- Allegro.pas
- ZenGL
- Phoenix Game Library
- Andorra 2D
- Jarrod Davis’ libraries (Big Daddy Games, Pyrogine, Hadron, Simvector)
- Cast II
- Dage Adventure Game Engine
- Kambi VRML Game Engine
- Thundax Physics Engine
- Genesis Engine
- Quake2Delphi engine translation
- Game Maker
API Headers
- Clootie’s DirectX Headers
- DelphiGL’s 4.2 Headers
- Noeska’s OpenAL & OpenGL headers
- Sascha Willem’s Newton Game Dynamics Headers
- JEDI-SDL
Games
Commercial
- Hedgewars for iOS
- Dachinko & Knight of Dulcinea by Gamecask
- Sushi Quest (franchise)
- Druids: Battle of Magic
- Mars Miner
- A Magnetic Adventure
- Spectromancer: League of Heroes
- Age of Wonders (series) by Triumph
- Drawn 1 & 2 (Big Fish Games)
- Drawn 1 on iOS
- Dreams of a Geisha
- Siege of Avalon
- Tomb Climber & others
Non-commercial / in development
Notable sites
- Free Pascal meets SDL
- Pascal Programming for Schools
- DelphiGL.com German community
- Pascal Gamer Magazine
- PGD Annual Game Developer’s Competition
- PGD Annual Showcase Site
Again only a fraction much of the libraries and games have come and gone and there isn’t much of a reference to them on the Internet anymore.
http://delphi.org/2011/10/pascal-game-development/
Pascal Game Development with Jason McMillen的更多相关文章
- laravel速记(笔记)
命令行: php artisan controller:make UserController This will generate the controller at /app/controller ...
- Pascal编译器大全(非常难得)
http://www.pascaland.org/pascall.htm Some titles (french) : Compilateurs Pascal avec sources = compi ...
- PASCAL VOC数据集The PASCAL Object Recognition Database Collection
The PASCAL Object Recognition Database Collection News 04-Apr-07: The VOC2007 challenge development ...
- perl 引用(数组和hash引用) --- perlreftut - Mark 的一个简单的'引用'教程 ---Understand References Today. --Mark Jason Dominus, Plover Systems (mjd-perl-ref+@plover.com)
https://blog.csdn.net/fangwei1235/article/details/8570886 首页 博客 学院 下载 论坛 APP 问答 商城 活动 VIP会员 招聘 ITeye ...
- free pascal
https://freepascal.org/ free pascal OPEN SOURCE COMPILER FOR PASCAL AND OBJECT PASCAL GENERAL HomeNe ...
- Beginners Guide To Web Development
Web Development Front End Development Back End Development
- iOS---The maximum number of apps for free development profiles has been reached.
真机调试免费App ID出现的问题The maximum number of apps for free development profiles has been reached.免费应用程序调试最 ...
- [LeetCode] Pascal's Triangle II 杨辉三角之二
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3, ...
- [LeetCode] Pascal's Triangle 杨辉三角
Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Retur ...
随机推荐
- C#学习笔记12:枚举、结构、数组基础学习
枚举:public enum MyEnum { 值1, 值2, 值3 } Public enum Season { 春, 夏, 秋, 冬 } 枚举的作用:规范用户的输入,枚举可以转换为int类型,可以 ...
- Unity3d 播放高质量视频解决方案
Unity3d 播放高质量视频解决方案~ 最近在折腾一个视频游戏.真的是一个视频游戏,游戏主背景是个大视频.可能切换三四个视频,而且需要无缝切换. 平台是安卓,蕊片是rockclip.找了各式各样的插 ...
- Android Metro风格的Launcher开发系列第一篇
前言:从毕业到现在已经三年多了,回忆一下这三年基本上没有写过博客,总是觉得忙,没时间写,也觉得写博客没什么大用.但是看到很多大牛们都在写博客,分享自己的东西,所以嘛本着向大牛看齐,分享第一,记录第二的 ...
- Merge Into example
merge into users a using temp_users b on (a.userid = b.user_id) when matched then update set a.passw ...
- bzoj4637:期望
思路:最小生成树计数只不过加了一个期望,由于期望具有线性性质,就可以转化为每条边的期望之和,那么一条边的期望如何求呢,在最小生成树记数中,是把相同边权的一起处理,之后把属于连通块内的点缩点,也就是说, ...
- mysql innodb 数据打捞(三)innodb 簇不连接页的扫描提取(计划)
操作系统簇大小一般是4K,而innoDB的页大小一般是16K,那么就有可能16K的页没有存储在连续的簇中,这样扫描软件就不会扫描出来这样的页面.为了解决这个问题,决定给软件增加半页扫描功能. 在第一次 ...
- 05_例子讲解:rlCollisionDemo.exe
碰撞检测的例子: "E:\Program Files (x86)\rl-0.6.2\bin\rlCollisionDemo.exe" "E:\Program Files ...
- RequireJs 依赖管理使用
What? 声明不同js文件之间的依赖,可以按需.并行.延时载入js库,可以让我们的代码以模块化的方式组织. When? 对于中大型项目,为了团队成员更好得发挥协同力,各自管理各自的JS代码,按需调用 ...
- oracle创建job方法
oracle创建job方法 alter system enable restricted session;--创建表create table G_TEST ( ID NUMBER(12), ...
- linux批量修改文件名的shell脚本
linux中批量修改文件名的shell脚本代码,主要是使用了rename,结合shell,喜欢的朋友可以参考下 使用 rename 命令 ======================== NAME ...