Total members 11892 |It is currently Sun Sep 08, 2024 4:14 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka






 Project Name:   Conscript IDE: An Integrated Development Environment (IDE) implementation for the Conscript scripting language
 Programmer:   Colin Vella
 Type:   Application
 Technology:  C#
 IDE:   NONE
 Description:   Embedded scripting engines have applications in several areas, including the ability to extend or modify the core functionality of a software application. In the game development world, scripting provides a means for the game engine developer to hand over control to the designer, allowing him or her to implement the game's plotline events, NPC behaviour, and so on, without the intervention of the game engine developer who may otherwise need to hard-wire game play logic into the game engine.
csharp code
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.IO;
using System.Windows.Forms;

using Conscript;
using Conscript.Collections;
using Conscript.Compiler;
using Conscript.Runtime;

namespace Conscript.IDE
{
internal partial class MainForm : Form, HostFunctionHandler
{
#region Private Structs

private struct ScriptState
{
public String m_strFilename;
public Script m_script;
public bool m_bNew;
public bool m_bNeedsSaving;
public ScriptContext m_scriptContext;
public DebugState m_debugState;
}

#endregion

#region Private Static Variables

private static TimeSpan s_tsInterval = new TimeSpan(0, 0, 0, 0, 10);

#endregion

#region Private Variables

private ScriptManager m_scriptManager;
private List<String> m_listOutput;
private ScriptHistoryManager m_scriptHistoryManager;

#endregion

#region Private Methods

private bool IsScriptActive()
{
if (m_tbcScripts.TabCount == 0) return false;
ScriptState scriptState = GetCurrentScriptState();
return scriptState.m_debugState != DebugState.Editor;
}

private bool IsScriptSuspended()
{
if (m_tbcScripts.TabCount == 0) return false;
ScriptState scriptState = GetCurrentScriptState();
return scriptState.m_debugState == DebugState.Suspended;
}

private bool IsScriptEditing()
{
if (m_tbcScripts.TabCount == 0) return false;
ScriptState scriptState = GetCurrentScriptState();
return scriptState.m_debugState == DebugState.Editor;
}

private bool ContainsScriptTab(String strScriptName)
{
foreach (TabPage tabPage in m_tbcScripts.TabPages)
if (tabPage.Text.ToUpper() == strScriptName.ToUpper())
return true;
return false;
}

private String AllocateNewScriptName()
{
int iIndex = 0;
while (true)
{
String strScriptName = "untitled" + (iIndex++) + ".cns";
if (!ContainsScriptTab(strScriptName))
return strScriptName;
}
}

private TextBox CreateScript(String strScriptName, String strFilename)
{
TextBox txtScript = new TextBox();
txtScript.Multiline = true;
txtScript.AcceptsReturn = true;
txtScript.AcceptsTab = true;
txtScript.Dock = DockStyle.Fill;
txtScript.BorderStyle = BorderStyle.None;
txtScript.WordWrap = false;
txtScript.ScrollBars = ScrollBars.Both;
txtScript.Font = new Font(FontFamily.GenericMonospace, 10);
txtScript.TextChanged += OnScriptSourceChanged;
txtScript.KeyUp += OnScriptKeyUp;

TabPage tabPage = new TabPage(strScriptName);
tabPage.Controls.Add(txtScript);

m_tbcScripts.TabPages.Add(tabPage);
txtScript.Select();

ScriptState scriptState = new ScriptState();
scriptState.m_strFilename = strFilename;
scriptState.m_bNew = true;
scriptState.m_bNeedsSaving = false;
scriptState.m_debugState = DebugState.Editor;
txtScript.Tag = scriptState;
m_tbcScripts.SelectedTab = tabPage;

m_scriptHistoryManager.InitialiseHistory(strScriptName, "");

UpdateInterface();

return txtScript;
}

private void SaveScript(String strFilename)
{
TextBox txtScript = GetCurrentScript();
ScriptState scriptState = (ScriptState)txtScript.Tag;

FileStream fileStream = null;
try
{
fileStream = new FileStream(strFilename, FileMode.Create);
StreamWriter streamWriter = new StreamWriter(fileStream);
streamWriter.Write(txtScript.Text);
streamWriter.Flush();
fileStream.Close();

scriptState.m_strFilename = strFilename;
scriptState.m_bNew = false;
scriptState.m_bNeedsSaving = false;
txtScript.Tag = scriptState;

String strScriptNameNew = new FileInfo(strFilename).Name;
String strScriptNameOld = m_tbcScripts.SelectedTab.Text;
m_tbcScripts.SelectedTab.Text = strScriptNameNew;

m_scriptHistoryManager.RenameScript(
strScriptNameOld, strScriptNameNew);
}
catch (Exception exception)
{
MessageBox.Show(this,
"Error while saving script. Reason: " + exception,
"Open Conscript Source",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
if (fileStream != null)
fileStream.Dispose();
}
}

private void UpdateInterfaceMenu(bool bOpenScripts, DebugState debugState)
{
bool bDebugging = debugState == DebugState.Debugging;
bool bActive = bDebugging
|| debugState == DebugState.Running;
bool bEditor = debugState == DebugState.Editor;
bool bStepping = debugState == DebugState.Suspended;
String strScriptName = null;
if (m_tbcScripts.SelectedTab != null)
strScriptName = m_tbcScripts.SelectedTab.Text;

m_mniFile.Enabled = !bActive;
m_mniFileNew.Enabled = !bActive;
m_mniFileOpen.Enabled = !bActive;
m_mniFileClose.Enabled = bOpenScripts && !bActive;
m_mniFileSave.Enabled = bOpenScripts && !bActive;
m_mniFileSaveAs.Enabled = bOpenScripts && !bActive;

m_mniEdit.Enabled = bOpenScripts && bEditor;
m_mniBuild.Enabled = bOpenScripts;
m_mniEditUndo.Enabled = bOpenScripts && !bActive
&& m_scriptHistoryManager.CanUndo(strScriptName);
m_mniEditRedo.Enabled = bOpenScripts && !bActive
&& m_scriptHistoryManager.CanRedo(strScriptName);
m_mniEditCut.Enabled = bOpenScripts && !bActive;
m_mniEditCopy.Enabled = bOpenScripts && !bActive;
m_mniEditPaste.Enabled = bOpenScripts && !bActive && Clipboard.ContainsText();

m_mniBuild.Enabled = !bActive;
m_mniBuildScript.Enabled = bOpenScripts && bEditor;
m_mniBuildRebuild.Enabled = bOpenScripts && bEditor;
m_mniBuildSettings.Enabled = !bActive;
m_mniBuildHostEnvironment.Enabled = !bActive;

m_mniDebug.Enabled = bOpenScripts;
m_mniDebugStart.Enabled = !bActive;
m_mniDebugStart.Text = bStepping ? "Continue" : "Start Debugging";
m_mniDebugRun.Enabled = bEditor;
m_mniDebugBreak.Enabled = bDebugging;
m_mniDebugStop.Enabled = bActive || bStepping;
m_mniDebugStepInto.Enabled = bEditor || bStepping;
m_mniDebugStepOver.Enabled = bEditor || bStepping;
m_mniDebugStepOut.Enabled = bEditor || bStepping;
m_mniDebugToggleBreakpoint.Enabled = bOpenScripts;
m_mniDebugDeleteAllBreakpoints.Enabled = bOpenScripts;
}

private void UpdateInterfaceByteCode()
{
m_lsbByteCode.Items.Clear();

if (m_tbcScripts.TabCount == 0)
return;

ScriptState scriptState = GetCurrentScriptState();
Script script = scriptState.m_script;
if (script == null) return;

foreach (ScriptInstruction scriptInstruction in script.Executable.Instructions)
m_lsbByteCode.Items.Add(scriptInstruction.ToString());

m_lsbByteCode.ClearBreakpoints();
}

private void UpdateInterfaceVM()
{
if (m_tbcScripts.TabCount == 0)
return;

TextBox txtScript = GetCurrentScript();
ScriptState scriptState = (ScriptState)txtScript.Tag;
Script script = scriptState.m_script;
if (script == null)
return;

TabPage tabPage = m_tbcVirtualMachine.SelectedTab;
tabPage.SuspendLayout();

// byte code
m_lsbByteCode.Invalidate();

// runtime information
m_lsbCallStack.Items.Clear();
m_lsbParameterStack.Items.Clear();

if (scriptState.m_scriptContext != null)
{
ScriptContext scriptContext = scriptState.m_scriptContext;

// global scope
m_vdtGlobal.VariableDictionary = scriptContext.Script.Manager.GlobalDictionary;
m_vdtGlobal.Invalidate();

// script scope
m_vdtScript.VariableDictionary = scriptContext.Script.ScriptDictionary;
m_vdtScript.Invalidate();

// local scope
m_vdtLocal.VariableDictionary = scriptContext.LocalDictionary;
m_vdtLocal.Invalidate();

// function stack
foreach (ScriptFunction scriptFunction in scriptContext.FunctionStack)
m_lsbCallStack.Items.Add(scriptFunction == null ? "(unknown)" : scriptFunction.ToString());
m_lsbCallStack.Invalidate();

// parameter stack
foreach (object objectParameter in scriptContext.ParameterStack)
{
Type typeObject = objectParameter.GetType();
if (typeObject == typeof(String))
m_lsbParameterStack.Items.Add("\"" + objectParameter + "\"");
else
m_lsbParameterStack.Items.Add(objectParameter.ToString());
}
m_lsbParameterStack.Invalidate();
}
else
{
m_vdtGlobal.VariableDictionary = null;
m_vdtScript.VariableDictionary = null;
m_vdtLocal.VariableDictionary = null;
}

// locks
m_lsbLocks.Items.Clear();
ReadOnlyDictionary<object, ScriptContext> dictLocks
= m_scriptManager.ActiveLocks;
foreach (object objectLock in dictLocks.Keys)
{
ScriptContext scriptContext
= (ScriptContext) dictLocks[objectLock];
StringBuilder stringBuilder = new StringBuilder();
if (objectLock == null)
stringBuilder.Append("NULL");
else if (objectLock.GetType() == typeof(String))
{
stringBuilder.Append("\"");
stringBuilder.Append(objectLock.ToString());
stringBuilder.Append("\"");
}
else
stringBuilder.Append(objectLock.ToString());
stringBuilder.Append(" <- Context(");
stringBuilder.Append(scriptContext.Script.Name);
stringBuilder.Append(")");
m_lsbLocks.Items.Add(stringBuilder.ToString());
}

if (scriptState.m_debugState == DebugState.Editor)
{
m_lsbByteCode.NextInstruction = -1;
m_lsbByteCode.SelectedIndex = -1;
}

tabPage.ResumeLayout();
}

private void UpdateInterface()
{
bool bOpenScripts = m_tbcScripts.TabPages.Count > 0;
DebugState debugState = m_tbcScripts.TabCount == 0
? DebugState.Editor : GetCurrentScriptState().m_debugState;

UpdateInterfaceMenu(bOpenScripts, debugState);
UpdateInterfaceVM();

m_tbcScripts.Enabled = debugState == DebugState.Editor;
}

private TextBox GetCurrentScript()
{
if (m_tbcScripts.TabPages.Count == 0) return null;
TabPage tabPage = m_tbcScripts.SelectedTab;
TextBox txtScript = (TextBox)tabPage.Controls[0];
return txtScript;
}

private ScriptState GetCurrentScriptState()
{
TabPage tabPage = m_tbcScripts.SelectedTab;
TextBox txtScript = (TextBox)tabPage.Controls[0];
ScriptState scriptState = (ScriptState)txtScript.Tag;
return scriptState;
}

private void ClearOutput()
{
m_listOutput.Clear();
m_txtOutput.Text = "";
m_txtOutput.Refresh();
}

private void WriteOutput(String strData)
{
m_listOutput.Add(strData);
while (m_listOutput.Count > 1024)
m_listOutput.RemoveAt(0);

StringBuilder stringBuilder = new StringBuilder();
foreach (String strLine in m_listOutput)
{
stringBuilder.AppendLine(strLine);
}

m_txtOutput.SuspendLayout();
m_txtOutput.Text = stringBuilder.ToString();
m_txtOutput.SelectionStart = m_txtOutput.Text.Length;
m_txtOutput.ScrollToCaret();
m_txtOutput.ResumeLayout(false);
}

private void WriteStatusMessage(String strMessage)
{
m_tslMessage.Text = strMessage;
m_stsStatus.Refresh();
}

private Script BuildScript(bool bForceRebuild)
{
if (m_tbcScripts.TabCount == 0) return null;

String strScriptName = m_tbcScripts.SelectedTab.Text;
TextBox txtScript = GetCurrentScript();

ScriptState scriptState = (ScriptState)txtScript.Tag;
if (scriptState.m_debugState != DebugState.Editor) return null;

if (!bForceRebuild && scriptState.m_script != null)
{
WriteOutput("Script executable '" + strScriptName + "' is already up to date.");
return scriptState.m_script;
}

try
{
WriteStatusMessage("Building script...");

if (bForceRebuild)
WriteOutput("Rebuilding script '" + strScriptName + "'...");
else
WriteOutput("Building script '" + strScriptName + "'...");
WriteOutput("Debug Mode : "
+ (m_scriptManager.DebugMode ? "Yes" : "No"));
WriteOutput("Optimise Code : "
+ (m_scriptManager.OptimiseCode ? "Yes" : "No"));

Script script = new Script(m_scriptManager, strScriptName);

WriteOutput(
"----------------------------------------------------------------------------");
WriteOutput("Instructions Generated : "
+ script.Executable.Instructions.Count);
WriteOutput("Build Succeeded.");

scriptState.m_script = script;
scriptState.m_scriptContext = null;
txtScript.Tag = scriptState;

UpdateInterfaceByteCode();

WriteStatusMessage("Ready");
return script;
}
catch (Exception exception)
{
WriteOutput(exception.ToString());
WriteStatusMessage("Ready");
return null;
}
}

private ScriptContext CreateScriptContext(Script script)
{
// cannot run script if no functions defined
if (script.Functions.Count == 0)
{
MessageBox.Show(this, "No functions defined", "Run Script",
MessageBoxButtons.OK, MessageBoxIcon.Error);
return null;
}

// automatically select main funcion if it has no parameters
if (script.HasMainFunction()
&& script.MainFunction.ParameterCount == 0)
return new ScriptContext(script);

RunScriptForm runScriptForm = new RunScriptForm(script);
if (runScriptForm.ShowDialog() == DialogResult.Cancel)
return null;

ScriptFunction scriptFunction = runScriptForm.ScriptFunction;
List<object> listParameters
= new List<object>(runScriptForm.Parameters.Values);

return new ScriptContext(scriptFunction, listParameters);
}

public void RunScript(bool bDebug)
{
if (IsScriptActive()) return;

Script script = BuildScript(false);
if (script == null)
{
UpdateInterface();
return;
}
try
{
ScriptContext scriptContextCurrent
= CreateScriptContext(script);
if (scriptContextCurrent == null) return;

TextBox txtScript = GetCurrentScript();
ScriptState scriptState = GetCurrentScriptState();
scriptState.m_scriptContext = scriptContextCurrent;
scriptState.m_debugState = bDebug
? DebugState.Debugging : DebugState.Running;
txtScript.Tag = scriptState;

WriteOutput("Running script " + script.Name + "....");
m_tmrDebugger.Enabled = true;
UpdateInterface();
m_tbcVirtualMachine.SelectedIndex = 0;
}
catch (Exception exception)
{
WriteOutput(exception.ToString());
}
}

public void ContinueScript()
{
if (m_tbcScripts.TabCount == 0) return;

ScriptState scriptState = GetCurrentScriptState();
if (scriptState.m_debugState != DebugState.Suspended) return;

scriptState.m_debugState = DebugState.Debugging;
TextBox txtScript = GetCurrentScript();
txtScript.Tag = scriptState;
m_tmrDebugger.Enabled = true;
UpdateInterface();
m_tbcVirtualMachine.SelectedIndex = 0;
}

private void OnScriptSourceChanged(object objectSender, EventArgs eventArgs)
{
// convert tabs to 4 spaces
TextBox txtScript = (TextBox)objectSender;
int iScrollPos = txtScript.SelectionStart;
String strScript = txtScript.Text;
int iScrollOffset = 0;
if (iScrollPos > 0 && strScript[iScrollPos - 1] == '\t')
iScrollOffset = 3;
txtScript.Text = txtScript.Text.Replace("\t", " ");
txtScript.SelectionStart = iScrollPos + iScrollOffset;
txtScript.ScrollToCaret();

// invalidate compilation
ScriptState scriptState = (ScriptState)txtScript.Tag;
scriptState.m_bNeedsSaving = true;
scriptState.m_script = null;
scriptState.m_scriptContext = null;
txtScript.Tag = scriptState;
UpdateInterfaceByteCode();

// clear active locks
m_scriptManager.ClearActiveLocks();
UpdateInterfaceVM();

// track script history
m_scriptHistoryManager.AddState(
m_tbcScripts.SelectedTab.Text, txtScript.Text);

UpdateInterface();
}

private void OnScriptKeyUp(object objectSender, KeyEventArgs keyEventArgs)
{
// handle cursor position info
TextBox txtScript = (TextBox)objectSender;

// line number
m_tslLineNumber.Text = "Line: "
+ txtScript.GetLineFromCharIndex(txtScript.SelectionStart);

// char number
int iCharPosition = txtScript.SelectionStart
- txtScript.GetFirstCharIndexOfCurrentLine();
m_tslCharNumber.Text = "Char: " + iCharPosition;
}

private void m_tmrDebugger_Tick(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0)
{
m_tmrDebugger.Enabled = false;
UpdateInterface();
return;
}

TextBox txtScript = GetCurrentScript();
ScriptState scriptState = (ScriptState)txtScript.Tag;

ScriptContext scriptContextCurrent = scriptState.m_scriptContext;

if (scriptContextCurrent.Terminated)
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Editor;
scriptState.m_scriptContext.Reset();
txtScript.Tag = scriptState;
UpdateInterface();
WriteOutput("Script terminated.");
return;
}

try
{
if (scriptState.m_debugState == DebugState.Debugging)
{
scriptContextCurrent.Execute(1);
UpdateInterfaceVM();
m_lsbByteCode.NextInstruction = scriptContextCurrent.NextInstruction;

if (m_lsbByteCode.HasBreakPoint(scriptContextCurrent.NextInstruction))
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Suspended;
txtScript.Tag = scriptState;
UpdateInterfaceVM();
m_lsbByteCode.SelectedIndex = m_lsbByteCode.NextInstruction;
UpdateInterface();
WriteOutput("Script interrupted.");
return;
}
}
else
scriptContextCurrent.Execute(s_tsInterval);

}
catch (Exception exception)
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Editor;
scriptState.m_scriptContext.Reset();
txtScript.Tag = scriptState;
UpdateInterface();
WriteOutput("Runtime Error: " + exception);
}
}

