bindbc-nodave 0.2.1
Dynamic and static bindings to Nodave, compatible with -betterC, @nogc, and nothrow.
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:
bindbc-nodave
This project provides both static and dynamic bindings to the libnodave library.
Documentation
bindbc-nodave
uses adrdox to generate it's documentation.
To build your own copy, run the following command from the root of the expected repository:
path/to/adrdox/doc2 --genSearchIndex --genSource -o generated-docs src
or
path/to/adrdox/doc2 -i -u src
Usage
NOTE: This documentation describes how to use bindbc-nodave. As the maintainer of this library, I do not provide instructions on using the libnodave library.
By default, bindbc-nodave is configured to compile as a dynamic binding that is not -betterC
compatible. The dynamic binding has no link-time dependency on the libnodave library, so the libnodave shared library must be manually loaded at runtime. When configured as a static binding, there is a link-time dependency on the libnodave library through either the static library or the appropriate file for linking with shared libraries on your platform (see below).
When using DUB to manage your project, the static binding can be enabled via a DUB subConfiguration
statement in your project's package file.
To use libnodave, add bindbc-nodave as a dependency to your project's package config file. For example, the following is configured to use libnodave as a dynamic binding that is not -betterC
compatible:
dub.json
dependencies {
"bindbc-nodave": "~>0.1.0",
}
dub.sdl
dependency "bindbc-nodave" version="~>0.1.0"
The dynamic binding
The dynamic binding requires no special configuration when using DUB to manage your project. There is no link-time dependency. At runtime, the libnodave shared library is required to be on the shared library search path of the user's system. On Windows, this is typically handled by distributing the libnodave DLL with your program. On other systems, it usually means the user must install the libnodave runtime library through a package manager.
To load the shared library, you need to call the loadNodave
function.
This returns a member of the NodaveSupport
enumeration:
NodaveSupport.noLibrary
indicating that the library failed to load (it couldn't be found)NodaveSupport.badLibrary
indicating that one or more symbols in the library failed to load- a member of
NodaveSupport
indicating a version number that matches the version of libnodave that bindbc-nodave was configured at compile-time to load. By default, that isNodaveSupport.nodave851
, but can be configured via a version identifier (see below). This value will match the global manifest constant,nodaveSupport
.
import bindbc.nodave;
/*
* This version attempts to load the GLFW shared library using well-known variations
* of the library name for the host system.
*/
NodaveSupport ret = loadNodave();
if(ret != nodaveSupport) {
/*
Handle error. For most use cases, it's reasonable to use the the error handling API in bindbc-loader to retrieve
error messages for logging and then abort. If necessary, it's possible to determine the root cause via the return
value:
*/
if(ret == NodaveSupport.noLibrary) {
// The libnodave shared library failed to load
}
else if(NodaveSupport.badLibrary) {
/*
One or more symbols failed to load. The likely cause is that the shared library is for a lower version than bindbc-glfw was configured to load (via GLFW_31, GLFW_32 etc.)
*/
}
}
The error reporting API in bindbc-loader can be used to log error messages.
- Registered by o3o
- 0.2.1 released 3 years ago
- o3o/bindbc-nodave
- Boost
- Authors:
- Dependencies:
- none
- Versions:
-
0.6.0 2023-Sep-08 0.5.0 2023-May-25 0.4.0 2022-Jan-14 0.3.0 2022-Jan-14 0.2.1 2021-Nov-15 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
36 downloads total
-
- Score:
- 0.5
- Short URL:
- bindbc-nodave.dub.pm