Author Topic: Zooming, Window resizing  (Read 13192 times)

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Zooming, Window resizing
« Reply #15 on: 2009-03-07, 09:59:44 AM »
And an updated version of the "zooming" example.  Still not working, but with less changes to the source code and using bluemonkmn DockStyle.Fill line of code.
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Zooming, Window resizing
« Reply #16 on: 2009-03-07, 09:14:33 PM »
Hi guys!

Well, I worked a lot and through a combination of intuition, openGl forums reading, luck, trials and errors, not to mention a good reading of the SGDK2 sourcecode, I succeeded!!!  :nerd:

As far as I can see, the zooming now works well for window resizing.  I wasn't far off with my idea of a camera.  In fact, not only must the Display size change but there is a Rectangle within it that must be resized too.  This Rectangle is used to draw the graphics on, like the screen of a cinema (as I understood it). 

To achieve this, I modified another line of code in the Display.cs class.  In the function "Scissor" I changed this line
Code: [Select]
GL.Scissor(rect.X, ClientRectangle.Height - rect.Y - rect.Height, rect.Width, rect.Height);
for this line
Code: [Select]
GL.Scissor(rect.X, rect.Y, ClientSize.Width, ClientSize.Height);

And in the MapBase.cs class, for the TotalView property, I changed this line
Code: [Select]
return m_Display.DisplayRectangle;for these lines
Code: [Select]
int rectWidth = Display.GetScreenSize(m_Display.GameDisplayMode).Width;
int rectHeight = Display.GetScreenSize(m_Display.GameDisplayMode).Height;
return new Rectangle(0, 0, rectWidth, rectHeight);

I would like to explain exactly what I did and how that came to work, but I'm really not sure myself... :-[
My biggest hints were bluemonkmn comments on these parts of code.

I didn't test if it works for games where the display is splitted for 2 players for example.  Would someone like to test it?
I'm providing my example here.  As always, look for modifications in the code by searching for "vincent".  in these sections, the original code is commented out and my lines of codes are clearly identified.

Thanks a lot for your help bluemonkmn! :)  I really appreciate it! :D
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Zooming, Window resizing
« Reply #17 on: 2009-03-07, 11:43:27 PM »
I don't have an SGDK2 system handy at the moment.  What did your additional changes accomplish this time?  Did they make the scrolling margins work properly?  Did they eliminate the lines between tiles?

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Zooming, Window resizing
« Reply #18 on: 2009-03-08, 07:50:58 AM »
The scrolling margins work properly and I don't see lines between tiles. 
But, maybe the tiles I use do not help me seeing lines between tiles.  So, for the lines, I'm not 100% sure.
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Zooming, Window resizing
« Reply #19 on: 2009-03-08, 08:37:20 AM »
Did the changes you made accomplish that, or did that already work with just the 3 line changes?

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Zooming, Window resizing
« Reply #20 on: 2009-03-08, 08:40:08 AM »
No, the changes I made were necessary.  Without them the scrolling margins do not work properly.
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com