You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

244 lines
11 KiB

11 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. <img src="http://www.raylib.com/img/fb_raylib_logo.png" width=256>
  2. about
  3. -----
  4. raylib is a simple and easy-to-use library to learn videogames programming.
  5. raylib is highly inspired by Borland BGI graphics lib and by XNA framework.
  6. Allegro and SDL have also been analyzed for reference.
  7. Want to see how easy is making games with raylib? Jump to [code examples!] (http://www.raylib.com/examples.htm)
  8. history
  9. -------
  10. I've developed videogames for some years and last year I had to taught videogames development
  11. to young people with artistic profile, most of them had never written a single line of code.
  12. I started with C language basis and, after searching for the most simple and easy-to-use library to teach
  13. videogames programming, I found WinBGI; it was great and it worked very well with students, in just a
  14. couple of weeks that people that had never written a single line of code were able to program (and understand)
  15. a simple PONG and some of them even a BREAKOUT!
  16. But WinBGI was not the clearer and most organized lib. There were a lot of things I found useless and
  17. confusing and some function names were not clear enough for most of the students; not to mention points
  18. like no transparencies support or no hardware acceleration.
  19. So, I decided to create my own lib, hardware accelerated, clear function names, quite organized, well structured,
  20. plain C coding and, the most important, primarily intended to LEARN videogames programming.
  21. I've coded quite a lot in C# and XNA and I really love it (in fact, my students learn C# after C),
  22. so, I decided to use C# language notation and XNA naming conventions. That way, students can jump from
  23. raylib to XNA, MonoGame or similar libs extremely easily.
  24. raylib started as a weekend project and after three months of hard work, first version was published.
  25. Enjoy it.
  26. notes on raylib 1.1
  27. -------------------
  28. On April 2014, after 6 month of first raylib release, raylib 1.1 has been released. This new version presents a
  29. complete internal redesign of the library to support OpenGL 1.1, OpenGL 3.3+ and OpenGL ES 2.0.
  30. A new module named [rlgl] (https://github.com/raysan5/raylib/blob/master/src/rlgl.h) has been added to the library. This new module translate raylib-OpenGL-style
  31. immediate mode functions (i.e. rlVertex3f(), rlBegin(), ...) to different versions of OpenGL (1.1, 3.3+, ES2), selectable by one define.
  32. [rlgl] (https://github.com/raysan5/raylib/blob/master/src/rlgl.h) also comes with a second new module named [raymath] (https://github.com/raysan5/raylib/blob/master/src/raymath.h), which includes
  33. a bunch of useful functions for 3d-math with vectors, matrices and quaternions.
  34. Some other big changes of this new version have been the support for OGG files loading and stream playing, and the
  35. support of DDS texture files (compressed and uncompressed) along with mipmaps support.
  36. Lots of code changes and lot of testing have concluded in this amazing new raylib 1.1.
  37. notes on raylib 1.2
  38. -------------------
  39. On September 2014, after 5 month of raylib 1.1 release, it comes raylib 1.2. Again, this version presents a
  40. complete internal redesign of [core] (https://github.com/raysan5/raylib/blob/master/src/core.c) module to support two new platforms: [Android] (http://www.android.com/) and [Raspberry Pi] (http://www.raspberrypi.org/).
  41. It's been some month of really hard work to accomodate raylib to those new platforms while keeping it easy for the user.
  42. On Android, raylib manages internally the activity cicle, as well as the inputs; on Raspberry Pi, a complete raw input
  43. system has been written from scratch.
  44. A new display initialization system has been created to support multiple resolutions, adding black bars if required;
  45. user only defines desired screen size and it gets properly displayed.
  46. Now raylib can easily deploy games to Android devices and Raspberry Pi (console mode).
  47. Lots of code changes and lot of testing have concluded in this amazing new raylib 1.2.
  48. features
  49. --------
  50. * Written in plain C code (C99)
  51. * Uses C# PascalCase/camelCase notation
  52. * Hardware accelerated with OpenGL (1.1, 3.3+ or ES2)
  53. * Unique OpenGL abstraction layer [rlgl]
  54. * Powerful fonts module with SpriteFonts support
  55. * Multiple textures support, including DDS, PKM and mipmaps generation
  56. * Basic 3d support for Shapes, Models, Heightmaps and Billboards
  57. * Powerful math module for Vector and Matrix operations [raymath]
  58. * Audio loading and playing with streaming support (WAV and OGG)
  59. * Custom color palette for fancy visuals on raywhite background
  60. * Multiple platforms support: Windows, Linux, Mac, **Android** and **Raspberry Pi**
  61. raylib uses on its core module the outstanding [GLFW3] (http://www.glfw.org/) library. The best option by far I found for
  62. multiplatform (Windows, Linux, Mac) window/context and input management (clean, focused, great license, well documented, modern, ...).
  63. raylib uses on its [audio] (https://github.com/raysan5/raylib/blob/master/src/audio.c) module, [OpenAL Soft] (http://kcat.strangesoft.net/openal.html) audio library, in multiple flavours,
  64. to accomodate to Android and Raspberry Pi.
  65. On Android, raylib uses native_app_glue module (provided on Android NDK) and native Android libraries to manage window/context,
  66. inputs and activity cycle.
  67. On Raspberry Pi, raylib uses Videocore API and EGL for window/context management and raw inputs reading.
  68. raylib is licensed under a zlib/libpng license. View [LICENSE] (https://github.com/raysan5/raylib/blob/master/LICENSE.md).
  69. tools requirements
  70. ------------------
  71. raylib has been developed using exclusively two tools:
  72. * Notepad++ (text editor) - [http://notepad-plus-plus.org/](http://notepad-plus-plus.org/)
  73. * MinGW (GCC compiler) - [http://www.mingw.org/](http://www.mingw.org/)
  74. Those are the tools I recommend to develop with raylib, in fact, those are the tools my students use.
  75. I believe those are the best tools to train spartan-programmers.
  76. Someone could argue about debugging. raylib is a library intended for learning and I think C it's a clear enough language
  77. to allow writing small-mid size programs with a printf-based debugging. All raylib examples have also been written this way.
  78. Since raylib v1.1, you can download a windows Installer package for easy installation and configuration. Check [raylib Webpage](http://www.raylib.com/)
  79. building source (generate libraylib.a)
  80. --------------------------------------
  81. **Building raylib sources on desktop platforms:**
  82. _Step 1:_ Using MinGW make tool, just navigate from command line to raylib/src/ folder and type:
  83. mingw32-make PLATFORM=PLATFORM_DESKTOP
  84. NOTE: By default raylib compiles using OpenGL 1.1 to maximize compatibility; to use OpenGL 3.3 just type:
  85. mingw32-make PLATFORM=PLATFORM_DESKTOP GRAPHICS=GRAPHICS_API_OPENGL_33
  86. **Building raylib sources on Raspberry Pi:**
  87. _Step 1._ Make sure you have installed in your Raspberry Pi OpenAL Soft library for audio:
  88. sudo apt-get install openal1
  89. _Step 2._ Navigate from command line to raylib/src/ folder and type:
  90. make
  91. **Building raylib sources for Android:**
  92. _Step 1._ Make sure you have installed Android SDK, Android NDK and Apache Ant tools:
  93. > Download and decompress on C: [Android SDK r23](http://dl.google.com/android/android-sdk_r23.0.2-windows.zip)
  94. > Download and decompress on C: [Android NDK r10b](http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip)
  95. > Download and decompress on C: [Apache Ant 1.9.4](http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip)
  96. _Step 2._ Create the following environment variables with the correct paths:
  97. ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools
  98. ANDROID_NDK_ROOT = C:\android-ndk-r10b
  99. ANT_HOME = C:\apache-ant-1.9.4
  100. _Step 3._ Navigate from command line to folder raylib/template_android/ and type:
  101. %ANDROID_NDK_ROOT%\ndk-build
  102. NOTE: libraylib.a will be generated in folder raylib/src_android/obj/local/armeabi/, it must be copied
  103. to Android project; if using raylib/template_android project, copy it to raylib/template_android/jni/libs/.
  104. building examples
  105. -----------------
  106. **Building raylib examples on desktop platforms:**
  107. _Step 1:_ Using MinGW make tool, just navigate from command line to raylib/examples/ folder and type:
  108. mingw32-make PLATFORM=PLATFORM_DESKTOP
  109. NOTE: Make sure the following libs (and their headers) are placed on their respectibe MinGW folders:
  110. libglfw3.a - GLFW3 (static version)
  111. libglew32.a - GLEW, OpenGL extension loading, only required if using OpenGL 3.3+ or ES2
  112. libopenal32.a - OpenAL Soft, audio device management
  113. **Building raylib examples on Raspberry Pi:**
  114. _Step 1._ Make sure you have installed in your Raspberry Pi OpenAL Soft library for audio:
  115. sudo apt-get install openal1
  116. _Step 2._ Navigate from command line to raylib/examples/ folder and type:
  117. make
  118. **Building raylib project for Android (using template):**
  119. _Step 1._ Make sure you have installed Android SDK, Android NDK and Apache Ant tools:
  120. > Download and decompress on C: [Android SDK r23] (http://dl.google.com/android/android-sdk_r23.0.2-windows.zip)
  121. > Download and decompress on C: [Android NDK r10b] (http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip)
  122. > Download and decompress on C: [Apache Ant 1.9.4] (http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip)
  123. _Step 2._ Create the following environment variables with the correct paths:
  124. ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools
  125. ANDROID_NDK_ROOT = C:\android-ndk-r10b
  126. ANT_HOME = C:\apache-ant-1.9.4
  127. _Step 3._ To compile project, navigate from command line to folder raylib/template_android/ and type:
  128. %ANDROID_NDK_ROOT%\ndk-build
  129. _Step 4._ To generate APK, navigate to folder raylib/template_android/ and type:
  130. %ANT_HOME%\bin\ant debug
  131. _Step 5:_ To install APK into connected device (previously intalled drivers and activated USB debug mode on device):
  132. %ANT_HOME%\bin\ant installd
  133. _Step 6:_ To view log output from device:
  134. %ANDROID_SDK_TOOLS%\adb logcat -c
  135. %ANDROID_SDK_TOOLS%\adb -d logcat raylib:V *:S
  136. **If you have any doubt, [just let me know][raysan5].**
  137. contact
  138. -------
  139. * Webpage: [http://www.raylib.com](http://www.raylib.com)
  140. * Twitter: [http://www.twitter.com/raysan5](http://www.twitter.com/raysan5)
  141. * Facebook: [http://www.facebook.com/raylibgames](http://www.facebook.com/raylibgames)
  142. If you are using raylib and you enjoy it, please, [let me know][raysan5].
  143. If you feel you can help, then, [helpme!] (http://www.raylib.com/helpme.htm)
  144. acknowledgments
  145. ---------------
  146. The following people have contributed in some way to make raylib project a reality. Big thanks to them!
  147. - [Zopokx](https://github.com/Zopokx) for testing and hosting the web.
  148. - [Elendow](http://www.elendow.com) for testing and helping on web development.
  149. - Victor Dual for implementation and testing of 3D shapes functions.
  150. - Marc Palau for implementation and testing of 3D shapes functions.
  151. [raysan5]: mailto:raysan@raysanweb.com "Ramon Santamaria - Ray San"