rough list of todo for openra

removed (c)TOSHIBA from Openra.TechTree - beedee fails
added first-pass c# support to corfu
converted ijw internet's todo file into the form corfu likes
palette usage analysis tool for openra, so we can find a good slot to hijack

git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1319 993157c7-ee19-0410-b2c4-bb4e9862e678
This commit is contained in:
(no author)
2007-07-22 16:10:57 +00:00
parent dde1852b12
commit a22d2487d6
9 changed files with 227 additions and 29 deletions

View File

@@ -4,6 +4,7 @@ using System.Text;
using OpenRa.FileFormats;
using System.Drawing;
using BluntDirectX.Direct3D;
using System.IO;
namespace OpenRa.Game
{
@@ -40,6 +41,16 @@ namespace OpenRa.Game
return (1 - t) * a + t * b;
}
public static string[] ReadAllLines(Stream s)
{
List<string> result = new List<string>();
using (StreamReader reader = new StreamReader(s))
while (!reader.EndOfStream)
result.Add(reader.ReadLine());
return result.ToArray();
}
public static T[] MakeArray<T>(int count, Converter<int, T> f)
{
T[] result = new T[count];