Changes project wide with this check-in.

MudCompiler:
No longer works.  Needs to be re-wrote to support the new Alpha 2.0 engine

MudDesigenr:
Removed most of the forms since we are not working on it.  Only form left is Project Manager, which will be removed shortly as well.

MudGame:
No longer runs.  All of the source code was removed due to MudEngine Alpha 2.0 source changing drastically.

MudEngine:
Alpha 2.0 source code finally checked-in.  It contains the full re-build of the engine.  A lot of new abstract classes have been added.
This commit is contained in:
Scionwest_cp 2011-10-01 22:20:23 -07:00
parent 5be2f9bf5b
commit a365256d53
48 changed files with 2254 additions and 2021 deletions

View file

@ -11,16 +11,18 @@ namespace MUDCompiler
{
public partial class frmCompiler : Form
{
MudEngine.GameManagement.Game game = new MudEngine.GameManagement.Game();
//MudEngine.GameManagement.Game game = new MudEngine.GameManagement.Game();
public frmCompiler()
{
InitializeComponent();
MessageBox.Show("Mud Compiler application needs to be re-wrote to support Alpha 2.0");
}
private void openDirectoryToolStripMenuItem_Click(object sender, EventArgs e)
{
rScripting.CompileEngine engine = new rScripting.CompileEngine();
/* rScripting.CompileEngine engine = new rScripting.CompileEngine();
FolderBrowserDialog browse = new FolderBrowserDialog();
browse.ShowDialog();
@ -37,7 +39,7 @@ namespace MUDCompiler
txtConsole.Text = "Compiled without error.";
else
txtConsole.Text = engine.Errors;
}
*/ }
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{
@ -46,7 +48,7 @@ namespace MUDCompiler
private void openScriptToolStripMenuItem_Click(object sender, EventArgs e)
{
rScripting.CompileEngine engine = new rScripting.CompileEngine();
/* rScripting.CompileEngine engine = new rScripting.CompileEngine();
engine.Compiler = "MudScriptCompiler";
OpenFileDialog browse = new OpenFileDialog();
@ -65,6 +67,6 @@ namespace MUDCompiler
txtConsole.Text = "Compiled without error.";
else
txtConsole.Text = engine.Errors;
}
*/ }
}
}