Git Product home page Git Product logo

Comments (2)

p1plp1 avatar p1plp1 commented on June 11, 2024

hmm threading solved using lib SDL2, following fixes are required:
freeserf-master\buildgw\src\CMakeFiles\profiler.dir\linklibs.rsp
add -lSDL2 switch at end for correct linking,

then edit game.cc following WAY, include section:
#ifndef MINGW32
#include
//namespace std_boost = std;
#else
//fix for mingw
#include <SDL2/SDL.h>
#include <SDL2/SDL_thread.h>
#include <SDL2/SDL_mutex.h>
#endif
....
....
void
Game::update_flags() {

#ifndef MINGW32
Log::Verbose["game"] << "thread #" << std::this_thread::get_id() << " is locking mutex for Game::update_flags";
mutex.lock();
Log::Verbose["game"] << "thread #" << std::this_thread::get_id() << " has locked mutex for Game::update_flags";
#else
//mingw threading support
SDL_mutex* mut=SDL_CreateMutex();
SDL_LockMutex(mut);
#endif
...
...
#ifndef MINGW32
Log::Verbose["game"] << "thread #" << std::this_thread::get_id() << " is unlocking mutex for Game::update_flags";
mutex.unlock();
#else
//mingw threading support
SDL_UnlockMutex(mut);
SDL_DestroyMutex(mut);
#endif
}

from freeserf.

wdigger avatar wdigger commented on June 11, 2024

Not applicable to this repository.

from freeserf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.