Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.

Difference between revisions of "DCS World"

From AppleGamingWiki, the wiki about gaming on M1 Apple silicon Macs
(updated options.lua link to a more user-friendly one after requested to do so)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<span style="font-size:150%">Digital Combat Simulator</span>
 
----
 
 
{{Infobox game
 
{{Infobox game
 
|cover        = DCS_World_Cover.jpg
 
|cover        = DCS_World_Cover.jpg
Line 31: Line 29:
 
|ios-ipados app notes =  
 
|ios-ipados app notes =  
 
|crossover            = Playable
 
|crossover            = Playable
|crossover notes      = D3DMetal, E-Sync, Windows 10 64-bit, override winhttp.dll & msdmo.dll (native, builtin), install D3DCompiler_47(x64) and x86, install corefonts, run DCS Installer. After install, place options.lua from deleterium guide in the correct place, create symlink from $INSTALL_DIR/bin webrtc_plugin.dll to $INSTALL_dir/webrtc_plugin.dll, fix optionsDb.lua file for getVoiceChatDevices:
+
|crossover notes      = Please see the "Issues fixed" section below for instructions on installing and running the standalone and Steam versions of this game.
 
 
::local function getVoiceChatDevices(dev_type)
 
::      --local devices = mod_sound.getVoiceChatDevices(dev_type)     
 
::        local result = {Name(_('Default')):Value("")}
 
::
 
::    if devices then
 
::        for k,v in ipairs(devices) do
 
::            table.insert(result,Name(v[2]):Value(v[1]))
 
::        end
 
::    end
 
::
 
::    return result
 
::end
 
 
|wine                = unknown
 
|wine                = unknown
 
|wine notes          =  
 
|wine notes          =  
Line 53: Line 38:
 
|linux arm            = na
 
|linux arm            = na
 
|linux arm notes      =  
 
|linux arm notes      =  
 +
}}
 +
 +
==Issues fixed<ref>Thanks to user Sokennethwasall for finding these fixes.</ref>==
 +
Please Note: This involves modifying game files, so if you repair the game, this file will revert to its original broken state and you'll need to fix it again.
 +
 +
{{Fixbox|description=Installing DCS Standalone or Steam version in CrossOver|ref=|fix=
 +
# If you are using Steam, install DCS into a Windows 10 64-bit CrossOver bottle. If you are using the standlone version, download (but do not install) it.
 +
# If you are using the Standalone version, download [https://www.codeweavers.com/compatibility/crossover/the-kitchen-sink The Kitchen Sink dependencies].
 +
# Override {{code|winhttp.dll}} (native, builtin), {{code|wbemprox.dll}} (native) & {{code|msdmo.dll}} (native) in the Wine configuration options in CrossOver.
 +
# Install {{code|d3dcompiler_47}} (32-bit) and {{code|d3dcompiler_47}} (64-bit).
 +
# If you are using the Standalone version, install corefonts.
 +
# Enable D3DMetal graphics and enable E-sync if Standalone, M-sync if Steam, and restart the bottle.
 +
# If you are using the Standalone version, run the DCS Installer
 +
}}
 +
 +
{{Fixbox|description=Skipping the broken launcher|ref=|fix=
 +
# Download the {{code|options.lua}} file from [https://github.com/deleterium/dcs_on_linux/blob/master/options.lua here] and place it in the {{code|CONFIG_DIR}} to skip the broken launcher. If the {{code|CONFIG_DIR}} does not exist, create the directory. i.e. {{code|drive_c/users/$USERNAME/Saved Games/DCS/Config/options.lua}}
 +
}}
 +
 +
{{Fixbox|description=Overriding the input audio device load|ref=|fix=
 +
# You need to override the {{code|getVoiceChatDevices()}} method in optionsDb.lua to always return an empty string, as the {{code|mod_sound.getVoiceChatDevices(dev_type)}} returns nil under CrossOver and causes an error to occur. You can access this file by clicking "Open C: Drive" button on your CrossOver bottle, and then navigating to {{code|./Program Files/Eagle Dynamics/DCS World/MissionEditor/modules/Options/optionsDb.lua}}
 +
<pre>
 +
local function getVoiceChatDevices(dev_type)
 +
    --local devices = mod_sound.getVoiceChatDevices(dev_type)     
 +
    local result = {Name(_('Default')):Value("")}
 +
 +
    if devices then
 +
        for k,v in ipairs(devices) do
 +
            table.insert(result,Name(v[2]):Value(v[1]))
 +
        end
 +
    end
 +
 +
    return result
 +
end
 +
</pre>
 
}}
 
}}

Latest revision as of 18:55, 29 July 2025


DCS World
DCS World cover
Developers
Eagle Dynamics
Publishers
Eagle Dynamics
Engines
Eagle Dynamics Game Engine
Release dates
October 17, 2008 (Initial release, RU)
December 10, 2008 (Initial release, EN)
March 7, 2009 (Initial release, GER)
April 2, 2009 (Initial release, NA)
3 May 2021 (Latest stable, 2.5.6.61527.3)
5 May 2021 (Latest open beta, 2.7.0.5659
Resources
PCGamingWiki

macOS Compatibility

Compatibility layer Rating Notes
CrossOver Playable Please see the "Issues fixed" section below for instructions on installing and running the standalone and Steam versions of this game.
Wine Unknown
Virtualization
Parallels Menu Boots. Main menu is fine. However, actual gameplay is riddled with graphical issues. AWACS View (F10) works just fine. FPS surges up and down, causing extremely unstable performance.

Issues fixed[1]

Please Note: This involves modifying game files, so if you repair the game, this file will revert to its original broken state and you'll need to fix it again.

Installing DCS Standalone or Steam version in CrossOver
  1. If you are using Steam, install DCS into a Windows 10 64-bit CrossOver bottle. If you are using the standlone version, download (but do not install) it.
  2. If you are using the Standalone version, download The Kitchen Sink dependencies.
  3. Override winhttp.dll (native, builtin), wbemprox.dll (native) & msdmo.dll (native) in the Wine configuration options in CrossOver.
  4. Install d3dcompiler_47 (32-bit) and d3dcompiler_47 (64-bit).
  5. If you are using the Standalone version, install corefonts.
  6. Enable D3DMetal graphics and enable E-sync if Standalone, M-sync if Steam, and restart the bottle.
  7. If you are using the Standalone version, run the DCS Installer
Skipping the broken launcher
  1. Download the options.lua file from here and place it in the CONFIG_DIR to skip the broken launcher. If the CONFIG_DIR does not exist, create the directory. i.e. drive_c/users/$USERNAME/Saved Games/DCS/Config/options.lua
Overriding the input audio device load
  1. You need to override the getVoiceChatDevices() method in optionsDb.lua to always return an empty string, as the mod_sound.getVoiceChatDevices(dev_type) returns nil under CrossOver and causes an error to occur. You can access this file by clicking "Open C: Drive" button on your CrossOver bottle, and then navigating to ./Program Files/Eagle Dynamics/DCS World/MissionEditor/modules/Options/optionsDb.lua
local function getVoiceChatDevices(dev_type)
    --local devices = mod_sound.getVoiceChatDevices(dev_type)       
    local result = {Name(_('Default')):Value("")}

    if devices then
        for k,v in ipairs(devices) do
            table.insert(result,Name(v[2]):Value(v[1]))
        end
    end

    return result
end 
  1. Thanks to user Sokennethwasall for finding these fixes.