private void MainForm_Load(object objectSender, EventArgs eventArgs)
{
m_lsbByteCode.Font = new Font(FontFamily.GenericMonospace, 10);

// set up script manager and custom loader
m_scriptManager = new ScriptManager();
ScriptLoader scriptLoaderIDE = new ScriptLoaderIDE(m_tbcScripts, m_scriptManager.Loader);
m_scriptManager.Loader = scriptLoaderIDE;

// script history manager
m_scriptHistoryManager = new ScriptHistoryManager();

// register default 'Print' hist function
HostFunctionPrototype hostFunctionPrototypePrint
= new HostFunctionPrototype(null, "Print", (Type) null);
m_scriptManager.RegisterHostFunction(hostFunctionPrototypePrint, this);

m_listOutput = new List<String>();

CreateScript("untitled0.cns", "untitled0.cns");

UpdateInterface();
}

private void MainForm_FormClosing(object objectSender,
FormClosingEventArgs formClosingEventArgs)
{
foreach (TabPage tabPage in m_tbcScripts.TabPages)
{
TextBox txtScript = (TextBox)tabPage.Controls[0];
ScriptState scriptState = (ScriptState)txtScript.Tag;
if (scriptState.m_bNeedsSaving)
{
String strScriptName = new FileInfo(scriptState.m_strFilename).Name;
if (MessageBox.Show(this, "Changes to the script '" + strScriptName
+ "' will be lost. Do you want to proceed?", "Exit Conscript IDE",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{
formClosingEventArgs.Cancel = true;
return;
}
}
}
}

private void m_tbcScripts_MouseDown(object objectSender, MouseEventArgs mouseEventArgs)
{
if (mouseEventArgs.Button != MouseButtons.Right) return;
m_cmsScript.Items[0].Text = "Save " + m_tbcScripts.SelectedTab.Text;
m_cmsScript.Show(m_tbcScripts, mouseEventArgs.Location);
}

private void m_mniFileNew_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive()) return;
String strScriptName = AllocateNewScriptName();
CreateScript(strScriptName, strScriptName);
}

