derelict-sfml2 ~master

A dynamic binding to the SFML2 libraries.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

DerelictSFML2

This package is obsolete and no longer maintained. Please use [bindbc-sfml][4] instead.

Dynamic bindings to version 2.4 of the SFML libraries for the D Programming Language.

Please see the pages Building and Linking Derelict and Using Derelict, in the Derelict documentation, for information on how to build DerelictSFML2 and load the SFML2 libraries at run time. In the meantime, here's some sample code.

import derelict.sfml2;  // For all libraries

/+
// Alternatively, import only the modules for the libraries you need:
import derelict.sfml2.system; 
import derelict.sfml2.window;
import derelict.sfml2.audio;
import derelict.sfml2.graphics;
import derelict.sfml2.network;
+/

void main() {
    // Load the SFML2 System libraries you need. Note that this sample imports
    // and loads them all, but you only need to do so for the libraries you intend
    // to actually use.
    DerelictSFML2System.load();
    DerelictSFML2Window.load();
    DerelictSFML2Audio.load();
    DerelictSFML2Graphics.load();
    DerelictSFML2Network.load();

    // Now you can call functions from the all of the SFML2 libraries that were loaded.
}

Finally, it should be noted that there are two versions of the SFML2 shared libraries. One is written in C++, the other in C. For DerelictSFML2, you need to use the C version of the libraries, known as CSFML. DerelictSFML2 cannot load the C++ SFML2 libraries.

Authors:
  • Mike Parker
Dependencies:
derelict-util
Versions:
4.0.0-beta.2 2017-Dec-04
4.0.0-beta.1 2017-Jun-16
3.0.2 2016-Feb-14
3.0.1 2015-Sep-04
3.0.0 2015-Aug-29
Show all 23 versions
Download Stats:
  • 0 downloads today

  • 24 downloads this week

  • 96 downloads this month

  • 8111 downloads total

Score:
2.4
Short URL:
derelict-sfml2.dub.pm