Difference between revisions of "Bindings"

From D Wiki
Jump to: navigation, search
(C/C++ to D)
(Add the BindBC project)
 
(22 intermediate revisions by 10 users not shown)
Line 1: Line 1:
== Articles ==
+
Binding is a procedure that converts header files, function prototypes, and variable declarations to from another language to D.
Articles on binding D to C:
 
 
 
* [[Bind D to C]]
 
* [[Converting C .h Files to D Modules]]
 
  
 
== Projects ==
 
== Projects ==
 
Projects and repositories for collecting / maintaining D bindings:
 
Projects and repositories for collecting / maintaining D bindings:
  
 +
* [https://github.com/bindbc BindBC]
 
* [https://github.com/D-Programming-Deimos Deimos]
 
* [https://github.com/D-Programming-Deimos Deimos]
 
* [http://dsource.org/projects/bindings DSource bindings project]
 
* [http://dsource.org/projects/bindings DSource bindings project]
Line 16: Line 13:
 
=== C/C++ to D ===
 
=== C/C++ to D ===
  
== Bindings ==
 
=== Compression & Encryption ===
 
 
{{Projects
 
{{Projects
 
  | Projects =
 
  | Projects =
  
 
{{Project
 
{{Project
  | name = '''htod'''
+
  | name = '''dstep'''
  | about =  
+
  | about = A tool for converting C and Objective-C headers to D modules
  | platform =
+
  | platform = Posix, Windows
  | license =  
+
  | license = Boost Software License 1.0
  | url = http://dlang.org/htod.html
+
  | url = https://github.com/jacob-carlborg/dstep
 
}}
 
}}
 +
 
{{Project
 
{{Project
  | name = '''dstep'''
+
  | name = '''dpp'''
  | about =  
+
  | about = #include C headers in D code
 
  | platform =
 
  | platform =
  | license =  
+
  | license = Boost License 1.0.
  | url = https://github.com/jacob-carlborg/dstep
+
  | url = https://github.com/atilaneves/dpp
 
}}
 
}}
 +
 
{{Project
 
{{Project
 
  | name = '''SWIG'''
 
  | name = '''SWIG'''
  | about =  
+
  | about = Simplified Wrapper and Interface Generator
 
  | platform =
 
  | platform =
 
  | license =  
 
  | license =  
  | url = http://www.swig.org/Doc2.0/D.html
+
  | url = http://www.swig.org/Doc4.0/D.html
 
}}
 
}}
  
 
{{Project
 
{{Project
  | name = '''cwrap'''
+
  | name = '''cwrap''' (abandoned)
 
  | about = High-level wrapper generator
 
  | about = High-level wrapper generator
 
  | platform =
 
  | platform =
 +
| license = Boost License 1.0.
 +
| url = https://bitbucket.org/denis-sh/cwrap
 +
}}
 +
 +
{{Project
 +
| name = '''htod''' (not actively developed)
 +
| about = Migration tool to aid in converting C header files
 +
| platform = Windows
 
  | license =  
 
  | license =  
  | url = https://bitbucket.org/denis-sh/cwrap
+
  | url = http://dlang.org/htod.html
 
}}
 
}}
  
Line 59: Line 64:
 
=== D to C/C++ ===
 
=== D to C/C++ ===
  
* [https://d.puremagic.com/issues/show_bug.cgi?id=9285 dtoh]
+
* [https://issues.dlang.org/show_bug.cgi?id=9285 dtoh]
  
 
== Bindings ==
 
== Bindings ==
 +
=== Web ===
 +
{{Projects
 +
| Projects =
 +
 +
{{Project
 +
| name = '''librdf/redland'''
 +
| about = Multiple language bindings for librdf (advanced RDF and SPARQL support)
 +
| platform = all
 +
| license = multiple FOSS licenses
 +
| url = https://github.com/vporton/redland-bindings
 +
}}
 +
}}
 +
 
=== Compression & Encryption ===
 
=== Compression & Encryption ===
 
{{Projects
 
{{Projects
Line 142: Line 160:
 
}}
 
}}
 
{{Project
 
{{Project
  | name = '''Mediastreamer2'''
+
  | name = '''AntTweakBarD'''
  | about = Mediastreamer2 is a powerful and lightweighted streaming engine specialized for voice/video telephony applications.
+
  | about = AntTweakBarD is a binding to AntTweakBar which is a multi-render-engine (D3D/OpenGL) GUI tweaking library.
 
  | platform =  
 
  | platform =  
  | license =  
+
  | license = zlib/libpng
  | url = https://github.com/axeoth/mediastreamer2_layer
+
  | url = https://github.com/d-gamedev-team/AntTweakBarD
 
}}
 
}}
 
}}
 
}}
 +
 +
== Source code translators ==
 +
 +
* [http://rainers.github.io/visuald/visuald/CppConversion.html cpp2d] - C++ to D converter (included with Visual D)
 +
* [https://github.com/dlang/visuald/blob/master/c2d/idl2d.d idl2d] - IDL / C++ header file to D converter
 +
 +
== See also ==
 +
 +
* [[D binding for C]]
 +
* [[Binding generators]]
 +
 +
==External links==
 +
* [http://www.gamedev.net/page/resources/_/technical/game-programming/binding-d-to-c-r3122 Article]
 +
* [http://www.gamedev.net/blog/1140/entry-2254003-binding-d-to-c/ Series on creating bindings to C libraries for the D programming language].
 +
* [http://dlang.org/interfaceToC.html Interfacing to C (DLang page)]
 +
* [http://dlang.org/htod.html DLang htod tool]
 +
 +
[[Category:Binding]]

Latest revision as of 01:43, 11 May 2021

Binding is a procedure that converts header files, function prototypes, and variable declarations to from another language to D.

Projects

Projects and repositories for collecting / maintaining D bindings:

Binding generators

Projects which automate generating D bindings:

C/C++ to D

Title / InfoDescriptionLicensePlatform
Icon dpackage 48.png
A tool for converting C and Objective-C headers to D modules Boost Software License 1.0 Posix, Windows
Icon dpackage 48.png
#include C headers in D code Boost License 1.0.
Icon dpackage 48.png
Simplified Wrapper and Interface Generator
Icon dpackage 48.png
High-level wrapper generator Boost License 1.0.
Icon dpackage 48.png
Migration tool to aid in converting C header files Windows


Objective-C to D

D to C/C++

Bindings

Web

Title / InfoDescriptionLicensePlatform
Icon dpackage 48.png
Multiple language bindings for librdf (advanced RDF and SPARQL support) multiple FOSS licenses all


Compression & Encryption

Title / InfoDescriptionLicensePlatform
Icon dpackage 48.png
D version of the C headers for openssl MIT Windows/POSIX
Icon dpackage 48.png
Interface to LZMA compression library Windows/POSIX
Icon dpackage 48.png
Interface to GNUTLS library LGPL


Multimedia & Games

Title / InfoDescriptionLicensePlatform
Icon dpackage 48.png
MediaInfo supplies technical and tag information about your video or audio files. GPL/LGPL Windows
Icon dpackage 48.png
Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. It is released in source code format under the Gnu Lesser General Public License. LGPL Windows/POSIX
Icon dpackage 48.png
Allegro 4 and Allegro 5 are cross-platform, open source, game programming libraries, primarily for C and C++ developers.
Icon dpackage 48.png
DerelictOrg is a collection of D bindings to C shared (dynamic) libraries which are useful for multimedia applications, with a heavy bias toward game development-related libraries.

Bindings:

  • ALURE
  • ASSIMP
  • DevIL
  • FreeImage
  • FreeType
  • GLFW
  • Lua
  • ODE
  • OpenAL
  • OpenGL
  • PhysicsFS
  • SDL2
  • SFML2
  • Vorbis
  • libogg
  • libpq

Older versions:

Icon dpackage 48.png
AntTweakBarD is a binding to AntTweakBar which is a multi-render-engine (D3D/OpenGL) GUI tweaking library. zlib/libpng


Source code translators

  • cpp2d - C++ to D converter (included with Visual D)
  • idl2d - IDL / C++ header file to D converter

See also

External links