Author Topic: functionality of sgdk2  (Read 31463 times)

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: functionality of sgdk2
« Reply #30 on: 2007-02-22, 09:50:33 AM »
I have IE 7, just for fun.  I know that .NET controls cannot be embedded in Firefox directly, but they can be used in Java via COM, which can then be embedded in Firefox.  I haven't tried it, so I don't know how well that would work.
Edward Dassmesser

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: functionality of sgdk2
« Reply #31 on: 2007-02-22, 11:11:26 AM »
Good news, in some sense.  I hacked together a working example of making it work, somehow.  Only the menu works.  It crashes as soon as you select "Start a new game".  On my local web server, the error comes from .NET, saying that it can't find the assembly SHFL when trying to deserialize in the GameLoad function.  Online, the error comes from  Internet Explorer crashing.

It takes several seconds to download the entire thing before you can play it (~500KB), and even then, you can still only get the menu to work.  Better than nothing, though!

Oh, and one more thing.  You need to give full permissions to the running assembly, either by zone or by URL.  Here's the sample:

http://www.beardedchild.com/files/ActiveXTest

(Remember, it only works in IE7, and it will crash if you select anything from the menu)
Edward Dassmesser

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: functionality of sgdk2
« Reply #32 on: 2007-02-23, 08:14:45 AM »
No more progress yet.  If anybody wants to try their own hand at it, I can upload the source files to download.  The good thing to note is that it does work as a COM control in itself rather than a form, so that it can be put in any form (from a different programming language, for example). 
Edward Dassmesser

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: functionality of sgdk2
« Reply #33 on: 2007-02-23, 10:11:29 PM »
I've got it working locally now without sound.  I found several people who had almost exactly the same problem I've been having, and that is that the deserialization of the SaveUnit was trying to load the SHFL assembly, and it wasn't finding it, because it was looking in the wrong locations.  I used one of the solutions in This Thread in the LoadGame function which remedies the problem.

In short, I can now play the game in Internet Explorer!

Unfortunately, as I anticipated, loading fmodex.dll is presenting some problems.  I'll look into that next.  But if you aren't using any sound (or other external files) then it should work just fine!

The solution I see right now is embedding the DLL into the game and loading it dynamically from a stream rather than a filename.  Unfortunately, I don't know if that's possible with an unmanaged DLL.  It might be possible to write out the dll to the application data directory from within the program just before using it and then referencing it.  I'll keep this thread updated on my progress.
Edward Dassmesser

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: functionality of sgdk2
« Reply #34 on: 2007-02-23, 10:56:35 PM »
Okay, so it's a hacked together example, BUT:

A fully-functional example (WITH sound) of Super Happy Funland, as playable in Internet Explorer 7.  It works by checking to see if fmodex.dll exists in the current directory (which happens to be my desktop when I try from IE), and if not, writes it out from an embedded resource during project initialization.  It makes SHFL significantly larger, and it's rather conspicuous on the desktop, but hey, I got a fully-functional SGDK2 game to work in an internet browser!

Link: http://www.beardedchild.com/files/ActiveXTest/

The only downside I see right now is that there appears to be no way to close the browser without closing the process from the task manager or navigating away.  I don't know why.  And navigating away continues the music playing in the background.  I imagine it most likely has something to do with the fact that I had to get rid of the Close event when I turned the GameWindow into a UserControl.  Anywho, let me know if the example works for you.
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: functionality of sgdk2
« Reply #35 on: 2007-02-24, 07:49:11 AM »
Well, I can't get around the security problem.  I went to .NET configuration and set trusted sites to have full trust, and still got the exception.  Oh... I guess that's because I only have .NET framework configuration for .NET 1.1.

So here it is for anyone else who wants to try modifying their permissions to allow this to run.  Go to Windows\Microsoft.NET\Framework\v2.0.50727 and type the following:

To check your current permissions:
caspol -m -lg

To add Full Trust to sizes in the trusted zone:
caspol -m -cg Trusted_Zone FullTrust

After doing this, however, I got an error at a familiar place you mentioned:
Microsoft.DirectX.DirectInput.Device.SetCooperativeLevel(IntPtr hwnd, CooperativeLevelFlags flags)

