vote up 6 vote down star
4

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.

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.

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).

Does anyone know if that is possible? Register a class from a source file and then instantiate it etc.

ICard Cards[current] = new MyGame.CardLibrary.Card056();
Cards[current].OnEnterPlay(ref currentGameState);

The language is C#, but extra Bonus if it's possible to write the script in any .net language.

flag

9 Answers

vote up 6 vote down check

Oleg Shilo's C# Script solution (at codeproject) really is a great introduction to providing script abilities in your application.

A different approach would be to consider a language that is specifically built for scripting, such as IronRuby, IronPython, or Lua.

IronPython and IronRuby are both available today.

For a guide to embedding IronPython read How to embed IronPython script support in your existing app in 10 easy steps

Lua is a scripting language commonly used in games. There is a lua compiler for .net, available from codeplex -- http://www.codeplex.com/Nua

That codebase is a great read if you want to learn about building a compiler in .net.

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: Powershell Tunnel

link|flag
By the way, I've chosen this as the accepted answer because I wanted to loo at Python and IronPython anyway, so the IronPython approach works best for me. – Michael Stum Oct 25 '08 at 15:08
LuaInterface is a lua interpreter that works fantastic as well. – RCIX Oct 27 at 0:49
vote up 0 vote down

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.

link|flag
vote up 1 vote down

Yes, I thought about that, but I soon figured out that another Domain-Specific-Language (DSL) would be a bit too much.

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.

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.

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).

link|flag
vote up 3 vote down

I didn't try it, but I did see an article on Code Project that implements C# scripting in a .NET application.

http://www.codeproject.com/KB/cs/cs-script_for_cp.aspx

link|flag
vote up 1 vote down

You might be able to use IronRuby for that.

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.

If you really want to compile at run-time you could use the CodeDOM, then you could use reflection to load the dynamic assembly. MSDN article which might help.

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

If you don't want to use the DLR you can use Boo (which has an interpreter) or you could consider the Script.NET (S#) project on CodePlex. 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 (Irony.net).

link|flag
vote up 2 vote down

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).

Using .Net's CodeDom we compile the scripts from the DB, using the VB CodeDomProvider (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 CodeDomProvider.CompileAssemblyFromSource method to compile it (you can pass settings to force it to compile in memory only.

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.

link|flag
Really interesting Approach, thanks! – Michael Stum Sep 17 '08 at 7:44
vote up 2 vote down

I'd suggest using LuaInterface 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).

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.