Author Topic: Quick Question  (Read 3476 times)

0 Members and 1 Guest are viewing this topic.

Offline johnno56

  • Forum Resident
  • Posts: 1270
  • Live long and prosper.
    • View Profile
Quick Question
« on: June 26, 2019, 09:12:12 pm »
If on the off chance that I create a useful game etc. would it be possible, for those of you that are using laptops, to find out the the minimum and maximum screen resolutions? I don't need any other PC info. Just screen sizes. If not, perhaps indicate one of the three 'old style' standards? 640x480 or 800x600 or 1024x768?

Thank you.
Logic is the beginning of wisdom.

Offline Pete

  • Forum Resident
  • Posts: 2361
  • Cuz I sez so, varmint!
    • View Profile
Re: Quick Question
« Reply #1 on: June 26, 2019, 10:34:27 pm »
1366 x 768 max
800 x 600 min
Want to learn how to write code on cave walls? https://www.tapatalk.com/groups/qbasic/qbasic-f1/

Offline OldMoses

  • Seasoned Forum Regular
  • Posts: 469
    • View Profile
Re: Quick Question
« Reply #2 on: June 26, 2019, 10:41:12 pm »
Same here, 1366 x 768 down to 800 x 600

FellippeHeitor

  • Guest
Re: Quick Question
« Reply #3 on: June 26, 2019, 11:24:05 pm »
Max 1920x1080 and min 1280×720 here (I have an LCD TV for monitor).

Whatever you do, don't force fullscreen on your users.

Offline RhoSigma

  • QB64 Developer
  • Forum Resident
  • Posts: 565
    • View Profile
Re: Quick Question
« Reply #4 on: June 27, 2019, 12:29:20 am »
min. 800x600 / max. 1600x900  (HP Pavillon G series)
My Projects:   https://qb64forum.alephc.xyz/index.php?topic=809
GuiTools - A graphic UI framework (can do multiple UI forms/windows in one program)
Libraries - ImageProcess, StringBuffers (virt. files), MD5/SHA2-Hash, LZW etc.
Bonus - Blankers, QB64/Notepad++ setup pack

Offline Ashish

  • Forum Resident
  • Posts: 630
  • Never Give Up!
    • View Profile
Re: Quick Question
« Reply #5 on: June 27, 2019, 01:48:03 am »
max. 1366 x 768 / min. 800 x 600
if (Me.success) {Me.improve()} else {Me.tryAgain()}


My Projects - https://github.com/AshishKingdom?tab=repositories
OpenGL tutorials - https://ashishkingdom.github.io/OpenGL-Tutorials

Offline Petr

  • Forum Resident
  • Posts: 1720
  • The best code is the DNA of the hops.
    • View Profile
Re: Quick Question
« Reply #6 on: June 27, 2019, 06:55:58 am »
Hi. 1680 x 1050 or less for me :-D

Offline johnno56

  • Forum Resident
  • Posts: 1270
  • Live long and prosper.
    • View Profile
Re: Quick Question
« Reply #7 on: June 27, 2019, 08:51:54 am »
Cool... Thanks a lot guys. Good to know.

J
Logic is the beginning of wisdom.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Quick Question
« Reply #8 on: June 27, 2019, 08:58:06 am »
Hi Johnno,

Another 1366 x 768 here (probably), I use left side for task bar to Windows tools so 1200 x 700 more comfortable.

800 x 600 is great size, if don't need panoramic views.

I agree with Fellippe, don't force full screen on your users, make it an option.

Offline TempodiBasic

  • Forum Resident
  • Posts: 1792
    • View Profile
Re: Quick Question
« Reply #9 on: June 27, 2019, 09:42:51 am »
on my 15'' monitor of  notebook I find values like OldMoses and Ashish

Quote
max. 1366 x 768 / min. 800 x 600

Programming isn't difficult, only it's  consuming time and coffee

Offline Cobalt

  • QB64 Developer
  • Forum Resident
  • Posts: 878
  • At 60 I become highly radioactive!
    • View Profile
Re: Quick Question
« Reply #10 on: June 27, 2019, 12:17:26 pm »
I would make the game have a base size of 640x480. that way it doesn't use up max real estate on somebodies screen. then add the option of larger screen sizes. I managed this with my SIMON game, to a limited extent, by scaling everything.
Granted after becoming radioactive I only have a half-life!

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Quick Question
« Reply #11 on: June 27, 2019, 12:39:10 pm »
One easy tip:  Add $RESIZE:SMOOTH at the top of your code, and then allow the user to scale it to whatever is suitable for their system.

http://www.qb64.org/wiki/$RESIZE
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!