private void m_mniFileOpen_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive()) return;

OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Title = "Open Conscript Source";
openFileDialog.Multiselect = true;
openFileDialog.Filter = "Conscript Source|*.cns|All Files|*.*";
if (openFileDialog.ShowDialog() == DialogResult.Cancel) return;

foreach (String strFilename in openFileDialog.FileNames)
{
FileStream fileStream = null;
try
{
String strScriptName = new FileInfo(strFilename).Name;
if (ContainsScriptTab(strScriptName)) continue;
fileStream = new FileStream(strFilename, FileMode.Open);
StreamReader streamReader = new StreamReader(fileStream);
StringBuilder stringBuilder = new StringBuilder();
while (!streamReader.EndOfStream)
{
stringBuilder.Append(streamReader.ReadLine());
stringBuilder.Append("\r\n");
}
fileStream.Close();

TextBox txtScript = CreateScript(strScriptName, strFilename);
txtScript.Text = stringBuilder.ToString();

ScriptState scriptState = GetCurrentScriptState();
scriptState.m_bNew = false;
scriptState.m_bNeedsSaving = false;
txtScript.Tag = scriptState;

m_scriptHistoryManager.InitialiseHistory(
strScriptName, txtScript.Text);

UpdateInterface();
}
catch (Exception exception)
{
MessageBox.Show(this,
"Error while loading script. Reason: " + exception,
"Open Conscript Source",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
if (fileStream != null)
fileStream.Dispose();
}
}
}

