| | | Forum Newbie
       
Group: Forum Members Last Login: 7/4/2009 3:16:19 AM Posts: 6, Visits: 11 |
| | The VR920 supports resolutions not higher than 1024x768 at 60 Hz. At this resolutions most web pages now-a-days tends to be bigger if they are coded in the wrong way or simply contains so much information that they can't fit in my web browser at this resolution. What if the LCD's inside the unit, while not in a d3d fullscreen application, didn't need to show the whole desktop at once, and using head tracking to move around? This way I can still browse the web at full monitor resolutions, getting all web pages to fit in my browser (and maybe read the text clearly too), while taking advantage of the units' full potential, except the 3D functionality of course, but that's another story. This can be done in a firmware update right? |
| | | | 
Supreme Being
       
Group: Forum Members Last Login: Yesterday @ 6:44:27 PM Posts: 246, Visits: 1,879 |
| Check the GlovePie please, and search the forum, latest GlovePie include script for stuff like you described. It called "HeadTrackingDesktop.PIE", here it is:
pie.FrameRate = 60Hz
if vr920.Exists then
screen.ScrollX = Smooth(MapRange(vr920.yaw,-25.6 degrees,25.6 degrees,-screen.Width,Screen.Width),30,10)
screen.ScrollY = Smooth(MapRange(vr920.pitch,19.2 degrees,-19.2 degrees,-screen.Height,Screen.Height),10,10)
else
if up then screen.scrolly -= 10
if down then screen.scrolly += 10
if left then screen.scrollx -= 10
if right then screen.scrollx += 10
end if
Run this script in GlovePie:
http://carl.kenner.googlepages.com/glovepie_download
And you will have veery big desktop resolution where you can position your windows with full 360 degree head-tracking. |
| | | | Forum Newbie
       
Group: Forum Members Last Login: 7/18/2009 12:01:33 PM Posts: 4, Visits: 37 |
| | Unfortunately, that script and glovepie in general still leaves something to be desired. From playing with it for a few hours, the implementation and the way Windows (XP) and/or the display drivers work, the individual windows won't scale larger than the display size and the tracking won't pan around, it jumps around from window to window. Also I had to crank up the smoothing to make it even stable enough to be useful/viewable. Still playing with with other methods and windows functions. But I am afraid attempting to force "Windows" into a 3D immersive interface is trying to fit a round peg into a square hole. |
| |
|
|