(svn r15090) -Add [NoAI] [API CHANGE]: info.nut/library.nut now requires a function GetShortName(), which should return a 4 (four) character string, unique throughout the world. This id is simular to a GRFid.
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
class AyStar extends AILibrary {
|
||||
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||||
function GetName() { return "AyStar"; }
|
||||
function GetShortName() { return "GRA*"; }
|
||||
function GetDescription() { return "An implementation of AyStar"; }
|
||||
function GetVersion() { return 4; }
|
||||
function GetDate() { return "2008-06-11"; }
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
class Rail extends AILibrary {
|
||||
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||||
function GetName() { return "Rail"; }
|
||||
function GetShortName() { return "PFRL"; }
|
||||
function GetDescription() { return "An implementation of a rail pathfinder"; }
|
||||
function GetVersion() { return 1; }
|
||||
function GetDate() { return "2008-09-22"; }
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
class Road extends AILibrary {
|
||||
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||||
function GetName() { return "Road"; }
|
||||
function GetShortName() { return "PFRO"; }
|
||||
function GetDescription() { return "An implementation of a road pathfinder"; }
|
||||
function GetVersion() { return 3; }
|
||||
function GetDate() { return "2008-06-18"; }
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
class BinaryHeap extends AILibrary {
|
||||
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||||
function GetName() { return "Binary Heap"; }
|
||||
function GetShortName() { return "QUBH"; }
|
||||
function GetDescription() { return "An implementation of a Binary Heap"; }
|
||||
function GetVersion() { return 1; }
|
||||
function GetDate() { return "2008-06-10"; }
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
class FibonacciHeap extends AILibrary {
|
||||
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||||
function GetName() { return "Fibonacci Heap"; }
|
||||
function GetShortName() { return "QUFH"; }
|
||||
function GetDescription() { return "An implementation of a Fibonacci Heap"; }
|
||||
function GetVersion() { return 1; }
|
||||
function GetDate() { return "2008-08-22"; }
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
class PriorityQueue extends AILibrary {
|
||||
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||||
function GetName() { return "Priority Queue"; }
|
||||
function GetShortName() { return "QUPQ"; }
|
||||
function GetDescription() { return "An implementation of a Priority Queue"; }
|
||||
function GetVersion() { return 2; }
|
||||
function GetDate() { return "2008-06-10"; }
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
class Regression extends AIInfo {
|
||||
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||||
function GetName() { return "Regression"; }
|
||||
function GetShortName() { return "REGR"; }
|
||||
function GetDescription() { return "This runs regression-tests on all commands. On the same map the result should always be the same."; }
|
||||
function GetVersion() { return 1; }
|
||||
function GetDate() { return "2007-03-18"; }
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
class WrightAI extends AIInfo {
|
||||
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||||
function GetName() { return "WrightAI"; }
|
||||
function GetShortName() { return "WRAI"; }
|
||||
function GetDescription() { return "A simple AI that tries to beat you with only aircrafts"; }
|
||||
function GetVersion() { return 2; }
|
||||
function GetDate() { return "2008-02-24"; }
|
||||
|
||||
Reference in New Issue
Block a user