private void m_mniFileClose_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive()) return;

int iSelectedTab = m_tbcScripts.SelectedIndex;
if (iSelectedTab < 0) return;

ScriptState scriptState = GetCurrentScriptState();
String strScriptName = new FileInfo(scriptState.m_strFilename).Name;

// warn user about saving
if (scriptState.m_bNeedsSaving)
{
if (MessageBox.Show(this, "Changes to the script '" + strScriptName
+ "' will be lost. Do you want to proceed?", "Close file",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
return;
}

m_tbcScripts.TabPages.RemoveAt(iSelectedTab);

m_scriptHistoryManager.ClearHistory(strScriptName);

UpdateInterface();

if (m_tbcScripts.TabPages.Count == 0) return;
m_tbcScripts.SelectedIndex
= Math.Min(m_tbcScripts.TabPages.Count - 1, iSelectedTab);
}

private void m_mniFileSave_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;
if (IsScriptActive()) return;

ScriptState scriptState = GetCurrentScriptState();
if (scriptState.m_bNew)
m_mniFileSaveAs_Click(objectSender, eventArgs);
else
{
SaveScript(scriptState.m_strFilename);
}
}

private void m_mniFileSaveAs_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;
if (IsScriptActive()) return;

TextBox txtScript = GetCurrentScript();
ScriptState scriptState = GetCurrentScriptState();
String strOldFilename = scriptState.m_strFilename;
FileInfo fileInfo = new FileInfo(strOldFilename);
String strScriptName = fileInfo.Name;
String strDirectoryName = fileInfo.DirectoryName;

