logo

libbulletml

Library of Bullet Markup Language (forked from https://shinh.skr.jp/libbulletml/index_en.html )git clone https://hacktivis.me/git/libbulletml.git

README.en (2973B)


  1. from D to C++
  2. I'm sorry of my poor English...
  3. * Introduction
  4. This package helps to access C++ library from D. If D compiler
  5. supports such as extern(C++), this package becomes useless.
  6. * Figure
  7. generating process
  8. C++ using d_cpp -----------------------> C wrapper
  9. (interface definition) | preprocesser
  10. |
  11. --------------------> D import interface
  12. perl script
  13. accessing process
  14. D client code --> D import interface --> C wrapper -->
  15. C++ using d_cpp --> C++ library code
  16. * File Description
  17. README:
  18. this file.
  19. Makefile:
  20. linux's makefile.
  21. Makefile.win32:
  22. windows's makefile.
  23. d_cpp_interface.h:
  24. helps C++ using d_cpp to C wrapper
  25. create_d_import.pl:
  26. helps C++ using d_cpp to D import interface
  27. cpp.cc:
  28. sample of C++ using d_cpp and C++ library code.
  29. cpp_test.d:
  30. sample of D client code.
  31. create_d_cpp_interface.pl:
  32. I created d_cpp_interface.h with this script.
  33. * Misc
  34. This package is alpha release. I'm glad if you give me advice.
  35. More complicated sample is available as "barrage 360 deg.",
  36. a BulletML viewer.
  37. - Japanese page
  38. http://user.ecc.u-tokyo.ac.jp/~s31552/wp/bulletss/
  39. - Download
  40. http://user.ecc.u-tokyo.ac.jp/~s31552/wp/bulletss/bulletss.tar.bz2
  41. - BulletML
  42. http://www.asahi-net.or.jp/~cs8k-cyu/bulletml/index_e.html
  43. This package distributes under the modified BSD license
  44. Copyright (c) 2003, shinichiro.h All rights reserved.
  45. Redistribution and use in source and binary forms, with or without
  46. modification, are permitted provided that the following conditions are
  47. met:
  48. * Redistributions of source code must retain the above copyright
  49. notice, this list of conditions and the following disclaimer.
  50. * Redistributions in binary form must reproduce the above
  51. copyright notice, this list of conditions and the following
  52. disclaimer in the documentation and/or other materials provided
  53. with the distribution.
  54. * The name of the author may not be used to endorse or promote
  55. products derived from this software without specific prior
  56. written permission.
  57. TTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  58. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  59. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  60. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  61. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  62. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  63. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  64. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  65. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  66. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  67. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  68. ------------------
  69. shinichiro.h
  70. s31552@mail.ecc.u-tokyo.ac.jp
  71. http://user.ecc.u-tokyo.ac.jp/~s31552/wp/