Search results

  1. J

    Software Unable to Launch Orbiter 2024

    Try copying zlib.dll from the root to /Modules/Server/
  2. J

    Discussion Orbiter: Lua 5.4 Upgrade: Community Input

    I got the VCPKG to work finally. I don't know what was the problem initially. 1) I cloned the CVPKG repository from the Git and declared env variables VCPKG_ROOT="C:\path\to\vcpkg" 2) Build "preset" was changed from "<custom>" to "x86 Release" This has never been issue before. Looks like it...
  3. J

    Discussion Orbiter: Lua 5.4 Upgrade: Community Input

    After downloading and installing LUA 5.4.2 and manually providing a path to LUA library and includes. Previous step passed, now it wants ZLIB and I can't find a place where to enter the paths. Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.22631. Found Lua...
  4. J

    Discussion Orbiter: Lua 5.4 Upgrade: Community Input

    Out of curiosity I tried to compile this branch and got nowhere. Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.22631. The C compiler identification is MSVC 19.29.30153.0 The CXX compiler identification is MSVC 19.29.30153.0 Detecting C compiler ABI info Detecting C compiler...
  5. J

    Discussion Orbiter: Lua 5.4 Upgrade: Community Input

    Recent build problems were resolved and there is a PR for it to fix it. Looks like nobody tested building Orbiter without XRSound and Documentation. Building the docs requires so-many additional tools that build must work without it. As for the Reviews, if I want somebody to review my code...
  6. J

    Discussion Orbiter: Lua 5.4 Upgrade: Community Input

    There is a lot of LUA related work done for Orbiter 2024, does that code remain valid after update to 5.4 or does it go to garbage can ? Also, I don't exactly like that when I got time to do Orbiter development I notice it wont compile. Since I am not a build expert it's a pain to deal with a...
  7. J

    Problem UNABLE to get off the pad using Orbiter 2024 - ???

    Could it be that a different version of zlib.dll is being loaded for some unknown reason. So, could you check the version from a loaded modules list in a debugger. In my case it's 1.02.11.0 EDIT: You got the same version. EDIT2: Recheck the version from the loaded modules list in a debugger
  8. J

    Problem Orbiter Crashing

    Intel has dropped D3D9 support for Iris Xe Graphics chips, so, no more native DX9 there. You cound try to Download DXVK (https://github.com/doitsujin/dxvk/releases) and copy *.dll files in the package (.tag.gz) to /Modules/Server/ that should bring Open Orbiter back to life. I don't know why the...
  9. J

    Problem I am having another issue were when i click the D3D9 module It disappears And the orbiter server launch pad crashes I am using orbiter2016.

    If you have "Intel Iris Xe graphics" then you are likely not able to run Orbiter 2016 or older due to lack of DX9 support in that graphics chip. Open Orbiter works through DX12 wrapper (build in, but buggy) or DXVK wrapper (installation required). Use forum search with "Iris" for further...
  10. J

    Orbiter 2024 Launch readiness

    Documentation.
  11. J

    Problem OpenOrbiter2024 Testphase User Issues

    Could you try these modified shaders. Do they make things any better. Also the flag 0x20 uses a cheap trick to render behind other objects so top quality shouldn't be expected.
  12. J

    Orbiter 2024 Launch readiness

    That's kinda odd. I checked the code and couldn't find anything obvious. Have you tried Sketchpad::SetWorldTransform2D() and regular TextOut() function.
  13. J

    Orbiter 2024 Launch readiness

    Ok then, what is the code sequence used to draw the DSKY ? SURFHANDLE hSrf = oapiGetMeshTexture(hMesh); HDC hDC = oapiGetDC(hSrf); That should fail. Dynamic textures do support GDI but they do not support mipmaps nor auto-generation of them on update. Only render-target-texture do. With GDI...
  14. J

    Orbiter 2024 Launch readiness

    There is "Enable Debug Break" check box in the config panel. It should break on violation. Also "going in DX7 compatibility mode" message is printed in the log if debug level is 2 or higher. Incorrect GDI use is the only thing that can trigger DX7 compatibility/emulation mode. Would be good...
  15. J

    New Release D3D9Client Development

    I'll add an API function to blit multiple layers.
  16. J

    New Release D3D9Client Development

    The first 32 charters are skipped. I can undo the skip.
  17. J

    Problem OpenOrbiter2024 Testphase User Issues

    It's anti-aliased against background (sky). I'll try to disable AA while rendering with flag 0x20.
  18. J

    Orbiter 2024 Launch readiness

    There is Sketchpad::TextEx() that can rotate while printing.
  19. J

    Orbiter 2024 Launch readiness

    I'll take a look at the code and see if there's something I can easily do. As far as i can tell NASSP runs very much in a DX7 emulation mode which do have limitations and stability issues. Trying to keep the DX7 emulation layer operational has already taken too much time. DX7 emulation layer is...
  20. J

    Installation Returning to Orbiter after years, can't get it running

    If you have integrated Intel Iris Xe graphics then you are having some problems running the orbiter. It's a well known problem, search the forum for solutions, lot's of threads about it. The latest orbiter build should run much better...
Back
Top