SaveFileDialog saveFileDialog = new SaveFileDialog();
saveFileDialog.Title = "Save Conscript Source";
saveFileDialog.Filter = "Conscript Source|*.cns|All Files|*.*";
saveFileDialog.InitialDirectory = strDirectoryName;
saveFileDialog.FileName = strScriptName;
if (saveFileDialog.ShowDialog() == DialogResult.Cancel) return;

SaveScript(saveFileDialog.FileName);
}

private void m_mniEditUndo_Click(object objectSender, EventArgs eventArgs)
{
if (!IsScriptEditing()) return;
String strScriptName = m_tbcScripts.SelectedTab.Text;
if (!m_scriptHistoryManager.CanUndo(strScriptName)) return;

TextBox txtScript = GetCurrentScript();

txtScript.TextChanged -= OnScriptSourceChanged;
String strSourceBefore = txtScript.Text;
String strSourceAfter = m_scriptHistoryManager.Undo(strScriptName);
txtScript.Text = strSourceAfter;
txtScript.TextChanged += OnScriptSourceChanged;

// set cursor at change position
txtScript.SelectionStart
= m_scriptHistoryManager.GetChangePosition(
strSourceBefore, strSourceAfter);

txtScript.ScrollToCaret();

UpdateInterface();
}

private void m_mniEditRedo_Click(object objectSender, EventArgs eventArgs)
{
if (!IsScriptEditing()) return;
String strScriptName = m_tbcScripts.SelectedTab.Text;
if (!m_scriptHistoryManager.CanRedo(strScriptName)) return;

TextBox txtScript = GetCurrentScript();

txtScript.TextChanged -= OnScriptSourceChanged;
String strSourceBefore = txtScript.Text;
String strSourceAfter = m_scriptHistoryManager.Redo(strScriptName);
txtScript.Text = strSourceAfter;
txtScript.TextChanged += OnScriptSourceChanged;

// set cursor at change position
txtScript.SelectionStart
= m_scriptHistoryManager.GetChangePosition(
strSourceBefore, strSourceAfter);
txtScript.ScrollToCaret();

UpdateInterface();
}

