lsgheero Posted September 10, 2012 Posted September 10, 2012 Hey guys, I have created the following video script which should take my 3200x900 screen res (1600x900 each monitor) and make it so that the main dcs camera view is on the first monitor and that my mfcds are displayed on the second. However it bleeds the camera about 400-500 pixels into the second monitor and I can also not see the "fly, etc buttons" when loading the games. Any thoughts I read some of the pdf guides on setting these up thats how I got what I have thus far which should be working lol.... _ = function(p) return p; end; name = _('camera+lmfcd+rmfcd'); Description = 'camera+lmfcd+rmfcd'; Viewports = { Center = { x = 0; y = 0; width = screen.width / 2; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 2; } } LEFT_MFCD = { x = screen.width / 2; y = (screen.height / 3) / 2; width = screen.width / 4; height = screen.width / 4; } RIGHT_MFCD = { x = (screen.width / 4) * 3; y = (screen.height / 3) / 2; width = screen.width / 4; height = screen.width / 4; } UIMainView = Viewports.Center
lsgheero Posted September 10, 2012 Author Posted September 10, 2012 Heres a pic of the situation in case that offers a better idea :)
PeterP Posted September 10, 2012 Posted September 10, 2012 (edited) 1. Dummies Guide for the “MonitorSetup.lua“ and placing/positioning different view-ports 1.0.X 2. A Plea for View-Export/Multi-head/TH Users. - ED Forums Check that you disabled DPI scaling in Windows and please post a DxDiag to get more help. Edited September 10, 2012 by PeterP
lsgheero Posted September 10, 2012 Author Posted September 10, 2012 I have dpi scaling disabled for both the launcher.exe and dcs.exe apps using registry entries. Here is my DX Daig.. was too large to post here so... http://pastebin.com/FhPtbcix
lsgheero Posted September 10, 2012 Author Posted September 10, 2012 nvm not sure what changed with this but I just wrote out the pixels instead of using the math type script....its working now. new script in case anyone else runs my res (3200x900) and wants todo the same. _ = function(p) return p; end; name = _('Dual Display'); Description = 'camera+lmfcd+rmfcd'; Viewports = { Center = { x = 0; y = 0; width = 1600; height = 900; viewDx = 0; viewDy = 0; aspect = screen.aspect / 2; } } LEFT_MFCD = { x = 1600; y = 150; width = 500; height = 500; } RIGHT_MFCD = { x = 2400; y = 150; width = 500; height = 500; } UIMainView = Viewports.Center
PeterP Posted September 10, 2012 Posted September 10, 2012 I have a suspicion... Please post your > C:\Users\>Your user name<\Saved Games\DCS\Config\options.lua
lsgheero Posted September 10, 2012 Author Posted September 10, 2012 options = { ["difficulty"] = { ["fuel"] = false, ["easyRadar"] = false, ["miniHUD"] = false, ["birds"] = 0, ["optionsView"] = "optview_all", ["permitCrash"] = false, ["immortal"] = false, ["easyCommunication"] = true, ["easyFlight"] = false, ["radio"] = false, ["labels"] = false, ["map"] = true, ["cockpitLanguage"] = "english", ["units"] = "imperial", ["tips"] = true, ["reports"] = true, ["externalViews"] = true, ["iconsTheme"] = "nato", ["padlock"] = false, ["weapons"] = true, ["setGlobal"] = true, ["geffect"] = "realistic", }, -- end of ["difficulty"] ["graphics"] = { ["multiMonitorSetup"] = "dualdisplay", ["color"] = "32", ["preloadRadius"] = 100, ["heatBlr"] = 0, ["scenes"] = "low", ["water"] = 0, ["fullScreen"] = false, ["disableAero"] = true, ["visibRange"] = "High", ["treesVisibility"] = 1500, ["aspect"] = 3.5555555555556, ["haze"] = 1, ["HDR"] = 0, ["TranspSSAA"] = false, ["textures"] = 0, ["cockpitShadows"] = false, ["shadows"] = 0, ["effects"] = 3, ["MSAA"] = 0, ["height"] = 900, ["sync"] = false, ["shadowTree"] = false, ["civTraffic"] = "", ["width"] = 3200, ["clutterMaxDistance"] = 0, ["lights"] = 2, }, -- end of ["graphics"] ["plugins"] = { ["CA"] = { ["ground_aim_helper"] = true, ["ground_target_info"] = true, ["ground_platform_shake"] = false, ["ground_show_cursor"] = false, }, -- end of ["CA"] ["P-51D"] = { ["assistance"] = 100, ["autoRudder"] = false, }, -- end of ["P-51D"] }, -- end of ["plugins"] ["views"] = { ["cockpit"] = { ["mirrors"] = false, ["reflections"] = false, ["russianHud"] = false, ["avionics"] = 0, }, -- end of ["cockpit"] }, -- end of ["views"] ["sound"] = { ["world"] = 0, ["radioSpeech"] = true, ["cockpit"] = 0, ["volume"] = 0, ["headphones"] = 0, ["music"] = -100, ["subtitles"] = true, ["gui"] = 0, }, -- end of ["sound"] ["miscellaneous"] = { ["Coordinate_Display"] = "Lat Long", ["accidental_failures"] = false, ["headmove"] = false, ["force_feedback_enabled"] = true, ["f5_nearest_ac"] = true, ["f11_free_camera"] = true, ["synchronize_controls"] = false, ["f10_awacs"] = true, }, -- end of ["miscellaneous"] } -- end of options
PeterP Posted September 10, 2012 Posted September 10, 2012 (edited) Please humour me when you have time and uncheck "disable Aero Theme" in DCS (I assume you are using a Aero desktop interface) and try your monitor-setup.lua with the mathematical expressions again. BTW: I highly recommend to leave Aero on when running the sim in windowed mode - as this can boost your frames significant. Edited September 10, 2012 by PeterP
Recommended Posts