So Durnurd, is it possible to make all the changes by just modifying code that's editable in the project, or would you have to modify the code generator?

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: functionality of sgdk2
« Reply #36 on: 2007-02-24, 11:21:55 AM »
Hmm, I thought commented that line out.  Checking... checking...yes, I did indeed.

Oh, that was only for the keyboard.  You have a gamepad.  I didn't comment that out.

I can make almost every change without the need to change the code generator.  The only problem that arises is project.cs.  It creates a New GameForm and sets its Game property to it, and that, in the end, is what runs the project.  However, when turning the project into a runnable control, it's looking for a Control to call a constructor on rather than a Main() method.  So it would call the constructor on the GameForm, which I could modify to do everything except set the project's Game property.  The way I got around it was by changing the void Main in the project to a project.Init() call, which I called from a wrapper class which is the one that you embed in the web page.  I changed the GameForm into a Singleton and just called the GameForm.Instance() and changed the project.Init() to set its Game to GameForm.Instance() as well.

So I would need to be able to edit Project.cs as far as I can tell.

Unless... if I changed GameForm into a wrapper class for the instance variable of the Game (GameControl, for example) by just copying GameForm and only doing a call to all of the functions directly.  It seems like a lot of work though.  But it would be possible.

So it's possible to make all of the changes without changing the code generator.  But I think having access to the Main() method or Project.cs would make it easier.

I updated the sample project so that it will run with a gamepad now.  I also changed it to an .EXE so it's executable as either a game in itself or as a control in another program (like IE7).  Try it now:

Link: http://www.beardedchild.com/files/ActiveXTest/
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: functionality of sgdk2
« Reply #37 on: 2007-02-24, 02:33:47 PM »
Wow! Nice work! So I should probably pull out the pieces of Project.cs that are generated and make Project.cs visible as a Source Code file and have only the few generated pieces in a generated file of their own.  Oh if only I were using .NET 2.0 I could use partial classes.  But I think I'll still hold off until a later release to upgrade to 2.0.

So this was pure .NET with no ActiveX, right?  I think people will be quite impressed if I can tell them that SGDK2 supports games embedded in web pages (with just a couple modifications to the client's security settings ;) ).  Next question, I guess, is if there's any way to run without needing the extra security.  If DirectX is insecure, there must be some technology that SGDK2 can target that IE/.NET won't be quite so paranoid about -- Flash perhaps?  Whatever it is, it would have to be able to integrate with a .NET application's UI.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: functionality of sgdk2
« Reply #38 on: 2007-02-24, 04:54:34 PM »
There was no ActiveX involved, correct.  I just made changes to the .NET code, and included an object in an HTML file from the created assembly.

As for the security permissions, I don't even know how to look into that.  Those confuse me way too much.  I'll leave that up to somebody else for now.  And that somebody else might also want to look into other ways of using fmodex.dll also :)
Edward Dassmesser

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: functionality of sgdk2
« Reply #39 on: 2007-02-24, 08:17:50 PM »
I'm trying it right now.  ;) My internet real slow, I passed the monthly download limit, internet now goes 36kb/sec and compared to the normal speed of 100MB/sec for my internet, it seems extremely slow.  :-[ This could take a while.   :(

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: functionality of sgdk2
« Reply #40 on: 2007-02-24, 08:55:30 PM »
Ok, this is taking too long. I'll wait until March when my broadband is back.

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: functionality of sgdk2
« Reply #41 on: 2007-02-24, 10:05:10 PM »
normal speed of 100MB/sec for my internet
Woah.  100 MB/sec?  Could you seriously normally download a whole CD in 7 seconds?

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: functionality of sgdk2
« Reply #42 on: 2007-02-25, 12:03:12 AM »
That would make sense, but I doubt it. Web pages usually load in 1 second or less, but saving a file to your computer off the internet is slower for some reason.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: functionality of sgdk2
« Reply #43 on: 2007-02-26, 03:55:25 PM »
Looks like DirectX needs FullTrust to run.  I asked about it on the MSDN forums.  Here's what they had to say:

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1269780&SiteID=1
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: functionality of sgdk2
« Reply #44 on: 2007-02-26, 06:55:21 PM »
Hmm... This WPF stuff looks promising.  I might just have to jump straight to .NET 3.0 if it means SGDK2 games could run in a browser without security issues.  Wikipedia seems to have some good info: http://en.wikipedia.org/wiki/Windows_Presentation_Foundation