private void m_mniEditCut_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive()) return;

// copy to clipboard
TextBox txtScript = GetCurrentScript();
if (txtScript == null) return;
if (txtScript.SelectedText == null) return;
Clipboard.SetText(txtScript.SelectedText);

// remove from source
int iScrollPos = txtScript.SelectionStart;
txtScript.Text = txtScript.Text.Remove(
txtScript.SelectionStart, txtScript.SelectionLength);
txtScript.SelectionStart = iScrollPos;
txtScript.ScrollToCaret();

// invalidate compilation
ScriptState scriptState = (ScriptState)txtScript.Tag;
scriptState.m_bNeedsSaving = true;
scriptState.m_script = null;
scriptState.m_scriptContext = null;
txtScript.Tag = scriptState;
UpdateInterfaceByteCode();

// (script history tracked by script change event)

UpdateInterface();
}

private void m_mniEditCopy_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive())
{
m_mniDebugStop_Click(objectSender, eventArgs);
return;
}

// copy to clipboard
TextBox txtScript = GetCurrentScript();
if (txtScript == null) return;
if (txtScript.SelectedText == null) return;
if (txtScript.SelectedText.Length == 0) return;
Clipboard.SetText(txtScript.SelectedText);

// track script history
m_scriptHistoryManager.AddState(
m_tbcScripts.SelectedTab.Text, txtScript.Text);

UpdateInterface();
}

private void m_mniEditPaste_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive()) return;

TextBox txtScript = GetCurrentScript();
if (txtScript == null) return;
String strText = Clipboard.GetText();

int iScrollPos = txtScript.SelectionStart;

// first remove any currently selected text
if (txtScript.SelectionLength > 0)
txtScript.Text = txtScript.Text.Remove(
txtScript.SelectionStart, txtScript.SelectionLength);

txtScript.Text = txtScript.Text.Insert(iScrollPos, strText);
txtScript.SelectionStart = iScrollPos + strText.Length;
txtScript.ScrollToCaret();

// invalidate compilation
ScriptState scriptState = (ScriptState)txtScript.Tag;
scriptState.m_bNeedsSaving = true;
scriptState.m_script = null;
scriptState.m_scriptContext = null;
txtScript.Tag = scriptState;
UpdateInterfaceByteCode();

// (script history tracked by script change event)

UpdateInterface();
}

private void m_mniEditDelete_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive()) return;

TextBox txtScript = GetCurrentScript();
if (txtScript == null) return;
if (txtScript.SelectedText == null) return;

// remove from source
int iScrollPos = txtScript.SelectionStart;
txtScript.Text = txtScript.Text.Remove(
txtScript.SelectionStart, txtScript.SelectionLength);
txtScript.SelectionStart = iScrollPos;
txtScript.ScrollToCaret();

// invalidate compilation
ScriptState scriptState = (ScriptState)txtScript.Tag;
scriptState.m_bNeedsSaving = true;
scriptState.m_script = null;
scriptState.m_scriptContext = null;
txtScript.Tag = scriptState;
UpdateInterfaceByteCode();

// track script history
m_scriptHistoryManager.AddState(
m_tbcScripts.SelectedTab.Text, txtScript.Text);

