vote up 0 vote down star

I'm working on a game (C#) that uses a Robocode-like programming model: participants inherit a base Class and add strategic behaviors. The game then loads instances of participants' Classes and the competition begins. Unfortunately, participants can "cheat" by sharing static variables between instances of their competitor Class.

How do I prevent static variable sharing between Class instances in a .NET language? I know this is accomplished in Java by using a separate ClassLoader per instance. What's the .NET equivalent?

Thanks in advance...

Note on the solution: my testing shows that separate AppDomains only work when loading a Class that extends MarshalByRefObject. I guess this makes sense - if you simply load a Serializable Class, the Class is copied into the current AppDomain so a second object from a different AppDomain will share its static vars. MarshalByRefObject guarantees that only a proxy is loaded into the current AppDomain and the statics stay behind in the loading AppDomain. See also: http://blogs.msdn.com/ericlippert/archive/2004/05/27/143203.aspx

flag

80% accept rate

4 Answers

vote up 3 vote down check

Load each competitor into a different AppDomain.

link|flag
wouldn't that prevent the competitors from interacting (i.e. competing)? – James Curran Sep 17 '08 at 15:50
No, because you can marshal interfaces between the different appdomains, and have the communication restricted to only what the interface provides. – Roger Lipscombe Oct 3 '08 at 16:31
vote up 6 vote down

static variables are per-AppDomain, so you could look into using different AppDomains, but I totally don't know what other consequences that may have.

Otherwise you could check the classes beforehand using reflection, and reject any classes that have static members.

link|flag
vote up 0 vote down

I don't have a specific answer, but I would look at the .NET Terrarium project. All participants are user loaded DLLs. They have done a lot of neat stuff to prevent unsafe and cheater code from loading/executing.

Justin Rogers has written extensively on Terrarium implementation details.

link|flag
vote up 1 vote down
if(typeof(CompetitorClass).GetFields(BindingFlags.Static))
{
 // take necessary steps against cheater!
}
link|flag

Your Answer

Get an OpenID
or

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