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

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Zooming, Window resizing
« on: 2009-03-03, 10:44:55 AM »
Hi everyone,

Just wondering, is there a way to change the size of a windowed game at runtime, without changing the resolution of the game I mean?  Would it be possible to allow the game to be resized?  This "resize", rather than showing more or less of the current map, would zoom in or out.  So small graphic would appear bigger, etc?  If it is not possible right now, what king of efforts would be necessary to change the source code to allow that?  What would be the general steps to follow?

Thanks
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

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

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: Zooming, Window resizing
« Reply #1 on: 2009-03-03, 11:38:53 PM »
good idea.
I assume zooming out will be fine, but zooming in will result in pixelation.

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 #2 on: 2009-03-04, 05:13:48 PM »
Actually I almost implemented this because it looked so easy.  I can't remember why I didn't.  It's built right in to the OpenGL framework and the video hardware, I assume, the ability to set the viewport size and view window size independently (or something like that).  Actually I think I just remembered why I didn't.  It worked, but in some cases you could see the spaces between the tiles when they got stretched.  I don't know if I'm using the wrong coordinates (if I need to be offsetting things by a half a pixel in some direction) or if that's the nature of drawing independent tiles.  But I didn't want to have to deal with that issue at the time so I didn't.  I think you could try a couple of things to enable that though (I can't remember exactly what I did).  First change "FormBorderStyle.FixedSingle" to "FormBorderStyle.Sizable" in GameForm.cs.  See how that behaves.  If that didn't do the trick, then also try changing "private bool scaleNativeSize = false;" to "private bool scaleNativeSize = true;" in Display.cs.  I think scaleNativeSize controls whether making the window larger will expose more of the map versus stretching the existing view.  So you see it's very close to already done -- it just has some issues when you turn it on.  Please tell us how it turns out.

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Zooming, Window resizing
« Reply #3 on: 2009-03-05, 07:51:18 AM »
Neat!!!

Thanks bluemonkmn,  I'm probably gonna try this tonight.  Oh, I can't wait to try it!
I'll keep you informed. :)
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 #4 on: 2009-03-05, 11:07:52 PM »
Well, I tried a couple of things... 

If I change the size of the window with "private bool scaleNativeSize = false;", I see more or less of the map.  When "private bool scaleNativeSize = true;", the whole thing zooms in or out.  The main problem is, when the display zone changes size, it would seem that the scrolling is not working fine.  My scripts don't scroll the character sprite into view.  It's also strange when I, change the size in the "zooming" mode, the aspect ratio changes, making the graphics become very thin or very wide.  I tried to add an event on the resize of the window to make sure the aspect ratio is always respected, but it does not seem to work so well.

I tried all this stuff in the project files of the game I am currently working on.  I'd like to post it here, but it's a little too big.  I'll try to make an example without all the extra stuff.  I could post it here when it's done, so if you're interested bluemonkmn, you could take a look and maybe take a step further.  I'm not sure what to do about the scrolling issue.

I didn't see the problem about the spaces between the tiles.  It never happened to me.

I'll post an example here, probably tomorrow night.

Thanks! :)
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 #5 on: 2009-03-06, 11:59:16 AM »
Allright here is the first test. 

I think I solved all of the problems for the "show more map option".  (Meaning that you can resize a window and it shows more or less of the map without zooming.) 

It behaves correctly I suppose.  If some of you guys want to test it and make it better, be my guest. :) 

I'm attaching the sgdk2 file to this post.  It's a very simple map with black and white tiles with lines accross them.  Those lines are useful to see if there is space between tiles or if the aspect ratio changes (tiles do not seem square if the ratio changes). 
There is a little stick man you can move around with the keyboard arrows to check the scrolling.  As far as I can see, it works fine, but I didn't test a lot.

Oups!  It would seem that the upload folder is full.  The two files I want to provide are not big.  100k each.  Can you help me out Bluemonkmn?
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 #6 on: 2009-03-06, 12:08:50 PM »
Okay, I'm writing explanations for the second file, even if I can't attach it for the moment.

The second file is for a zoom in, zoom out effect when the window is resized.  It does not seem to behave correctly.  When I resize the window to make it larger, the display of the game gets real big and seems to go over the bounds of the window.  But when I use a MessageBox.Show to get the size of the window and the size of the display, they seem equal.

The opposite is also true.  If I resize the window to make it smaller, the display gets real tiny, well under the size of the window.  But when I use a MessageBox.Show to get the size of the window and the size of the display, they seem equal.

By the way, I changed the color of the tiles, thinking it would help to see spaces between tiles as the window gets resized, so I know it's kinda ugly.  Hey, it's only for a test! ;)  I couldn't see spaces between tiles.

Oh, I successfully implemented an event to make sure the aspect ratio is always respected when the window gets resized.  So, graphics don't look too wide or too thin anymore.

I made modifications in GameForm.cs and Display.cs to do modifications for both tests.  These alterations can be found by searching for "vincent" in the source code.  My modifications are quite explicit I believe.

There is a little work to do here to finish the display size issue.  Can you help me out Bluemonkmn?  I'm clueless on this one.

As soon as bluemonkmn allows me to upload the test files, I'll provide them.

Thanks a lot! :)
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

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

SmartBoy16

  • Contributor
  • Fanatic
  • **
  • Posts: 587
  • Looking for inspiration.....
    • View Profile
    • Email
Re: Zooming, Window resizing
« Reply #7 on: 2009-03-07, 12:31:27 AM »
Oups!  It would seem that the upload folder is full.  The two files I want to provide are not big.  100k each.  Can you help me out Bluemonkmn?