UpdateInterface();
}

private void m_mniEditSelectAll_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive()) return;
TextBox txtScript = GetCurrentScript();
if (txtScript == null) return;
txtScript.SelectAll();
}

private void m_mniBuildScript_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;
if (IsScriptActive()) return;

ScriptState scriptState = GetCurrentScriptState();
BuildScript(false);
UpdateInterface();
}

private void m_mniBuildRebuild_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;
if (IsScriptActive()) return;

ScriptState scriptState = GetCurrentScriptState();
BuildScript(true);
UpdateInterface();
}

private void m_mniBuildSettings_Click(object objectSender, EventArgs eventArgs)
{
BuildSettingsForm buildSettingsForm = new BuildSettingsForm();
buildSettingsForm.DebugMode = m_scriptManager.DebugMode;
buildSettingsForm.OptimiseCode = m_scriptManager.OptimiseCode;
if (buildSettingsForm.ShowDialog(this) == DialogResult.Cancel) return;
m_scriptManager.DebugMode = buildSettingsForm.DebugMode;
m_scriptManager.OptimiseCode = buildSettingsForm.OptimiseCode;
}

private void m_mniBuildHostEnvironment_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptActive()) return;

HostEnvironmentForm hostEnvironmentForm
= new HostEnvironmentForm(m_scriptManager);
hostEnvironmentForm.ShowDialog(this);
}

private void m_mniDebugStart_Click(object objectSender, EventArgs eventArgs)
{
if (IsScriptSuspended())
ContinueScript();
else
RunScript(true);
}

private void m_mniDebugRun_Click(object objectSender, EventArgs eventArgs)
{
RunScript(false);
}

private void m_mniDebugBreak_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;
ScriptState scriptState = GetCurrentScriptState();
if (scriptState.m_debugState != DebugState.Debugging) return;

TextBox txtScript = GetCurrentScript();

m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Suspended;
txtScript.Tag = scriptState;
m_lsbByteCode.SelectedIndex = m_lsbByteCode.NextInstruction;
UpdateInterface();
WriteOutput("Script interrupted.");
return;
}

private void m_mniDebugStop_Click(object objectSender, EventArgs eventArgs)
{
if (!IsScriptActive()) return;

m_tmrDebugger.Enabled = false;
TextBox txtScript = GetCurrentScript();
ScriptState scriptState = GetCurrentScriptState();
scriptState.m_scriptContext.Reset();
scriptState.m_debugState = DebugState.Editor;
txtScript.Tag = scriptState;
UpdateInterface();
WriteOutput("Script terminated.");
}

private void m_mniDebugStepInto_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;

bool bSuspended = IsScriptSuspended();
bool bEditor = IsScriptEditing();

if (!bSuspended && !bEditor) return;

TextBox txtScript = GetCurrentScript();
ScriptState scriptState = (ScriptState) txtScript.Tag;

if (bEditor)
{
BuildScript(false);
scriptState = (ScriptState)txtScript.Tag;
if (scriptState.m_script == null) return;
scriptState.m_debugState = DebugState.Suspended;
ScriptContext scriptContextCurrent
= CreateScriptContext(scriptState.m_script);
if (scriptContextCurrent == null) return;
scriptState.m_scriptContext = scriptContextCurrent;
txtScript.Tag = scriptState;
}
else
{
try
{
scriptState.m_scriptContext.Execute(1);

// check for end of script
if (scriptState.m_scriptContext.Terminated)
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Editor;
scriptState.m_scriptContext.Reset();
txtScript.Tag = scriptState;
UpdateInterface();
m_tbcVirtualMachine.SelectedIndex = 0;
return;
}
}
catch (Exception exception)
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Editor;
scriptState.m_scriptContext.Reset();
txtScript.Tag = scriptState;
UpdateInterface();
WriteOutput("Runtime Error: " + exception);
return;
}
}

m_lsbByteCode.NextInstruction = scriptState.m_scriptContext.NextInstruction;
m_lsbByteCode.SelectedIndex = m_lsbByteCode.NextInstruction;
UpdateInterface();
}

private void m_mniDebugStepOver_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;

bool bSuspended = IsScriptSuspended();
bool bEditor = IsScriptEditing();

if (!bSuspended && !bEditor) return;

TextBox txtScript = GetCurrentScript();
ScriptState scriptState = (ScriptState)txtScript.Tag;

