Jump to content




Fullscreen Mode


  • You cannot reply to this topic
26 replies to this topic

#1 Dlcruz129

    What's a Lua?

  • Members
  • 1,423 posts

Posted 11 January 2013 - 01:11 PM

So, I had an idea today.

When the computer is open and you press a key on your keyboard (probably something like F6), it would make the GUI take up the whole Minecraft window. The text size would stay the same, therefore you could have higher resolution graphics. There would also be a new function:
term.isFullscreen() -- returns true if it is in fullscreen, and false if it's not.

We could have higher resolution graphics, and I can also see this being useful for Operating Systems who want a "desktop" with a clock, programs, Start button, etc.

#2 ChunLing

  • Members
  • 2,027 posts

Posted 11 January 2013 - 01:42 PM

Huh. Is that even doable with the normal gui interface methods?

#3 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 11 January 2013 - 01:53 PM

View PostChunLing, on 11 January 2013 - 01:42 PM, said:

Huh. Is that even doable with the normal gui interface methods?
I can think of a way or two to do it...

#4 NeverCast

  • Members
  • 400 posts
  • LocationChristchurch, New Zealand

Posted 11 January 2013 - 02:08 PM

Yeah I say it's plenty possible with the current GUI implementation

#5 Cloudy

    Ex-Developer

  • Members
  • 2,543 posts

Posted 11 January 2013 - 02:34 PM

Nah. Little use really. Besides, we pass through all keys we can to the computer - and this would be any key other than escape.

#6 Dlcruz129

    What's a Lua?

  • Members
  • 1,423 posts

Posted 11 January 2013 - 02:47 PM

View PostCloudy, on 11 January 2013 - 02:34 PM, said:

Nah. Little use really. Besides, we pass through all keys we can to the computer - and this would be any key other than escape.

I think higher resolution graphics would be useful.

#7 Cloudy

    Ex-Developer

  • Members
  • 2,543 posts

Posted 11 January 2013 - 03:25 PM

It doesn't make logical sense. This is equivalent in real life to you pressing F6 and your monitor expanding to twice its size.

#8 Orwell

    Self-Destructive

  • Members
  • 1,091 posts

Posted 11 January 2013 - 03:30 PM

And wouldn't screen proportions (IRL) affect the resolution of the GUI? It would get quite messy if people with 16:9 screen proportions could have more characters on one line than people with 4:3 screen proportions...

#9 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 11 January 2013 - 04:10 PM

View PostCloudy, on 11 January 2013 - 03:25 PM, said:

It doesn't make logical sense. This is equivalent in real life to you pressing F6 and your monitor expanding to twice its size.
No but I can go into settings and change my screen resolution from 800x600 to 1680x1050

#10 Orwell

    Self-Destructive

  • Members
  • 1,091 posts

Posted 11 January 2013 - 04:31 PM

View PostTheOriginalBIT, on 11 January 2013 - 04:10 PM, said:

View PostCloudy, on 11 January 2013 - 03:25 PM, said:

It doesn't make logical sense. This is equivalent in real life to you pressing F6 and your monitor expanding to twice its size.
No but I can go into settings and change my screen resolution from 800x600 to 1680x1050
Last time I checked (which is one minute ago), you can also change the character resolution of ComputerCraft in the config file. Also, changing your resolution from 800x600 to 1680x1050 doesn't make your screen 4 times larger. :P

#11 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 11 January 2013 - 04:37 PM

View PostOrwell, on 11 January 2013 - 04:31 PM, said:

View PostTheOriginalBIT, on 11 January 2013 - 04:10 PM, said:

View PostCloudy, on 11 January 2013 - 03:25 PM, said:

It doesn't make logical sense. This is equivalent in real life to you pressing F6 and your monitor expanding to twice its size.
No but I can go into settings and change my screen resolution from 800x600 to 1680x1050
Last time I checked (which is one minute ago), you can also change the character resolution of ComputerCraft in the config file. Also, changing your resolution from 800x600 to 1680x1050 doesn't make your screen 4 times larger. :P
Doesn't changing the char resolution resize the gui window? ... No but it displays a crisper image as the programs have access to more pixels...

#12 Cloudy

    Ex-Developer

  • Members
  • 2,543 posts

Posted 11 January 2013 - 11:53 PM

I think you're just arguing for the sake of it now. This isn't going to happen anyway. It gets even more complicated when you consider multiplayer.

#13 Sebra

  • Members
  • 726 posts

Posted 12 January 2013 - 03:26 AM

View PostCloudy, on 11 January 2013 - 02:34 PM, said:

Nah. Little use really. Besides, we pass through all keys we can to the computer - and this would be any key other than escape.
For me F11 change fullscreen mode and cannot be get, F10 works not each time, Esc close gui but cannot be get.
Also can you make gui close with mouse click outside gui?

#14 Cloudy

    Ex-Developer

  • Members
  • 2,543 posts

Posted 12 January 2013 - 04:03 AM

View PostSebra, on 12 January 2013 - 03:26 AM, said:

For me F11 change fullscreen mode and cannot be get, F10 works not each time, Esc close gui but cannot be get.
Also can you make gui close with mouse click outside gui?

Like I said, all keys that we can.

And no, that would be annoying when trying to change focus back to the minecraft window.

#15 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 12 January 2013 - 02:31 PM

View PostCloudy, on 12 January 2013 - 04:03 AM, said:

Like I said, all keys that we can.

Just a side note here.... does the ESC key actually get passed to the program? or is it just captured by the gui?
The reason I ask is I was wanting to get a screen to reset to default when someone leaves the computer... And I can't test to see if it gets passed with CC-Emu... :P

#16 ChunLing

  • Members
  • 2,027 posts

Posted 12 January 2013 - 04:33 PM

It does send an event ("key", 1), if that's what you're asking.

#17 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 12 January 2013 - 04:36 PM

View PostChunLing, on 12 January 2013 - 04:33 PM, said:

It does send an event ("key", 1), if that's what you're asking.
Yeh thats what I was asking... cool thanx :)

+1 for the disadvantage of testing in CC-Emu and it closing the computer GUI ... :P

#18 Cloudy

    Ex-Developer

  • Members
  • 2,543 posts

Posted 13 January 2013 - 01:36 AM

No, it doesn't.

#19 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 13 January 2013 - 01:39 AM

View PostCloudy, on 13 January 2013 - 01:36 AM, said:

No, it doesn't.
Damn... :/
Is that a choice on you guys part, or on minecraft's part?

#20 Cloudy

    Ex-Developer

  • Members
  • 2,543 posts

Posted 13 January 2013 - 01:48 AM

Our part. Does it make sense that a computer knows when you stop looking at it?





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users