box.net
Looking to the skies.....

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Zooming, Window resizing
« Reply #8 on: 2009-03-07, 08:20:48 AM »
Thanks for your info SmartBoy16, :)

Here are the links to download the example files.  They are going to be removed from the storage in two weeks I believe.  If anyone wants them after that, send me a message.

For the "show more or less map test":    http://www.adrive.com/public/7f0d5679c0dfce5a5bb1d1d895c99a9cd6a735dce3aec637eaac37e4554f4073.html

For the "zoom in or out test":     http://www.adrive.com/public/03c0aa1a710778e3b98eda6ae28390846185ef228dd2b5a7bcf8a09d558b3065.html

That's it! :)
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 #9 on: 2009-03-07, 09:07:46 AM »
I doubled the available space for attachments so it should be possible to attach files on posts again now.

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 #10 on: 2009-03-07, 09:14:06 AM »
Wow, you changed a lot more code than I was suggesting.  Really I thought you only needed to change 2 lines of code to get the zooming working.  Now I think you're maybe double-zooming, which is why the effect is exaggerated.  Did you try just changing the 2 lines (allowing the form to be resized, and setting the native scaling to true)?

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Zooming, Window resizing
« Reply #11 on: 2009-03-07, 09:36:21 AM »
I changed a little more code, because I wanted the size of the display to fit the size of the window.  (otherwise, the display size, wasn't changing).

I have a theory:  (I'm most probably mistaken)
I looked around in a couple of OpenGL forums, (I must admit that I understand almost nothing of it), but I saw in the display.cs class that the MatrixMode is in Projection.  I've found a couple of graphics that describe this mode, and, as I understand it, it's like projecting an image on a cinema screen.  I have the feeling that, even if the display control has the right size, the "camera" looking at the graphics is getting very near the graphics (when you resize the graphics to make them bigger), and the camera gets very far when the ersize is becoming smaller.  That would explain that even if the display fits the size of the screen, the actual graphics are much too small or much too big.

Does this help?  I completely lost.  I've been looking at the Gl.Ortho function, wondering if the last 2 parameters had something to do with the operation, but I don't understand what they mean.
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 #12 on: 2009-03-07, 09:45:21 AM »
I changed a little more code, because I wanted the size of the display to fit the size of the window.  (otherwise, the display size, wasn't changing).

I tried myself and saw the same thing.  The simplest way to make the display size match the window size is by changing this line of code in GameForm:
Code: [Select]
GameDisplay.Size = Display.GetScreenSize(mode);

with this:
Code: [Select]
GameDisplay.Dock = DockStyle.Fill;

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Zooming, Window resizing
« Reply #13 on: 2009-03-07, 09:55:55 AM »
Ok, here is the "exact" report on what I changed! ;)

First of all, for the zooming, I only changed the native scaling to true in Display.cs

Then, in GameForm.cs I changed these things:
Changed the borderStyle to sizable (as you were suggesting)
Changed the start position of the gameform to "centerscreen" (just for fun, it doesn't change anything really, it just makes the gameform appear in the middle of the screen when yuo launch the game)
Added an event that is launched when the window gets resized.

The event makes sure that the display iis always respecting the aspect ratio and fits the clientsize of the window

The code of the event:
Code: [Select]
 
private void GameForm_Resize(object sender, System.EventArgs e)
   {

      GameForm myForm = (GameForm)sender;
      int baseHeight = Display.GetScreenSize(myForm.GameDisplay.GameDisplayMode).Height;
      int baseWidth = Display.GetScreenSize(myForm.GameDisplay.GameDisplayMode).Width;
      double OriginalRatio = ((double)baseWidth / (double)baseHeight);
      double NewRatio = ((double)myForm.ClientSize.Width / (double)myForm.ClientSize.Height);
      if(OriginalRatio != NewRatio)
      {
         int newHeight = myForm.ClientSize.Width * baseHeight / baseWidth;
         myForm.ClientSize = new System.Drawing.Size(myForm.ClientSize.Width, newHeight);
      }
      GameDisplay.Size = myForm.ClientSize;

     //This part under is only used for debugging, making sure that the display size = clientsize of the game form
      Random num = new Random();
      if(num.Next(0, 1000) > 900)
      {    
         MessageBox.Show("FormWidth: " + myForm.ClientSize.Width.ToString() + " FormHeight: " + myForm.ClientSize.Height.ToString() + " GameDisplayWidth: " + GameDisplay.Size.Width.ToString() + " GameDisplayHeight: " + GameDisplay.Size.Height.ToString());
      }
   }

Okay, just seen yuor new post with the dockstyle.  It works well and makes a good part of the resize event obsolete.  But the aspect ratio isn't respected and I still have the problem with the zooming being too far or too near...  So the code of the event could be reduced to this:
Code: [Select]
   private void GameForm_Resize(object sender, System.EventArgs e)
   {

      GameForm myForm = (GameForm)sender;
      int baseHeight = Display.GetScreenSize(myForm.GameDisplay.GameDisplayMode).Height;
      int baseWidth = Display.GetScreenSize(myForm.GameDisplay.GameDisplayMode).Width;
      double OriginalRatio = ((double)baseWidth / (double)baseHeight);
      double NewRatio = ((double)myForm.ClientSize.Width / (double)myForm.ClientSize.Height);
      if(OriginalRatio != NewRatio)
      {
         int newHeight = myForm.ClientSize.Width * baseHeight / baseWidth;
         myForm.ClientSize = new System.Drawing.Size(myForm.ClientSize.Width, newHeight);
      }
}
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 #14 on: 2009-03-07, 09:58:19 AM »
I'm posting the "showmoremap" example here.  (this one is functional)
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

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