Adding Scripting functionality to .net Apps - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T12:54:36Zhttp://stackoverflow.com/feeds/question/260http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps6Adding Scripting functionality to .net AppsMichael Stum2008-08-01T23:22:08Z2008-09-27T18:03:44Z
<p>I have a little game written in C#. It uses a database as backend. It's a Trading Card Game, and I wanted to implement the function of the cards as Script.</p>
<p>What I mean is that I essentially have an Interface ICard which the Card implements (public class Card056 : ICard) and which contains function that are called by the game.</p>
<p>Now, to make the thing maintainable/moddable, I would like to have the Class for each card as source code in the database and essentially compile it on first use. So when I have to add/change a card, I'll just add it to the database and tell my app to refresh, without needing any Assembly-Deployment (especially since we would be talking about 1 assembly per card which means hundreds of assemblies).</p>
<p>Does anyone know if that is possible? Register a class from a source file and then instantiate it etc.</p>
<pre><code>ICard Cards[current] = new MyGame.CardLibrary.Card056();<br>Cards[current].OnEnterPlay(ref currentGameState);<br></code></pre>
<p>The language is C#, but extra Bonus if it's possible to write the script in any .net language.</p>
http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/267#2670Answer by Bernard for Adding Scripting functionality to .net AppsBernard2008-08-01T23:42:01Z2008-08-01T23:42:01Z<p>Hmm. I'm not savvy enough with .NET/C# to answer your question as is. However, what kind of things did you want to be modifiable? Because you could just define a little toy language for those things and parse/act upon that code yourself.</p>http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/269#2691Answer by Michael Stum for Adding Scripting functionality to .net AppsMichael Stum2008-08-01T23:49:57Z2008-08-01T23:49:57Z<p>Yes, I thought about that, but I soon figured out that another Domain-Specific-Language (DSL) would be a bit too much.</p>
<p>Essentially, they need to interact with my Gamestate in possibly unpredictable ways. For example, a card could have a rule "When this cards enter play, all your Undead Minions gain +3 Attack against flying enemies, except when the enemy is blessed". As Trading Card Games are turn based, the GameState Manager will fire OnStageX Events and let the cards modify other cards or the GameState in whatever way the Card needs.</p>
<p>If I try to create a DSL, I have to implement a rather large feature set and possibly constantly update it, which shifts the maintenance work to another part without actually removing it.</p>
<p>That's why I wanted to stay with a "real" .net Language to essentially be able to just fire the Event and let the Card manipulate the Gamestate in whatever way (within the Limits of the Code Access Security).</p>http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/278#2783Answer by EndangeredMassa for Adding Scripting functionality to .net AppsEndangeredMassa2008-08-02T00:12:12Z2008-08-02T00:12:12Z<p>I didn't try it, but I did see an article on Code Project that implements C# scripting in a .NET application.</p>
<p><a href="http://www.codeproject.com/KB/cs/cs-script_for_cp.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/cs-script_for_cp.aspx</a></p>http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/307#3076Answer by Leon Bambrick for Adding Scripting functionality to .net AppsLeon Bambrick2008-08-02T01:49:46Z2008-08-02T01:49:46Z<p>Oleg Shilo's C# Script solution (at codeproject) really is a great introduction to providing script abilities in your application.</p>
<p>A different approach would be to consider a language that is specifically built for scripting, such as IronRuby, IronPython, or Lua.</p>
<p>IronPython and IronRuby are both available today.</p>
<p>For a guide to embedding IronPython read
<a href="http://blogs.msdn.com/jmstall/archive/2005/09/01/Howto_embed_ironpython.aspx" rel="nofollow" title="How to embed IronPython script support in your existing app in 10 easy steps">How to embed IronPython script support in your existing app in 10 easy steps</a></p>
<p>Lua is a scripting language commonly used in games. There is a lua compiler for .net, available from codeplex -- <a href="http://www.codeplex.com/Nua" rel="nofollow" title="Nua is Lua for .net">http://www.codeplex.com/Nua</a></p>
<p>That codebase is a great read if you want to learn about building a compiler in .net.</p>
<p>A different angle altogether is to try Powershell. There are numerous examples of embedding powershell into an application -- here's a thorough project on the topic:
<a href="http://code.msdn.microsoft.com/PowerShellTunnel/Wiki/View.aspx?title=PowerShellTunnel%20Reference" rel="nofollow" title="PowerShell Tunnel">Powershell Tunnel</a></p>http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/344#3441Answer by EHaskins for Adding Scripting functionality to .net AppsEHaskins2008-08-02T04:18:15Z2008-08-02T04:23:02Z<p>You might be able to use IronRuby for that. </p>
<p>Otherwise I'd suggest you have a directory where you place precompiled assemblies. Then you could have a reference in the DB to the assembly and class, and use reflection to load the proper assemblies at runtime.</p>
<p>If you really want to compile at run-time you could use the CodeDOM, then you could use reflection to load the dynamic assembly. <a href="http://msdn.microsoft.com/en-us/library/microsoft.csharp.csharpcodeprovider.aspx" rel="nofollow">MSDN article which might help</a>.</p>http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/359#3591Answer by Jesse Ezell for Adding Scripting functionality to .net AppsJesse Ezell2008-08-02T06:16:23Z2008-08-02T06:16:23Z<P>You could use any of the DLR languages, which provide a way to really easily host your own scripting platform. However, you don't have to use a scripting language for this. You could use C# and compile it with the C# code provider. As long as you load it in its own AppDomain, you can load and unload it to your heart's content.</P>http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/3637#36372Answer by Nathan for Adding Scripting functionality to .net AppsNathan2008-08-06T16:28:19Z2008-08-08T20:00:22Z<p>If you don't want to use the DLR you can <a href="http://docs.codehaus.org/display/BOO/Boo+as+an+embedded+scripting+language" rel="nofollow">use Boo (which has an interpreter)</a> or you could consider <a href="http://www.codeplex.com/scriptdotnet" rel="nofollow">the Script.NET (S#) project on CodePlex</a>. With the Boo solution you can choose between compiled scripts or using the interpreter, and Boo makes a nice scripting language, has a flexible syntax and an extensible language via its open compiler architecture. Script.NET looks nice too, though, and you could easily extend that language as well as its an open source project and uses a very friendly Compiler Generator (<a href="http://www.codeplex.com/irony" rel="nofollow">Irony.net</a>).</p>http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/7217#72172Answer by Keith for Adding Scripting functionality to .net AppsKeith2008-08-10T15:24:23Z2008-08-10T15:24:23Z<p>The main application that my division sells does something very similar to provide client customisations (which means that I can't post any source). We have a C# application that loads dynamic VB.Net scripts (although any .Net language could be easily supported - VB was chosen because the customisation team came from an ASP background).</p>
<p>Using .Net's CodeDom we compile the scripts from the DB, using the VB <code>CodeDomProvider</code> (annoyingly it defaults to .Net 2, if you want to support 3.5 features you need to pass a dictionary with "CompilerVersion" = "v3.5" to its ctor). Use the <code>CodeDomProvider.CompileAssemblyFromSource</code> method to compile it (you can pass settings to force it to compile in memory only.</p>
<p>This would result in hundreds of assemblies in memory, but you could put all the dynamic classes' code together into a single assembly, and recompile the whole lot when any change. This has the advantage that you could add a flag to compile on disk with a PDB for when you're testing, allowing you to debug through the dynamic code.</p>
http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-apps/79013#790132Answer by harningt for Adding Scripting functionality to .net Appsharningt2008-09-17T01:41:29Z2008-09-17T01:41:29Z<p>I'd suggest using <a href="http://luaforge.net/projects/luainterface/" rel="nofollow">LuaInterface</a> as it has fully implemented Lua where it appears that Nua is not complete and likely does not implement some very useful functionality (coroutines, etc).</p>
<p>If you want to use some of the outside prepacked Lua modules, I'd suggest using something along the lines of 1.5.x as opposed to the 2.x series that builds fully managed code and cannot expose the necessary C API.</p>