AfkMan Posted February 14, 2016 Posted February 14, 2016 3 monitor config, 3840x1024 and default aspect is set to 3.75 It seems for me that something wrong with map aspect. Can i solve it myself and how? Here's 2 screen shots. Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
AfkMan Posted February 17, 2016 Author Posted February 17, 2016 Up Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
AfkMan Posted February 21, 2016 Author Posted February 21, 2016 up again, please help Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
AfkMan Posted February 27, 2016 Author Posted February 27, 2016 Nobody knows? Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
AfkMan Posted March 7, 2016 Author Posted March 7, 2016 up Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
AfkMan Posted March 21, 2016 Author Posted March 21, 2016 still need a solution Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
SkateZilla Posted March 21, 2016 Posted March 21, 2016 (edited) Please Post your Monitor Setup LUA and the Physical Resolution of your Monitors, I'm Assuming your Running 3x 1280x1024 Screens? (I'd Assume since your also running 3 viewports and not one unified (ie Eyefinity/nVidia Surround), then you Aspect should be that of each screen. ie for LEFT/CENTER/RIGHT, Under the Dimensions/Settings in the LUA should be: aspect = screen.aspect / 3; Edited March 21, 2016 by SkateZilla Windows 10 Pro, Ryzen 2700X @ 4.6Ghz, 32GB DDR4-3200 GSkill (F4-3200C16D-16GTZR x2), ASRock X470 Taichi Ultimate, XFX RX6800XT Merc 310 (RX-68XTALFD9) 3x ASUS VS248HP + Oculus HMD, Thrustmaster Warthog HOTAS + MFDs
AfkMan Posted March 24, 2016 Author Posted March 24, 2016 (edited) I have 4 monitors. 3 of them has physical resolution of 1280x1024. the 4th monitor is actually a 4k TV. Game runs only on these 3 monitors. No nVidia Surround turned on. Actual resolution of whole desktop is 3840x3184. This is how it looks like: This is settings: This is 3 cameras LUA, which i havn't touched: _ = function(p) return p; end; name = _('3 Screen'); Description = 'Configuration with 3 identical monitors each with its own camera' Viewports = { Left = { x = 0; y = 0; width = screen.width / 3; height = screen.height; viewDx = -1; viewDy = 0; aspect = screen.aspect / 3; }, Center = { x = screen.width / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 3; }, Right = { x = screen.width * 2 / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 1; viewDy = 0; aspect = screen.aspect / 3; } } UIMainView = Viewports.Center --[[ also you can use "displays" table to perfectly match you configuration . it is generated by DCS automatically. displays table is contains information about all currently attached displays for example my setup is : displays = { [1] = { x = 0, -- note : x == 0 and y == 0 is always mark primary windows display y = 0, width = 1920, height = 1200 }, [2] = { x = -1440, -- mark that secondary display is on left side of primary display y = 0, width = 1440, height = 900 }, ... for all displays } screen table also contain x, y members which mark top left corner of DCS window note about fullscreen : directx doesn't allow fullscreen applications with resolutions more than primary display can handle, so multimonitor presets in DCS will fall back to windowed mode if fullscreen initialization failed ( this info also will be printed to dcs.log) for reconfigure viewports setup for each unit type independently you can declare here function function reconfigure_for_unit(unit_type) --unit type is string with unit name if unit_type == "A-10C" then Viewports = ... define new Viewports table -- also you can define cockpit displays viewports here RIGHT_MFCD = ... define new RIGHT_MFCD viewport else Viewports = ... define default for others RIGHT_MFCD = nil -- remove for others end end --]] Edited March 24, 2016 by AfkMan Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
AfkMan Posted March 26, 2016 Author Posted March 26, 2016 If it will help: TV Philips 49PUS7909 (pluged via HDMI port) Left monitor Samsung SyncMaster 710N (pluged via Display port) Center monitor Samsung SyncMaster 173p Plus (pluged via DVI-D port) Right monitor Samsung SyncMaster 710N (pluged via DVI-I port) Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
Kuky Posted March 26, 2016 Posted March 26, 2016 hm... I can't replicate the wrong aspect you have on the Map view. On my end it looks normal. Your monitor lua looks ok also so no idea what's going on. One thing I think you could try is (I think the screen.aspect / 3 is somehow messed up because of the 4th monitor/TV), replace all lines with aspect = screen.aspect / 3; to aspect = X / Y; where X is your individual monitor width (in pixels) and Y is individual monitor height (in pixels) Can you please try it and tell us how you go? PC specs: Windows 11 Home | Asus TUF Gaming B850-Plus WiFi | AMD Ryzen 7 9800X3D + LC 360 AIO | MSI RTX 5090 LC 360 AIO | 55" Samsung Odyssey Gen 2 | 64GB PC5-48000 DDR5 | 1TB M2 SSD for OS | 2TB M2 SSD for DCS | NZXT C1000 Gold ATX 3.1 1000W | TM Cougar Throttle, Floor Mounted MongoosT-50 Grip on TM Cougar board, MFG Crosswind, Track IR
AfkMan Posted March 27, 2016 Author Posted March 27, 2016 Same here. I made this: _ = function(p) return p; end; name = _('3 Screen'); Description = 'Configuration with 3 identical monitors each with its own camera' Viewports = { Left = { x = 0; y = 0; width = screen.width / 3; height = screen.height; viewDx = -1; viewDy = 0; aspect = 1280/1024; }, Center = { x = screen.width / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 0; viewDy = 0; aspect = 1280/1024; }, Right = { x = screen.width * 2 / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 1; viewDy = 0; aspect = 1280/1024; } } UIMainView = Viewports.Center and that not helped. Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
Kuky Posted March 27, 2016 Posted March 27, 2016 Alright, I found a bug report that seems to show your issue (bug #32099) which has recently been fixed in Tester's version. So now have to wait till its merged into OB or public version of DCS. PC specs: Windows 11 Home | Asus TUF Gaming B850-Plus WiFi | AMD Ryzen 7 9800X3D + LC 360 AIO | MSI RTX 5090 LC 360 AIO | 55" Samsung Odyssey Gen 2 | 64GB PC5-48000 DDR5 | 1TB M2 SSD for OS | 2TB M2 SSD for DCS | NZXT C1000 Gold ATX 3.1 1000W | TM Cougar Throttle, Floor Mounted MongoosT-50 Grip on TM Cougar board, MFG Crosswind, Track IR
sslechta Posted March 29, 2016 Posted March 29, 2016 Thanks Kuky. I've had the same issue too when I run in 3 screens. All looks good except the map. Looking forward to seeing that fix. Steve (Slick) ThrustMaster T.Flight Hotas X | TrackIR5 Pro | EVGA GTX 1070 | Win10 64-bit Professional | Dell Precision 7920 Workstation | 1 TB SSD | 128 GB Memory | Dual Intel Xeon Platinum 2.0 GHz 16 Core Processors (64 Total w/HT ON) | 24" Dell Monitor
AfkMan Posted April 16, 2016 Author Posted April 16, 2016 There was an update and it took no effect. Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
sslechta Posted April 17, 2016 Posted April 17, 2016 It probably was not on this update. Sent from my SM-G920V using Tapatalk Steve (Slick) ThrustMaster T.Flight Hotas X | TrackIR5 Pro | EVGA GTX 1070 | Win10 64-bit Professional | Dell Precision 7920 Workstation | 1 TB SSD | 128 GB Memory | Dual Intel Xeon Platinum 2.0 GHz 16 Core Processors (64 Total w/HT ON) | 24" Dell Monitor
AfkMan Posted April 17, 2016 Author Posted April 17, 2016 Probably=) Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
AfkMan Posted May 22, 2016 Author Posted May 22, 2016 Finally! Solved! Please, delete this thread=) Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
sslechta Posted May 22, 2016 Posted May 22, 2016 It was solved on the last patch update for me as well. Sent from my SM-G920V using Tapatalk Steve (Slick) ThrustMaster T.Flight Hotas X | TrackIR5 Pro | EVGA GTX 1070 | Win10 64-bit Professional | Dell Precision 7920 Workstation | 1 TB SSD | 128 GB Memory | Dual Intel Xeon Platinum 2.0 GHz 16 Core Processors (64 Total w/HT ON) | 24" Dell Monitor
AfkMan Posted May 22, 2016 Author Posted May 22, 2016 I use release ver. It's written, that it solved in todays patch. Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
sslechta Posted May 22, 2016 Posted May 22, 2016 Mine was working on previous release version prior to today. Sent from my SM-G920V using Tapatalk Steve (Slick) ThrustMaster T.Flight Hotas X | TrackIR5 Pro | EVGA GTX 1070 | Win10 64-bit Professional | Dell Precision 7920 Workstation | 1 TB SSD | 128 GB Memory | Dual Intel Xeon Platinum 2.0 GHz 16 Core Processors (64 Total w/HT ON) | 24" Dell Monitor
AfkMan Posted May 23, 2016 Author Posted May 23, 2016 Anyway=) It works=) Delete thread, please=) Сквад =RAF= проводит набор курсантов на все доступные ЛА, выпущенные компанией Eagle Dynamics. =RAF=AfkMan[1241] Instructor of DCS A-10C [sIGPIC]GFYS[/sIGPIC] Ваша ошибка в том, что вы считаете всех вокруг себя идиотами. Specs: ASUS Z170-PRO , Intel i7-6700k, nVidia GTX950(ASUS), 16Gb RAM Corsair Vengeance, Win 8.1 x64, x55 Rhino
Recommended Posts