Author Topic: Preloading Objects  (Read 18102 times)

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Preloading Objects
« Reply #30 on: 2008-02-24, 07:40:17 AM »
I don't understand -- I don't see any mention of that above.  So the result is that it's running very quickly and not loading anything?  If you don't know what string to pass, look at the generated Frameset.cs file to see what string it is passing when calling GetTextureRef.

Tanja

  • Clever
  • Fanatic
  • ***
  • Posts: 606
    • View Profile
Re: Preloading Objects
« Reply #31 on: 2008-02-25, 01:51:20 PM »
please just tell me a place in some .cs-file i can insert the single line. let's try to find a good place for it.
Display.TextureRef dummy = new Display.TextureRef(Project.GameWindow.GameDisplay, "MyGraphicSheet");

p.s.: this surprises me. thought all spaces would be turned into underscores.
new System.Drawing.Rectangle(1408, 1920, 128, 128)),
new Frame(disp.GetTextureRef("windrad gross"), 126,

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Preloading Objects
« Reply #32 on: 2008-02-25, 07:06:55 PM »
please just tell me a place in some .cs-file i can insert the single line. let's try to find a good place for it.
Display.TextureRef dummy = new Display.TextureRef(Project.GameWindow.GameDisplay, "MyGraphicSheet");

OK, search GameForm.cs for "while(true)".  That line begins the main game loop.  Add the new code right above that line in order to load the image right before the main game loop begins.

p.s.: this surprises me. thought all spaces would be turned into underscores.
new System.Drawing.Rectangle(1408, 1920, 128, 128)),
new Frame(disp.GetTextureRef("windrad gross"), 126,


Underscore only replaces space when an object name has to be converted into a C# name.  In this case it is only a string, so it doesn't need to be converted into a formal C# name like many other object names do.

Tanja

  • Clever
  • Fanatic
  • ***
  • Posts: 606
    • View Profile
Re: Preloading Objects
« Reply #33 on: 2008-02-26, 01:27:52 PM »
the same.... no effect.

Display.TextureRef dummy = new Display.TextureRef(Project.GameWindow.GameDisplay, "windrad gross");

      while(true)
      {
         if (OnFrameStart != null)

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Preloading Objects
« Reply #34 on: 2008-02-27, 06:09:25 AM »
I'm still not clear on whether that line of code is causing a delay (partly working, but then forgetting) or not (completely failing).  Can you tell me?

Tanja

  • Clever
  • Fanatic
  • ***
  • Posts: 606
    • View Profile
Re: Preloading Objects
« Reply #35 on: 2008-02-27, 08:38:09 AM »
there is no delay at all.

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Preloading Objects
« Reply #36 on: 2008-02-27, 10:03:25 AM »
Try using the version of code that looks more like the generated code in Frameset.cs.  It obviously works in Frameset.cs, so maybe using code similar to that will work better.