Maybe using "SDL_SetWindowGrab(win, SDL_TRUE)" that doesn't let the mouse/curosr get out from the win(dow)
EDIT1: Ooops already using above function. Anyway you can check in http://github.com/smarkusg/OpenFodder how is done (window.cpp), but can't remember where/how it hides WB cursor.
Either the example code is not doing what I think it should be doing, or there is an issue in the SDL version I am using. I will just test this out later. I am hoping @capehill reads these messages.
If liberty means anything at all, it means the right to tell people what they do not want to hear. George Orwell.
rjd324 wrote:I have now rebuilt the release reverting to SDL version 2.24.0. It looks like #1 is no longer an issue. Please test it: r732.
yeahhooooo that's it. Mouse pointer with r732 has disappeared...nice. So we have a SDL2 problem or the engine uses an older version and is not compatible ?
I recommend everyone to install update/patch 1.11 for Medal of Hornor for the game files. Without it there were significant problems and the fps in some level sections broke below 15fps. With the patch/update it feels like a good 30 FPS all the time. I didn't expect this, but it shows that our GFX drivers are good.
Gameplay is really great and it's fun
Ok what remains:
- DSI problem when starting Medal of Hornor (bsdsocket.library) - no sound in the main intro
Thanks rjd324
MacStudio ARM M1 Max Qemu//Pegasos2 AmigaOs4.1 FE / AmigaOne x5000/40 AmigaOs4.1 FE
I am writing an installer for Ryan, so that his port can be directly installed from the PC CD. Little thank you as I could not have made my Baldur's Gate port without his Python port
BTW: If other people port opensource titles and need an installer, feel free to contact me.
@rjd324 getaddrinfo is known to have issues with bsdsocket.library, so instead you may use libsocket from clib/newlib (by just switching includes to proto/socket.h and get rid of bsdsocket includes). But, then, if it uses in threading you will have issues with both cases if i remember well. You may want implement your own (like in libgai done) and then use it instead.
But, then, if it uses in threading you will have issues with both cases if i remember well.
Unlike most other network functions getaddrinfo() and freeaddrinfo() should be thread-safe, most likely your problem is in some other, not thread-safe, part of the networking code.
I have tested it a little with bsdsocket.library version 4.307 there is no DSI. It seems that on some systems bsdsocket.library version 4.321 is already installed as well as on my system.
There seem to be problems with version 4.321, we had similar problems with NetSurf.
@TheMagicSN
If you could write an installer for Open Medal of Hornor that would be fantastic.
MacStudio ARM M1 Max Qemu//Pegasos2 AmigaOs4.1 FE / AmigaOne x5000/40 AmigaOs4.1 FE
Unlike most other network functions getaddrinfo() and freeaddrinfo() should be thread-safe
I cant say right now exact details, but i remember that newlib version do have bugs in getaddrinfo(). Then bsdsocket library got update to have those functions in, and newlib version just redirect to bsdsocket since, so both have same bug which i report years ago and wasnt fixed. And as result its best to use own one, which small enough.
Ps and what Maijesto says have sense too: newer bsdsocket.library implement thise functions, but they buggy.