if (bEditor)
{
BuildScript(false);
scriptState = (ScriptState)txtScript.Tag;
if (scriptState.m_script == null) return;
scriptState.m_debugState = DebugState.Suspended;
ScriptContext scriptContextCurrent
= CreateScriptContext(scriptState.m_script);
if (scriptContextCurrent == null) return;
scriptState.m_scriptContext = scriptContextCurrent;
txtScript.Tag = scriptState;
m_tbcVirtualMachine.SelectedIndex = 0;
}
else
{
ScriptContext scriptContext = scriptState.m_scriptContext;
Script script = scriptContext.Script;
int iNextInstruction = scriptContext.NextInstruction;
ScriptInstruction scriptInstruction = script.Executable.Instructions[iNextInstruction];

try
{
if (scriptInstruction.Opcode != Opcode.CALL)
scriptContext.Execute(1);
else
{
++iNextInstruction;
int iStackDepth = scriptContext.FunctionStack.Count;
while (scriptContext.NextInstruction != iNextInstruction
|| iStackDepth != scriptContext.FunctionStack.Count)
scriptContext.Execute(1);
}

// check for end of script
if (scriptContext.Terminated)
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Editor;
scriptState.m_scriptContext.Reset();
txtScript.Tag = scriptState;
UpdateInterface();
return;
}
}
catch (Exception exception)
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Editor;
scriptState.m_scriptContext.Reset();
txtScript.Tag = scriptState;
UpdateInterface();
WriteOutput("Runtime Error: " + exception);
return;
}
}

m_lsbByteCode.NextInstruction = scriptState.m_scriptContext.NextInstruction;
m_lsbByteCode.SelectedIndex = m_lsbByteCode.NextInstruction;
UpdateInterface();
}

private void m_mniDebugStepOut_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;

bool bSuspended = IsScriptSuspended();
bool bEditor = IsScriptEditing();

if (!bSuspended && !bEditor) return;

TextBox txtScript = GetCurrentScript();
ScriptState scriptState = (ScriptState)txtScript.Tag;

if (bEditor)
{
BuildScript(false);
scriptState = (ScriptState)txtScript.Tag;
if (scriptState.m_script == null) return;
scriptState.m_debugState = DebugState.Suspended;
ScriptContext scriptContextCurrent
= CreateScriptContext(scriptState.m_script);
if (scriptContextCurrent == null) return;
scriptState.m_scriptContext = scriptContextCurrent;
txtScript.Tag = scriptState;
m_tbcVirtualMachine.SelectedIndex = 0;
}
else
{
ScriptContext scriptContext = scriptState.m_scriptContext;
Script script = scriptContext.Script;
int iNextInstruction = scriptContext.NextInstruction;
ScriptInstruction scriptInstruction = script.Executable.Instructions[iNextInstruction];

try
{
int iStackDepth = scriptContext.FunctionStack.Count;
if (iStackDepth == 1)
scriptContext.Execute(1);
else
while (scriptContext.FunctionStack.Count >= iStackDepth)
scriptContext.Execute(1);

// check for end of script
if (scriptContext.Terminated)
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Editor;
scriptState.m_scriptContext.Reset();
txtScript.Tag = scriptState;
UpdateInterface();
return;
}
}
catch (Exception exception)
{
m_tmrDebugger.Enabled = false;
scriptState.m_debugState = DebugState.Editor;
scriptState.m_scriptContext.Reset();
txtScript.Tag = scriptState;
UpdateInterface();
WriteOutput("Runtime Error: " + exception);
return;
}
}

m_lsbByteCode.NextInstruction = scriptState.m_scriptContext.NextInstruction;
m_lsbByteCode.SelectedIndex = m_lsbByteCode.NextInstruction;
UpdateInterface();
}

private void m_mniDebugToggleBreakpoint_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;

m_lsbByteCode.ToggleBreakpoint();
}

private void m_mniDebugDeleteAllBreakpoints_Click(object objectSender, EventArgs eventArgs)
{
if (m_tbcScripts.TabCount == 0) return;

m_lsbByteCode.ClearBreakpoints();
}

private void m_mniHelpAbout_Click(object objectSender, EventArgs eventArgs)
{
new AboutBox().ShowDialog(this);
}

private void m_tbcScripts_SelectedIndexChanged(object objectSender, EventArgs eventArgs)
{
UpdateInterface();
UpdateInterfaceByteCode();
}

#endregion

#region Public Methods

public MainForm()
{
InitializeComponent();
}

public object OnHostFunctionCall(String strFunctionName, List<object> listParameters)
{
if (strFunctionName == "Print")
{
WriteOutput(listParameters[0].ToString());
}
return null;
}

#endregion
}
}


Attachment:
001.png
001.png [ 62.82 KiB | Viewed 5441 times ]





Attachments:
Conscript_LIB_IDE_Mods.zip [295.32 KiB]
Downloaded 997 times

_________________
Please recommend my post if you found it helpful. ,
java,j2ee,ccna ,ccnp certified .
Author:
Expert
User avatar Posts: 838
Have thanks: 2 time

updated.


_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 2 posts ] 

  Related Posts  to : Conscript IDE: An Integrated Development Environment (IDE) i
 Get Php environment information     -  
 Best Asp.Net Development Company India     -  
 Business Development Manager     -  
 Restaurant’s Mobile App Development     -  
 Need help to hire an android app development company     -  
 Looking for sales agent for web development products     -  
 A Professional Portal Development Company     -  



Topic Tags

C# Projects







Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com