From 7008c67dfa7371ef2ac590d60a1cfd450a3a11e0 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Mon, 1 Oct 2018 09:25:18 +0100 Subject: [PATCH] Changing examples to use makefile - Testing a modified version of the makefile from raylib Instead of multiple project files for examples. - Fixed readme example --- Examples/App.config | 6 - Examples/Examples.csproj | 93 ---- .../Examples/audio/audio_module_playing.cs | 155 ------ Examples/Examples/audio/audio_music_stream.cs | 107 ---- Examples/Examples/audio/audio_raw_stream.cs | 128 ----- .../Examples/audio/audio_sound_loading.cs | 81 --- Examples/Examples/core/core_2d_camera.cs | 153 ------ .../core/core_3d_camera_first_person.cs | 111 ---- Examples/Examples/core/core_3d_camera_free.cs | 97 ---- Examples/Examples/core/core_3d_mode.cs | 87 --- Examples/Examples/core/core_3d_picking.cs | 118 ----- Examples/Examples/core/core_basic_window.cs | 67 --- .../Examples/core/core_basic_window_web.cs | 99 ---- Examples/Examples/core/core_color_select.cs | 108 ---- Examples/Examples/core/core_drop_files.cs | 90 ---- .../Examples/core/core_gestures_detection.cs | 129 ----- Examples/Examples/core/core_input_gamepad.cs | 208 -------- Examples/Examples/core/core_input_keys.cs | 73 --- Examples/Examples/core/core_input_mouse.cs | 75 --- Examples/Examples/core/core_mouse_wheel.cs | 72 --- Examples/Examples/core/core_random_values.cs | 79 --- Examples/Examples/core/core_storage_values.cs | 99 ---- Examples/Examples/core/core_vr_simulator.cs | 100 ---- Examples/Examples/core/core_world_screen.cs | 93 ---- Examples/Examples/models/models_billboard.cs | 90 ---- .../Examples/models/models_box_collisions.cs | 135 ----- Examples/Examples/models/models_cubicmap.cs | 102 ---- .../models/models_geometric_shapes.cs | 94 ---- Examples/Examples/models/models_heightmap.cs | 96 ---- .../Examples/models/models_material_pbr.cs | 211 -------- .../Examples/models/models_mesh_generation.cs | 127 ----- .../Examples/models/models_mesh_picking.cs | 215 -------- .../Examples/models/models_obj_loading.cs | 94 ---- .../models/models_orthographic_projection.cs | 112 ---- Examples/Examples/models/models_skybox.cs | 105 ---- .../Examples/models/models_yaw_pitch_roll.cs | 214 -------- Examples/Examples/others/audio_standalone.cs | 156 ------ Examples/Examples/others/rlgl_standalone.cs | 434 --------------- Examples/Examples/others/standard_lighting.cs | 496 ------------------ Examples/Examples/physac/physics_demo.cs | 152 ------ Examples/Examples/physac/physics_friction.cs | 159 ------ Examples/Examples/physac/physics_movement.cs | 145 ----- .../Examples/physac/physics_restitution.cs | 138 ----- Examples/Examples/physac/physics_shatter.cs | 136 ----- .../shaders/shaders_custom_uniform.cs | 140 ----- .../Examples/shaders/shaders_model_shader.cs | 112 ---- .../shaders/shaders_postprocessing.cs | 194 ------- .../shaders/shaders_shapes_textures.cs | 123 ----- .../Examples/shapes/shapes_basic_shapes.cs | 86 --- .../Examples/shapes/shapes_colors_palette.cs | 111 ---- .../Examples/shapes/shapes_lines_bezier.cs | 74 --- .../Examples/shapes/shapes_logo_raylib.cs | 70 --- .../shapes/shapes_logo_raylib_anim.cs | 174 ------ Examples/Examples/text/text_bmfont_ttf.cs | 82 --- .../Examples/text/text_bmfont_unordered.cs | 79 --- Examples/Examples/text/text_font_sdf.cs | 140 ----- Examples/Examples/text/text_format_text.cs | 76 --- Examples/Examples/text/text_input_box.cs | 130 ----- Examples/Examples/text/text_raylib_fonts.cs | 117 ----- Examples/Examples/text/text_sprite_fonts.cs | 91 ---- Examples/Examples/text/text_ttf_loading.cs | 150 ------ Examples/Examples/text/text_writing_anim.cs | 76 --- .../textures/textures_image_drawing.cs | 100 ---- .../textures/textures_image_generation.cs | 120 ----- .../textures/textures_image_loading.cs | 77 --- .../textures/textures_image_processing.cs | 159 ------ .../Examples/textures/textures_image_text.cs | 97 ---- .../Examples/textures/textures_logo_raylib.cs | 71 --- .../textures/textures_particles_blending.cs | 149 ------ .../Examples/textures/textures_raw_data.cs | 109 ---- .../Examples/textures/textures_rectangle.cs | 113 ---- .../textures/textures_srcrec_dstrec.cs | 95 ---- .../Examples/textures/textures_to_image.cs | 82 --- Examples/Makefile | 477 +++++++++++++++++ Examples/Program.cs | 11 - Examples/audio/audio_module_playing.cs | 7 + .../audio/audio_module_playing.png | Bin Examples/audio/audio_music_stream.cs | 7 + .../audio/audio_music_stream.png | Bin Examples/audio/audio_raw_stream.cs | 7 + .../{Examples => }/audio/audio_raw_stream.png | Bin Examples/audio/audio_sound_loading.cs | 7 + .../audio/audio_sound_loading.png | Bin .../audio/resources/applause.mp3 | Bin .../audio/resources/chiptun1.mod | Bin .../{Examples => }/audio/resources/coin.wav | Bin .../audio/resources/guitar_noodling.ogg | Bin .../audio/resources/mini1111.xm | Bin .../{Examples => }/audio/resources/sound.wav | Bin .../{Examples => }/audio/resources/spring.wav | Bin .../audio/resources/tanatana.flac | Bin .../audio/resources/tanatana.ogg | Bin .../{Examples => }/audio/resources/weird.wav | Bin Examples/bin/Debug/Bindings.dll | Bin 57344 -> 0 bytes Examples/bin/Debug/Bindings.dll.config | 6 - Examples/bin/Debug/Examples.exe | Bin 5120 -> 0 bytes Examples/bin/Debug/Examples.exe.config | 6 - Examples/bin/Debug/x64/raylib.dll | Bin 3315200 -> 0 bytes Examples/bin/Debug/x86/raylib.dll | Bin 2645504 -> 0 bytes Examples/core/Bindings.dll | Bin 0 -> 56832 bytes Examples/core/core_2d_camera.cs | 7 + .../{Examples => }/core/core_2d_camera.png | Bin Examples/core/core_3d_camera_first_person.cs | 7 + .../core/core_3d_camera_first_person.png | Bin Examples/core/core_3d_camera_free.cs | 7 + .../core/core_3d_camera_free.png | Bin Examples/core/core_3d_mode.cs | 7 + Examples/{Examples => }/core/core_3d_mode.png | Bin Examples/core/core_3d_picking.cs | 7 + .../{Examples => }/core/core_3d_picking.png | Bin Examples/core/core_basic_window.cs | 1 + Examples/core/core_basic_window.exe | Bin 0 -> 4096 bytes .../{Examples => }/core/core_basic_window.png | Bin Examples/core/core_basic_window_web.cs | 7 + Examples/core/core_color_select.cs | 7 + .../{Examples => }/core/core_color_select.png | Bin Examples/core/core_custom_logging.cs | 7 + Examples/core/core_drop_files.cs | 7 + .../{Examples => }/core/core_drop_files.png | Bin Examples/core/core_gestures_detection.cs | 7 + .../core/core_gestures_detection.png | Bin Examples/core/core_input_gamepad.cs | 7 + .../core/core_input_gamepad.png | Bin Examples/core/core_input_keys.cs | 1 + Examples/core/core_input_keys.exe | Bin 0 -> 4608 bytes .../{Examples => }/core/core_input_keys.png | Bin Examples/core/core_input_mouse.cs | 1 + Examples/core/core_input_mouse.exe | Bin 0 -> 4608 bytes .../{Examples => }/core/core_input_mouse.png | Bin Examples/core/core_mouse_wheel.cs | 1 + Examples/core/core_mouse_wheel.exe | Bin 0 -> 4608 bytes .../{Examples => }/core/core_mouse_wheel.png | Bin Examples/core/core_random_values.cs | 7 + .../core/core_random_values.png | Bin Examples/core/core_storage_values.cs | 7 + .../core/core_storage_values.png | Bin Examples/core/core_vr_simulator.cs | 7 + .../{Examples => }/core/core_vr_simulator.png | Bin Examples/core/core_world_screen.cs | 7 + .../{Examples => }/core/core_world_screen.png | Bin Examples/{bin/Debug => core}/raylib.dll | Bin 3315200 -> 3315200 bytes .../{Examples => }/core/resources/ps3.png | Bin .../{Examples => }/core/resources/xbox.png | Bin Examples/iqm_loader/models_iqm_animation.cs | 7 + Examples/models/models_billboard.cs | 7 + .../models/models_billboard.png | Bin Examples/models/models_box_collisions.cs | 7 + .../models/models_box_collisions.png | Bin Examples/models/models_cubicmap.cs | 7 + .../{Examples => }/models/models_cubicmap.png | Bin Examples/models/models_geometric_shapes.cs | 7 + .../models/models_geometric_shapes.png | Bin Examples/models/models_heightmap.cs | 7 + .../models/models_heightmap.png | Bin Examples/models/models_material_pbr.cs | 7 + .../models/models_material_pbr.png | Bin Examples/models/models_mesh_generation.cs | 7 + .../models/models_mesh_generation.png | Bin Examples/models/models_mesh_picking.cs | 7 + .../models/models_mesh_picking.png | Bin Examples/models/models_obj_loading.cs | 7 + .../models/models_obj_loading.png | Bin .../models/models_orthographic_projection.cs | 7 + .../models/models_orthographic_projection.png | Bin Examples/models/models_skybox.cs | 7 + .../{Examples => }/models/models_skybox.png | Bin Examples/models/models_yaw_pitch_roll.cs | 7 + .../models/models_yaw_pitch_roll.png | Bin .../models/resources/angle_gauge.png | Bin .../models/resources/background.png | Bin .../models/resources/billboard.png | Bin .../models/resources/cubicmap.png | Bin .../models/resources/cubicmap_atlas.png | Bin .../models/resources/dresden_square.hdr | Bin .../models/resources/heightmap.png | Bin .../resources/models/bridge_diffuse.png | Bin .../resources/models/castle_diffuse.png | Bin .../models/resources/models/house_diffuse.png | Bin .../resources/models/market_diffuse.png | Bin .../resources/models/turret_diffuse.png | Bin .../models/resources/models/well_diffuse.png | Bin .../models/resources/pbr/trooper_albedo.png | Bin .../models/resources/pbr/trooper_ao.png | Bin .../resources/pbr/trooper_metalness.png | Bin .../models/resources/pbr/trooper_normals.png | Bin .../resources/pbr/trooper_roughness.png | Bin .../{Examples => }/models/resources/pitch.png | Bin .../{Examples => }/models/resources/plane.png | Bin .../models/resources/plane_diffuse.png | Bin .../models/resources/shaders/brdf.fs | 0 .../models/resources/shaders/brdf.vs | 0 .../models/resources/shaders/cubemap.fs | 0 .../models/resources/shaders/cubemap.vs | 0 .../models/resources/shaders/irradiance.fs | 0 .../models/resources/shaders/pbr.fs | 0 .../models/resources/shaders/pbr.vs | 0 .../models/resources/shaders/prefilter.fs | 0 .../models/resources/shaders/skybox.fs | 0 .../models/resources/shaders/skybox.vs | 0 Examples/others/audio_standalone.cs | 7 + Examples/others/bunnymark.cs | 7 + .../resources/audio/guitar_noodling.ogg | Bin .../others/resources/audio/tanatana.ogg | Bin .../others/resources/audio/weird.wav | Bin .../resources/shaders/glsl100/standard.fs | 0 .../resources/shaders/glsl100/standard.vs | 0 .../resources/shaders/glsl330/standard.fs | 0 .../resources/shaders/glsl330/standard.vs | 0 Examples/others/rlgl_standalone.cs | 7 + Examples/others/standard_lighting.cs | 7 + Examples/physac/physics_demo.cs | 7 + .../{Examples => }/physac/physics_demo.png | Bin Examples/physac/physics_friction.cs | 7 + .../physac/physics_friction.png | Bin Examples/physac/physics_movement.cs | 7 + .../physac/physics_movement.png | Bin Examples/physac/physics_restitution.cs | 7 + .../physac/physics_restitution.png | Bin Examples/physac/physics_shatter.cs | 7 + .../{Examples => }/physac/physics_shatter.png | Bin .../shaders/resources/fudesumi.png | Bin .../resources/models/barracks_diffuse.png | Bin .../resources/models/church_diffuse.png | Bin .../resources/models/watermill_diffuse.png | Bin .../shaders/resources/shaders/glsl100/base.fs | 0 .../shaders/resources/shaders/glsl100/base.vs | 0 .../resources/shaders/glsl100/bloom.fs | 0 .../shaders/resources/shaders/glsl100/blur.fs | 0 .../shaders/glsl100/cross_hatching.fs | 0 .../shaders/glsl100/cross_stitching.fs | 0 .../resources/shaders/glsl100/distortion.fs | 0 .../resources/shaders/glsl100/dream_vision.fs | 0 .../resources/shaders/glsl100/fisheye.fs | 0 .../resources/shaders/glsl100/grayscale.fs | 0 .../resources/shaders/glsl100/pixelizer.fs | 0 .../shaders/glsl100/posterization.fs | 0 .../resources/shaders/glsl100/predator.fs | 0 .../resources/shaders/glsl100/scanlines.fs | 0 .../resources/shaders/glsl100/sobel.fs | 0 .../resources/shaders/glsl100/swirl.fs | 0 .../shaders/resources/shaders/glsl120/base.fs | 0 .../shaders/resources/shaders/glsl120/base.vs | 0 .../resources/shaders/glsl120/bloom.fs | 0 .../shaders/resources/shaders/glsl120/blur.fs | 0 .../shaders/glsl120/cross_hatching.fs | 0 .../shaders/glsl120/cross_stitching.fs | 0 .../resources/shaders/glsl120/distortion.fs | 0 .../resources/shaders/glsl120/dream_vision.fs | 0 .../resources/shaders/glsl120/fisheye.fs | 0 .../resources/shaders/glsl120/grayscale.fs | 0 .../resources/shaders/glsl120/pixelizer.fs | 0 .../shaders/glsl120/posterization.fs | 0 .../resources/shaders/glsl120/predator.fs | 0 .../resources/shaders/glsl120/scanlines.fs | 0 .../resources/shaders/glsl120/sobel.fs | 0 .../resources/shaders/glsl120/swirl.fs | 0 .../shaders/resources/shaders/glsl330/base.fs | 0 .../shaders/resources/shaders/glsl330/base.vs | 0 .../resources/shaders/glsl330/bloom.fs | 0 .../shaders/resources/shaders/glsl330/blur.fs | 0 .../shaders/glsl330/cross_hatching.fs | 0 .../shaders/glsl330/cross_stitching.fs | 0 .../resources/shaders/glsl330/depth.fs | 0 .../resources/shaders/glsl330/distortion.fs | 0 .../resources/shaders/glsl330/dream_vision.fs | 0 .../resources/shaders/glsl330/fisheye.fs | 0 .../resources/shaders/glsl330/grayscale.fs | 0 .../resources/shaders/glsl330/overdraw.fs | 0 .../resources/shaders/glsl330/pixelizer.fs | 0 .../shaders/glsl330/posterization.fs | 0 .../resources/shaders/glsl330/predator.fs | 0 .../resources/shaders/glsl330/scanlines.fs | 0 .../resources/shaders/glsl330/sobel.fs | 0 .../resources/shaders/glsl330/swirl.fs | 0 Examples/shaders/shaders_custom_uniform.cs | 7 + .../shaders/shaders_custom_uniform.png | Bin Examples/shaders/shaders_model_shader.cs | 7 + .../shaders/shaders_model_shader.png | Bin Examples/shaders/shaders_postprocessing.cs | 7 + .../shaders/shaders_postprocessing.png | Bin Examples/shaders/shaders_shapes_textures.cs | 7 + .../shaders/shaders_shapes_textures.png | Bin Examples/shapes/shapes_basic_shapes.cs | 7 + .../shapes/shapes_basic_shapes.png | Bin Examples/shapes/shapes_colors_palette.cs | 7 + .../shapes/shapes_colors_palette.png | Bin Examples/shapes/shapes_lines_bezier.cs | 7 + .../shapes/shapes_lines_bezier.png | Bin Examples/shapes/shapes_logo_raylib.cs | 7 + .../shapes/shapes_logo_raylib.png | Bin Examples/shapes/shapes_logo_raylib_anim.cs | 7 + .../shapes/shapes_logo_raylib_anim.png | Bin .../text/resources/AnonymousPro-Bold.ttf | Bin .../text/resources/AnonymousPro_OFL.txt | 0 .../{Examples => }/text/resources/KAISG.ttf | Bin .../{Examples => }/text/resources/bmfont.fnt | 0 .../{Examples => }/text/resources/bmfont.png | Bin .../text/resources/custom_alagard.png | Bin .../text/resources/custom_jupiter_crash.png | Bin .../text/resources/custom_mecha.png | Bin .../text/resources/fonts/alagard.png | Bin .../text/resources/fonts/alpha_beta.png | Bin .../text/resources/fonts/jupiter_crash.png | Bin .../text/resources/fonts/mecha.png | Bin .../text/resources/fonts/pixantiqua.png | Bin .../text/resources/fonts/pixelplay.png | Bin .../text/resources/fonts/romulus.png | Bin .../text/resources/fonts/setback.png | Bin .../text/resources/pixantiqua.fnt | 0 .../text/resources/pixantiqua.ttf | Bin .../text/resources/pixantiqua_0.png | Bin .../text/resources/shaders/sdf.fs | 0 Examples/text/text_bmfont_ttf.cs | 7 + .../{Examples => }/text/text_bmfont_ttf.png | Bin Examples/text/text_bmfont_unordered.cs | 7 + .../text/text_bmfont_unordered.png | Bin Examples/text/text_font_sdf.cs | 7 + .../{Examples => }/text/text_font_sdf.png | Bin Examples/text/text_format_text.cs | 7 + .../{Examples => }/text/text_format_text.png | Bin Examples/text/text_input_box.cs | 7 + .../{Examples => }/text/text_input_box.png | Bin Examples/text/text_raylib_fonts.cs | 7 + .../{Examples => }/text/text_raylib_fonts.png | Bin Examples/text/text_sprite_fonts.cs | 7 + .../{Examples => }/text/text_sprite_fonts.png | Bin Examples/text/text_ttf_loading.cs | 7 + .../{Examples => }/text/text_ttf_loading.png | Bin Examples/text/text_writing_anim.cs | 7 + .../{Examples => }/text/text_writing_anim.png | Bin .../textures/resources/KAISG.ttf | Bin .../{Examples => }/textures/resources/cat.png | Bin .../resources/custom_jupiter_crash.png | Bin .../textures/resources/fudesumi.png | Bin .../textures/resources/fudesumi.raw | Bin .../textures/resources/parrots.png | Bin .../textures/resources/raylib_logo.png | Bin .../textures/resources/scarfy.png | Bin .../textures/resources/smoke.png | Bin Examples/textures/textures_image_9patch.cs | 7 + Examples/textures/textures_image_drawing.cs | 7 + .../textures/textures_image_drawing.png | Bin .../textures/textures_image_generation.cs | 7 + .../textures/textures_image_generation.png | Bin Examples/textures/textures_image_loading.cs | 7 + .../textures/textures_image_loading.png | Bin .../textures/textures_image_processing.cs | 7 + .../textures/textures_image_processing.png | Bin Examples/textures/textures_image_text.cs | 7 + .../textures/textures_image_text.png | Bin Examples/textures/textures_logo_raylib.cs | 7 + .../textures/textures_logo_raylib.png | Bin .../textures/textures_particles_blending.cs | 7 + .../textures/textures_particles_blending.png | Bin Examples/textures/textures_raw_data.cs | 7 + .../textures/textures_raw_data.png | Bin Examples/textures/textures_rectangle.cs | 7 + .../textures/textures_rectangle.png | Bin Examples/textures/textures_srcrec_dstrec.cs | 7 + .../textures/textures_srcrec_dstrec.png | Bin Examples/textures/textures_to_image.cs | 7 + .../textures/textures_to_image.png | Bin README.md | 2 +- Raylib-cs.sln | 17 - 364 files changed, 979 insertions(+), 9077 deletions(-) delete mode 100644 Examples/App.config delete mode 100644 Examples/Examples.csproj delete mode 100644 Examples/Examples/audio/audio_module_playing.cs delete mode 100644 Examples/Examples/audio/audio_music_stream.cs delete mode 100644 Examples/Examples/audio/audio_raw_stream.cs delete mode 100644 Examples/Examples/audio/audio_sound_loading.cs delete mode 100644 Examples/Examples/core/core_2d_camera.cs delete mode 100644 Examples/Examples/core/core_3d_camera_first_person.cs delete mode 100644 Examples/Examples/core/core_3d_camera_free.cs delete mode 100644 Examples/Examples/core/core_3d_mode.cs delete mode 100644 Examples/Examples/core/core_3d_picking.cs delete mode 100644 Examples/Examples/core/core_basic_window.cs delete mode 100644 Examples/Examples/core/core_basic_window_web.cs delete mode 100644 Examples/Examples/core/core_color_select.cs delete mode 100644 Examples/Examples/core/core_drop_files.cs delete mode 100644 Examples/Examples/core/core_gestures_detection.cs delete mode 100644 Examples/Examples/core/core_input_gamepad.cs delete mode 100644 Examples/Examples/core/core_input_keys.cs delete mode 100644 Examples/Examples/core/core_input_mouse.cs delete mode 100644 Examples/Examples/core/core_mouse_wheel.cs delete mode 100644 Examples/Examples/core/core_random_values.cs delete mode 100644 Examples/Examples/core/core_storage_values.cs delete mode 100644 Examples/Examples/core/core_vr_simulator.cs delete mode 100644 Examples/Examples/core/core_world_screen.cs delete mode 100644 Examples/Examples/models/models_billboard.cs delete mode 100644 Examples/Examples/models/models_box_collisions.cs delete mode 100644 Examples/Examples/models/models_cubicmap.cs delete mode 100644 Examples/Examples/models/models_geometric_shapes.cs delete mode 100644 Examples/Examples/models/models_heightmap.cs delete mode 100644 Examples/Examples/models/models_material_pbr.cs delete mode 100644 Examples/Examples/models/models_mesh_generation.cs delete mode 100644 Examples/Examples/models/models_mesh_picking.cs delete mode 100644 Examples/Examples/models/models_obj_loading.cs delete mode 100644 Examples/Examples/models/models_orthographic_projection.cs delete mode 100644 Examples/Examples/models/models_skybox.cs delete mode 100644 Examples/Examples/models/models_yaw_pitch_roll.cs delete mode 100644 Examples/Examples/others/audio_standalone.cs delete mode 100644 Examples/Examples/others/rlgl_standalone.cs delete mode 100644 Examples/Examples/others/standard_lighting.cs delete mode 100644 Examples/Examples/physac/physics_demo.cs delete mode 100644 Examples/Examples/physac/physics_friction.cs delete mode 100644 Examples/Examples/physac/physics_movement.cs delete mode 100644 Examples/Examples/physac/physics_restitution.cs delete mode 100644 Examples/Examples/physac/physics_shatter.cs delete mode 100644 Examples/Examples/shaders/shaders_custom_uniform.cs delete mode 100644 Examples/Examples/shaders/shaders_model_shader.cs delete mode 100644 Examples/Examples/shaders/shaders_postprocessing.cs delete mode 100644 Examples/Examples/shaders/shaders_shapes_textures.cs delete mode 100644 Examples/Examples/shapes/shapes_basic_shapes.cs delete mode 100644 Examples/Examples/shapes/shapes_colors_palette.cs delete mode 100644 Examples/Examples/shapes/shapes_lines_bezier.cs delete mode 100644 Examples/Examples/shapes/shapes_logo_raylib.cs delete mode 100644 Examples/Examples/shapes/shapes_logo_raylib_anim.cs delete mode 100644 Examples/Examples/text/text_bmfont_ttf.cs delete mode 100644 Examples/Examples/text/text_bmfont_unordered.cs delete mode 100644 Examples/Examples/text/text_font_sdf.cs delete mode 100644 Examples/Examples/text/text_format_text.cs delete mode 100644 Examples/Examples/text/text_input_box.cs delete mode 100644 Examples/Examples/text/text_raylib_fonts.cs delete mode 100644 Examples/Examples/text/text_sprite_fonts.cs delete mode 100644 Examples/Examples/text/text_ttf_loading.cs delete mode 100644 Examples/Examples/text/text_writing_anim.cs delete mode 100644 Examples/Examples/textures/textures_image_drawing.cs delete mode 100644 Examples/Examples/textures/textures_image_generation.cs delete mode 100644 Examples/Examples/textures/textures_image_loading.cs delete mode 100644 Examples/Examples/textures/textures_image_processing.cs delete mode 100644 Examples/Examples/textures/textures_image_text.cs delete mode 100644 Examples/Examples/textures/textures_logo_raylib.cs delete mode 100644 Examples/Examples/textures/textures_particles_blending.cs delete mode 100644 Examples/Examples/textures/textures_raw_data.cs delete mode 100644 Examples/Examples/textures/textures_rectangle.cs delete mode 100644 Examples/Examples/textures/textures_srcrec_dstrec.cs delete mode 100644 Examples/Examples/textures/textures_to_image.cs create mode 100644 Examples/Makefile delete mode 100644 Examples/Program.cs create mode 100644 Examples/audio/audio_module_playing.cs rename Examples/{Examples => }/audio/audio_module_playing.png (100%) create mode 100644 Examples/audio/audio_music_stream.cs rename Examples/{Examples => }/audio/audio_music_stream.png (100%) create mode 100644 Examples/audio/audio_raw_stream.cs rename Examples/{Examples => }/audio/audio_raw_stream.png (100%) create mode 100644 Examples/audio/audio_sound_loading.cs rename Examples/{Examples => }/audio/audio_sound_loading.png (100%) rename Examples/{Examples => }/audio/resources/applause.mp3 (100%) rename Examples/{Examples => }/audio/resources/chiptun1.mod (100%) rename Examples/{Examples => }/audio/resources/coin.wav (100%) rename Examples/{Examples => }/audio/resources/guitar_noodling.ogg (100%) rename Examples/{Examples => }/audio/resources/mini1111.xm (100%) rename Examples/{Examples => }/audio/resources/sound.wav (100%) rename Examples/{Examples => }/audio/resources/spring.wav (100%) rename Examples/{Examples => }/audio/resources/tanatana.flac (100%) rename Examples/{Examples => }/audio/resources/tanatana.ogg (100%) rename Examples/{Examples => }/audio/resources/weird.wav (100%) delete mode 100644 Examples/bin/Debug/Bindings.dll delete mode 100644 Examples/bin/Debug/Bindings.dll.config delete mode 100644 Examples/bin/Debug/Examples.exe delete mode 100644 Examples/bin/Debug/Examples.exe.config delete mode 100644 Examples/bin/Debug/x64/raylib.dll delete mode 100644 Examples/bin/Debug/x86/raylib.dll create mode 100644 Examples/core/Bindings.dll create mode 100644 Examples/core/core_2d_camera.cs rename Examples/{Examples => }/core/core_2d_camera.png (100%) create mode 100644 Examples/core/core_3d_camera_first_person.cs rename Examples/{Examples => }/core/core_3d_camera_first_person.png (100%) create mode 100644 Examples/core/core_3d_camera_free.cs rename Examples/{Examples => }/core/core_3d_camera_free.png (100%) create mode 100644 Examples/core/core_3d_mode.cs rename Examples/{Examples => }/core/core_3d_mode.png (100%) create mode 100644 Examples/core/core_3d_picking.cs rename Examples/{Examples => }/core/core_3d_picking.png (100%) create mode 100644 Examples/core/core_basic_window.cs create mode 100644 Examples/core/core_basic_window.exe rename Examples/{Examples => }/core/core_basic_window.png (100%) create mode 100644 Examples/core/core_basic_window_web.cs create mode 100644 Examples/core/core_color_select.cs rename Examples/{Examples => }/core/core_color_select.png (100%) create mode 100644 Examples/core/core_custom_logging.cs create mode 100644 Examples/core/core_drop_files.cs rename Examples/{Examples => }/core/core_drop_files.png (100%) create mode 100644 Examples/core/core_gestures_detection.cs rename Examples/{Examples => }/core/core_gestures_detection.png (100%) create mode 100644 Examples/core/core_input_gamepad.cs rename Examples/{Examples => }/core/core_input_gamepad.png (100%) create mode 100644 Examples/core/core_input_keys.cs create mode 100644 Examples/core/core_input_keys.exe rename Examples/{Examples => }/core/core_input_keys.png (100%) create mode 100644 Examples/core/core_input_mouse.cs create mode 100644 Examples/core/core_input_mouse.exe rename Examples/{Examples => }/core/core_input_mouse.png (100%) create mode 100644 Examples/core/core_mouse_wheel.cs create mode 100644 Examples/core/core_mouse_wheel.exe rename Examples/{Examples => }/core/core_mouse_wheel.png (100%) create mode 100644 Examples/core/core_random_values.cs rename Examples/{Examples => }/core/core_random_values.png (100%) create mode 100644 Examples/core/core_storage_values.cs rename Examples/{Examples => }/core/core_storage_values.png (100%) create mode 100644 Examples/core/core_vr_simulator.cs rename Examples/{Examples => }/core/core_vr_simulator.png (100%) create mode 100644 Examples/core/core_world_screen.cs rename Examples/{Examples => }/core/core_world_screen.png (100%) rename Examples/{bin/Debug => core}/raylib.dll (99%) rename Examples/{Examples => }/core/resources/ps3.png (100%) rename Examples/{Examples => }/core/resources/xbox.png (100%) create mode 100644 Examples/iqm_loader/models_iqm_animation.cs create mode 100644 Examples/models/models_billboard.cs rename Examples/{Examples => }/models/models_billboard.png (100%) create mode 100644 Examples/models/models_box_collisions.cs rename Examples/{Examples => }/models/models_box_collisions.png (100%) create mode 100644 Examples/models/models_cubicmap.cs rename Examples/{Examples => }/models/models_cubicmap.png (100%) create mode 100644 Examples/models/models_geometric_shapes.cs rename Examples/{Examples => }/models/models_geometric_shapes.png (100%) create mode 100644 Examples/models/models_heightmap.cs rename Examples/{Examples => }/models/models_heightmap.png (100%) create mode 100644 Examples/models/models_material_pbr.cs rename Examples/{Examples => }/models/models_material_pbr.png (100%) create mode 100644 Examples/models/models_mesh_generation.cs rename Examples/{Examples => }/models/models_mesh_generation.png (100%) create mode 100644 Examples/models/models_mesh_picking.cs rename Examples/{Examples => }/models/models_mesh_picking.png (100%) create mode 100644 Examples/models/models_obj_loading.cs rename Examples/{Examples => }/models/models_obj_loading.png (100%) create mode 100644 Examples/models/models_orthographic_projection.cs rename Examples/{Examples => }/models/models_orthographic_projection.png (100%) create mode 100644 Examples/models/models_skybox.cs rename Examples/{Examples => }/models/models_skybox.png (100%) create mode 100644 Examples/models/models_yaw_pitch_roll.cs rename Examples/{Examples => }/models/models_yaw_pitch_roll.png (100%) rename Examples/{Examples => }/models/resources/angle_gauge.png (100%) rename Examples/{Examples => }/models/resources/background.png (100%) rename Examples/{Examples => }/models/resources/billboard.png (100%) rename Examples/{Examples => }/models/resources/cubicmap.png (100%) rename Examples/{Examples => }/models/resources/cubicmap_atlas.png (100%) rename Examples/{Examples => }/models/resources/dresden_square.hdr (100%) rename Examples/{Examples => }/models/resources/heightmap.png (100%) rename Examples/{Examples => }/models/resources/models/bridge_diffuse.png (100%) rename Examples/{Examples => }/models/resources/models/castle_diffuse.png (100%) rename Examples/{Examples => }/models/resources/models/house_diffuse.png (100%) rename Examples/{Examples => }/models/resources/models/market_diffuse.png (100%) rename Examples/{Examples => }/models/resources/models/turret_diffuse.png (100%) rename Examples/{Examples => }/models/resources/models/well_diffuse.png (100%) rename Examples/{Examples => }/models/resources/pbr/trooper_albedo.png (100%) rename Examples/{Examples => }/models/resources/pbr/trooper_ao.png (100%) rename Examples/{Examples => }/models/resources/pbr/trooper_metalness.png (100%) rename Examples/{Examples => }/models/resources/pbr/trooper_normals.png (100%) rename Examples/{Examples => }/models/resources/pbr/trooper_roughness.png (100%) rename Examples/{Examples => }/models/resources/pitch.png (100%) rename Examples/{Examples => }/models/resources/plane.png (100%) rename Examples/{Examples => }/models/resources/plane_diffuse.png (100%) rename Examples/{Examples => }/models/resources/shaders/brdf.fs (100%) rename Examples/{Examples => }/models/resources/shaders/brdf.vs (100%) rename Examples/{Examples => }/models/resources/shaders/cubemap.fs (100%) rename Examples/{Examples => }/models/resources/shaders/cubemap.vs (100%) rename Examples/{Examples => }/models/resources/shaders/irradiance.fs (100%) rename Examples/{Examples => }/models/resources/shaders/pbr.fs (100%) rename Examples/{Examples => }/models/resources/shaders/pbr.vs (100%) rename Examples/{Examples => }/models/resources/shaders/prefilter.fs (100%) rename Examples/{Examples => }/models/resources/shaders/skybox.fs (100%) rename Examples/{Examples => }/models/resources/shaders/skybox.vs (100%) create mode 100644 Examples/others/audio_standalone.cs create mode 100644 Examples/others/bunnymark.cs rename Examples/{Examples => }/others/resources/audio/guitar_noodling.ogg (100%) rename Examples/{Examples => }/others/resources/audio/tanatana.ogg (100%) rename Examples/{Examples => }/others/resources/audio/weird.wav (100%) rename Examples/{Examples => }/others/resources/shaders/glsl100/standard.fs (100%) rename Examples/{Examples => }/others/resources/shaders/glsl100/standard.vs (100%) rename Examples/{Examples => }/others/resources/shaders/glsl330/standard.fs (100%) rename Examples/{Examples => }/others/resources/shaders/glsl330/standard.vs (100%) create mode 100644 Examples/others/rlgl_standalone.cs create mode 100644 Examples/others/standard_lighting.cs create mode 100644 Examples/physac/physics_demo.cs rename Examples/{Examples => }/physac/physics_demo.png (100%) create mode 100644 Examples/physac/physics_friction.cs rename Examples/{Examples => }/physac/physics_friction.png (100%) create mode 100644 Examples/physac/physics_movement.cs rename Examples/{Examples => }/physac/physics_movement.png (100%) create mode 100644 Examples/physac/physics_restitution.cs rename Examples/{Examples => }/physac/physics_restitution.png (100%) create mode 100644 Examples/physac/physics_shatter.cs rename Examples/{Examples => }/physac/physics_shatter.png (100%) rename Examples/{Examples => }/shaders/resources/fudesumi.png (100%) rename Examples/{Examples => }/shaders/resources/models/barracks_diffuse.png (100%) rename Examples/{Examples => }/shaders/resources/models/church_diffuse.png (100%) rename Examples/{Examples => }/shaders/resources/models/watermill_diffuse.png (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/base.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/base.vs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/bloom.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/blur.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/cross_hatching.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/cross_stitching.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/distortion.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/dream_vision.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/fisheye.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/grayscale.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/pixelizer.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/posterization.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/predator.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/scanlines.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/sobel.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl100/swirl.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/base.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/base.vs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/bloom.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/blur.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/cross_hatching.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/cross_stitching.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/distortion.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/dream_vision.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/fisheye.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/grayscale.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/pixelizer.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/posterization.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/predator.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/scanlines.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/sobel.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl120/swirl.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/base.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/base.vs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/bloom.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/blur.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/cross_hatching.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/cross_stitching.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/depth.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/distortion.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/dream_vision.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/fisheye.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/grayscale.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/overdraw.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/pixelizer.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/posterization.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/predator.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/scanlines.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/sobel.fs (100%) rename Examples/{Examples => }/shaders/resources/shaders/glsl330/swirl.fs (100%) create mode 100644 Examples/shaders/shaders_custom_uniform.cs rename Examples/{Examples => }/shaders/shaders_custom_uniform.png (100%) create mode 100644 Examples/shaders/shaders_model_shader.cs rename Examples/{Examples => }/shaders/shaders_model_shader.png (100%) create mode 100644 Examples/shaders/shaders_postprocessing.cs rename Examples/{Examples => }/shaders/shaders_postprocessing.png (100%) create mode 100644 Examples/shaders/shaders_shapes_textures.cs rename Examples/{Examples => }/shaders/shaders_shapes_textures.png (100%) create mode 100644 Examples/shapes/shapes_basic_shapes.cs rename Examples/{Examples => }/shapes/shapes_basic_shapes.png (100%) create mode 100644 Examples/shapes/shapes_colors_palette.cs rename Examples/{Examples => }/shapes/shapes_colors_palette.png (100%) create mode 100644 Examples/shapes/shapes_lines_bezier.cs rename Examples/{Examples => }/shapes/shapes_lines_bezier.png (100%) create mode 100644 Examples/shapes/shapes_logo_raylib.cs rename Examples/{Examples => }/shapes/shapes_logo_raylib.png (100%) create mode 100644 Examples/shapes/shapes_logo_raylib_anim.cs rename Examples/{Examples => }/shapes/shapes_logo_raylib_anim.png (100%) rename Examples/{Examples => }/text/resources/AnonymousPro-Bold.ttf (100%) rename Examples/{Examples => }/text/resources/AnonymousPro_OFL.txt (100%) rename Examples/{Examples => }/text/resources/KAISG.ttf (100%) rename Examples/{Examples => }/text/resources/bmfont.fnt (100%) rename Examples/{Examples => }/text/resources/bmfont.png (100%) rename Examples/{Examples => }/text/resources/custom_alagard.png (100%) rename Examples/{Examples => }/text/resources/custom_jupiter_crash.png (100%) rename Examples/{Examples => }/text/resources/custom_mecha.png (100%) rename Examples/{Examples => }/text/resources/fonts/alagard.png (100%) rename Examples/{Examples => }/text/resources/fonts/alpha_beta.png (100%) rename Examples/{Examples => }/text/resources/fonts/jupiter_crash.png (100%) rename Examples/{Examples => }/text/resources/fonts/mecha.png (100%) rename Examples/{Examples => }/text/resources/fonts/pixantiqua.png (100%) rename Examples/{Examples => }/text/resources/fonts/pixelplay.png (100%) rename Examples/{Examples => }/text/resources/fonts/romulus.png (100%) rename Examples/{Examples => }/text/resources/fonts/setback.png (100%) rename Examples/{Examples => }/text/resources/pixantiqua.fnt (100%) rename Examples/{Examples => }/text/resources/pixantiqua.ttf (100%) rename Examples/{Examples => }/text/resources/pixantiqua_0.png (100%) rename Examples/{Examples => }/text/resources/shaders/sdf.fs (100%) create mode 100644 Examples/text/text_bmfont_ttf.cs rename Examples/{Examples => }/text/text_bmfont_ttf.png (100%) create mode 100644 Examples/text/text_bmfont_unordered.cs rename Examples/{Examples => }/text/text_bmfont_unordered.png (100%) create mode 100644 Examples/text/text_font_sdf.cs rename Examples/{Examples => }/text/text_font_sdf.png (100%) create mode 100644 Examples/text/text_format_text.cs rename Examples/{Examples => }/text/text_format_text.png (100%) create mode 100644 Examples/text/text_input_box.cs rename Examples/{Examples => }/text/text_input_box.png (100%) create mode 100644 Examples/text/text_raylib_fonts.cs rename Examples/{Examples => }/text/text_raylib_fonts.png (100%) create mode 100644 Examples/text/text_sprite_fonts.cs rename Examples/{Examples => }/text/text_sprite_fonts.png (100%) create mode 100644 Examples/text/text_ttf_loading.cs rename Examples/{Examples => }/text/text_ttf_loading.png (100%) create mode 100644 Examples/text/text_writing_anim.cs rename Examples/{Examples => }/text/text_writing_anim.png (100%) rename Examples/{Examples => }/textures/resources/KAISG.ttf (100%) rename Examples/{Examples => }/textures/resources/cat.png (100%) rename Examples/{Examples => }/textures/resources/custom_jupiter_crash.png (100%) rename Examples/{Examples => }/textures/resources/fudesumi.png (100%) rename Examples/{Examples => }/textures/resources/fudesumi.raw (100%) rename Examples/{Examples => }/textures/resources/parrots.png (100%) rename Examples/{Examples => }/textures/resources/raylib_logo.png (100%) rename Examples/{Examples => }/textures/resources/scarfy.png (100%) rename Examples/{Examples => }/textures/resources/smoke.png (100%) create mode 100644 Examples/textures/textures_image_9patch.cs create mode 100644 Examples/textures/textures_image_drawing.cs rename Examples/{Examples => }/textures/textures_image_drawing.png (100%) create mode 100644 Examples/textures/textures_image_generation.cs rename Examples/{Examples => }/textures/textures_image_generation.png (100%) create mode 100644 Examples/textures/textures_image_loading.cs rename Examples/{Examples => }/textures/textures_image_loading.png (100%) create mode 100644 Examples/textures/textures_image_processing.cs rename Examples/{Examples => }/textures/textures_image_processing.png (100%) create mode 100644 Examples/textures/textures_image_text.cs rename Examples/{Examples => }/textures/textures_image_text.png (100%) create mode 100644 Examples/textures/textures_logo_raylib.cs rename Examples/{Examples => }/textures/textures_logo_raylib.png (100%) create mode 100644 Examples/textures/textures_particles_blending.cs rename Examples/{Examples => }/textures/textures_particles_blending.png (100%) create mode 100644 Examples/textures/textures_raw_data.cs rename Examples/{Examples => }/textures/textures_raw_data.png (100%) create mode 100644 Examples/textures/textures_rectangle.cs rename Examples/{Examples => }/textures/textures_rectangle.png (100%) create mode 100644 Examples/textures/textures_srcrec_dstrec.cs rename Examples/{Examples => }/textures/textures_srcrec_dstrec.png (100%) create mode 100644 Examples/textures/textures_to_image.cs rename Examples/{Examples => }/textures/textures_to_image.png (100%) diff --git a/Examples/App.config b/Examples/App.config deleted file mode 100644 index 731f6de..0000000 --- a/Examples/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Examples/Examples.csproj b/Examples/Examples.csproj deleted file mode 100644 index 563da7d..0000000 --- a/Examples/Examples.csproj +++ /dev/null @@ -1,93 +0,0 @@ - - - - - Debug - AnyCPU - {2B152086-45AD-4DD2-A9A5-32AEC4FE608C} - Exe - Examples - Examples - v4.6.1 - 512 - true - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - true - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - true - bin\Debug\ - DEBUG;TRACE - false - full - x64 - prompt - MinimumRecommendedRules.ruleset - true - - - bin\x64\Release\ - TRACE - true - pdbonly - x64 - prompt - MinimumRecommendedRules.ruleset - true - - - raylib-cs.ico - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {a2b3bbc8-3d48-46dd-b3cf-263f554e4474} - Bindings - - - - - \ No newline at end of file diff --git a/Examples/Examples/audio/audio_module_playing.cs b/Examples/Examples/audio/audio_module_playing.cs deleted file mode 100644 index 9bab822..0000000 --- a/Examples/Examples/audio/audio_module_playing.cs +++ /dev/null @@ -1,155 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [audio] example - Module playing (streaming) - * - * NOTE: This example requires OpenAL Soft library installed - * - * This example has been created using raylib 1.5 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - private const int MAX_CIRCLES = 64; - - typedef struct { - Vector2 position; - float radius; - float alpha; - float speed; - Color color; - } CircleWave; - - public static int audio_module_playing() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); // NOTE: Try to enable MSAA 4X - - InitWindow(screenWidth, screenHeight, "raylib [audio] example - module playing (streaming)"); - - InitAudioDevice(); // Initialize audio device - - Color colors[14] = { ORANGE, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK, - YELLOW, GREEN, SKYBLUE, PURPLE, BEIGE }; - - // Creates ome circles for visual effect - CircleWave circles[MAX_CIRCLES]; - - for (int i = MAX_CIRCLES - 1; i >= 0; i--) - { - circles[i].alpha = 0.0f; - circles[i].radius = GetRandomValue(10, 40); - circles[i].position.x = GetRandomValue(circles[i].radius, screenWidth - circles[i].radius); - circles[i].position.y = GetRandomValue(circles[i].radius, screenHeight - circles[i].radius); - circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f; - circles[i].color = colors[GetRandomValue(0, 13)]; - } - - Music xm = LoadMusicStream("resources/mini1111.xm"); - - PlayMusicStream(xm); - - float timePlayed = 0.0f; - bool pause = false; - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateMusicStream(xm); // Update music buffer with new stream data - - // Restart music playing (stop and play) - if (IsKeyPressed(KEY_SPACE)) - { - StopMusicStream(xm); - PlayMusicStream(xm); - } - - // Pause/Resume music playing - if (IsKeyPressed(KEY_P)) - { - pause = !pause; - - if (pause) PauseMusicStream(xm); - else ResumeMusicStream(xm); - } - - // Get timePlayed scaled to bar dimensions - timePlayed = GetMusicTimePlayed(xm)/GetMusicTimeLength(xm)*(screenWidth - 40); - - // Color circles animation - for (int i = MAX_CIRCLES - 1; (i >= 0) && !pause; i--) - { - circles[i].alpha += circles[i].speed; - circles[i].radius += circles[i].speed*10.0f; - - if (circles[i].alpha > 1.0f) circles[i].speed *= -1; - - if (circles[i].alpha <= 0.0f) - { - circles[i].alpha = 0.0f; - circles[i].radius = GetRandomValue(10, 40); - circles[i].position.x = GetRandomValue(circles[i].radius, screenWidth - circles[i].radius); - circles[i].position.y = GetRandomValue(circles[i].radius, screenHeight - circles[i].radius); - circles[i].color = colors[GetRandomValue(0, 13)]; - circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f; - } - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - for (int i = MAX_CIRCLES - 1; i >= 0; i--) - { - DrawCircleV(circles[i].position, circles[i].radius, Fade(circles[i].color, circles[i].alpha)); - } - - // Draw time bar - DrawRectangle(20, screenHeight - 20 - 12, screenWidth - 40, 12, LIGHTGRAY); - DrawRectangle(20, screenHeight - 20 - 12, (int)timePlayed, 12, MAROON); - DrawRectangleLines(20, screenHeight - 20 - 12, screenWidth - 40, 12, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadMusicStream(xm); // Unload music stream buffers from RAM - - CloseAudioDevice(); // Close audio device (music streaming is automatically stopped) - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/audio/audio_music_stream.cs b/Examples/Examples/audio/audio_music_stream.cs deleted file mode 100644 index 47d700c..0000000 --- a/Examples/Examples/audio/audio_music_stream.cs +++ /dev/null @@ -1,107 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [audio] example - Music playing (streaming) - * - * NOTE: This example requires OpenAL Soft library installed - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int audio_music_stream() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [audio] example - music playing (streaming)"); - - InitAudioDevice(); // Initialize audio device - - Music music = LoadMusicStream("resources/guitar_noodling.ogg"); - - PlayMusicStream(music); - - float timePlayed = 0.0f; - bool pause = false; - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateMusicStream(music); // Update music buffer with new stream data - - // Restart music playing (stop and play) - if (IsKeyPressed(KEY_SPACE)) - { - StopMusicStream(music); - PlayMusicStream(music); - } - - // Pause/Resume music playing - if (IsKeyPressed(KEY_P)) - { - pause = !pause; - - if (pause) PauseMusicStream(music); - else ResumeMusicStream(music); - } - - // Get timePlayed scaled to bar dimensions (400 pixels) - timePlayed = GetMusicTimePlayed(music)/GetMusicTimeLength(music)*400; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("MUSIC SHOULD BE PLAYING!", 255, 150, 20, LIGHTGRAY); - - DrawRectangle(200, 200, 400, 12, LIGHTGRAY); - DrawRectangle(200, 200, (int)timePlayed, 12, MAROON); - DrawRectangleLines(200, 200, 400, 12, GRAY); - - DrawText("PRESS SPACE TO RESTART MUSIC", 215, 250, 20, LIGHTGRAY); - DrawText("PRESS P TO PAUSE/RESUME MUSIC", 208, 280, 20, LIGHTGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadMusicStream(music); // Unload music stream buffers from RAM - - CloseAudioDevice(); // Close audio device (music streaming is automatically stopped) - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/audio/audio_raw_stream.cs b/Examples/Examples/audio/audio_raw_stream.cs deleted file mode 100644 index 32ee329..0000000 --- a/Examples/Examples/audio/audio_raw_stream.cs +++ /dev/null @@ -1,128 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [audio] example - Raw audio streaming - * - * NOTE: This example requires OpenAL Soft library installed - * - * This example has been created using raylib 1.6 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - #include // Required for: malloc(), free() - #include // Required for: sinf() - - private const int MAX_SAMPLES = 22050; - private const int MAX_SAMPLES_PER_UPDATE = 4096; - - public static int audio_raw_stream() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [audio] example - raw audio streaming"); - - InitAudioDevice(); // Initialize audio device - - // Init raw audio stream (sample rate: 22050, sample size: 16bit-short, channels: 1-mono) - AudioStream stream = InitAudioStream(22050, 16, 1); - - // Generate samples data from sine wave - short *data = (short *)malloc(sizeof(short)*MAX_SAMPLES); - - // TODO: Review data generation, it seems data is discontinued for loop, - // for that reason, there is a clip everytime audio stream is looped... - for (int i = 0; i < MAX_SAMPLES; i++) - { - data[i] = (short)(sinf(((2*PI*(float)i)/2)*DEG2RAD)*32000); - } - - PlayAudioStream(stream); // Start processing stream buffer (no data loaded currently) - - int totalSamples = MAX_SAMPLES; - int samplesLeft = totalSamples; - - Vector2 position = { 0, 0 }; - - SetTargetFPS(30); // Set our game to run at 30 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - - // Refill audio stream if required - // NOTE: Every update we check if stream data has been already consumed and we update - // buffer with new data from the generated samples, we upload data at a rate (MAX_SAMPLES_PER_UPDATE), - // but notice that at some point we update < MAX_SAMPLES_PER_UPDATE data... - if (IsAudioBufferProcessed(stream)) - { - int numSamples = 0; - if (samplesLeft >= MAX_SAMPLES_PER_UPDATE) numSamples = MAX_SAMPLES_PER_UPDATE; - else numSamples = samplesLeft; - - UpdateAudioStream(stream, data + (totalSamples - samplesLeft), numSamples); - - samplesLeft -= numSamples; - - // Reset samples feeding (loop audio) - if (samplesLeft <= 0) samplesLeft = totalSamples; - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("SINE WAVE SHOULD BE PLAYING!", 240, 140, 20, LIGHTGRAY); - - // NOTE: Draw a part of the sine wave (only screen width, proportional values) - for (int i = 0; i < GetScreenWidth(); i++) - { - position.x = i; - position.y = 250 + 50*data[i]/32000; - - DrawPixelV(position, RED); - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - free(data); // Unload sine wave data - - CloseAudioStream(stream); // Close raw audio stream and delete buffers from RAM - - CloseAudioDevice(); // Close audio device (music streaming is automatically stopped) - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/audio/audio_sound_loading.cs b/Examples/Examples/audio/audio_sound_loading.cs deleted file mode 100644 index 37011fa..0000000 --- a/Examples/Examples/audio/audio_sound_loading.cs +++ /dev/null @@ -1,81 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [audio] example - Sound loading and playing - * - * NOTE: This example requires OpenAL Soft library installed - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int audio_sound_loading() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [audio] example - sound loading and playing"); - - InitAudioDevice(); // Initialize audio device - - Sound fxWav = LoadSound("resources/sound.wav"); // Load WAV audio file - Sound fxOgg = LoadSound("resources/tanatana.ogg"); // Load OGG audio file - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyPressed(KEY_SPACE)) PlaySound(fxWav); // Play WAV sound - if (IsKeyPressed(KEY_ENTER)) PlaySound(fxOgg); // Play OGG sound - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("Press SPACE to PLAY the WAV sound!", 200, 180, 20, LIGHTGRAY); - - DrawText("Press ENTER to PLAY the OGG sound!", 200, 220, 20, LIGHTGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadSound(fxWav); // Unload sound data - UnloadSound(fxOgg); // Unload sound data - - CloseAudioDevice(); // Close audio device - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_2d_camera.cs b/Examples/Examples/core/core_2d_camera.cs deleted file mode 100644 index 49308bc..0000000 --- a/Examples/Examples/core/core_2d_camera.cs +++ /dev/null @@ -1,153 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - 2d camera - * - * This example has been created using raylib 1.5 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - private const int MAX_BUILDINGS = 100; - - public static int core_2d_camera() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - 2d camera"); - - Rectangle player = { 400, 280, 40, 40 }; - Rectangle buildings[MAX_BUILDINGS]; - Color buildColors[MAX_BUILDINGS]; - - int spacing = 0; - - for (int i = 0; i < MAX_BUILDINGS; i++) - { - buildings[i].width = GetRandomValue(50, 200); - buildings[i].height = GetRandomValue(100, 800); - buildings[i].y = screenHeight - 130 - buildings[i].height; - buildings[i].x = -6000 + spacing; - - spacing += buildings[i].width; - - buildColors[i] = (Color){ GetRandomValue(200, 240), GetRandomValue(200, 240), GetRandomValue(200, 250), 255 }; - } - - Camera2D camera; - - camera.target = (Vector2){ player.x + 20, player.y + 20 }; - camera.offset = (Vector2){ 0, 0 }; - camera.rotation = 0.0f; - camera.zoom = 1.0f; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyDown(KEY_RIGHT)) - { - player.x += 2; // Player movement - camera.offset.x -= 2; // Camera displacement with player movement - } - else if (IsKeyDown(KEY_LEFT)) - { - player.x -= 2; // Player movement - camera.offset.x += 2; // Camera displacement with player movement - } - - // Camera target follows player - camera.target = (Vector2){ player.x + 20, player.y + 20 }; - - // Camera rotation controls - if (IsKeyDown(KEY_A)) camera.rotation--; - else if (IsKeyDown(KEY_S)) camera.rotation++; - - // Limit camera rotation to 80 degrees (-40 to 40) - if (camera.rotation > 40) camera.rotation = 40; - else if (camera.rotation < -40) camera.rotation = -40; - - // Camera zoom controls - camera.zoom += ((float)GetMouseWheelMove()*0.05f); - - if (camera.zoom > 3.0f) camera.zoom = 3.0f; - else if (camera.zoom < 0.1f) camera.zoom = 0.1f; - - // Camera reset (zoom and rotation) - if (IsKeyPressed(KEY_R)) - { - camera.zoom = 1.0f; - camera.rotation = 0.0f; - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode2D(camera); - - DrawRectangle(-6000, 320, 13000, 8000, DARKGRAY); - - for (int i = 0; i < MAX_BUILDINGS; i++) DrawRectangleRec(buildings[i], buildColors[i]); - - DrawRectangleRec(player, RED); - - DrawRectangle(camera.target.x, -500, 1, screenHeight*4, GREEN); - DrawRectangle(-500, camera.target.y, screenWidth*4, 1, GREEN); - - EndMode2D(); - - DrawText("SCREEN AREA", 640, 10, 20, RED); - - DrawRectangle(0, 0, screenWidth, 5, RED); - DrawRectangle(0, 5, 5, screenHeight - 10, RED); - DrawRectangle(screenWidth - 5, 5, 5, screenHeight - 10, RED); - DrawRectangle(0, screenHeight - 5, screenWidth, 5, RED); - - DrawRectangle( 10, 10, 250, 113, Fade(SKYBLUE, 0.5f)); - DrawRectangleLines( 10, 10, 250, 113, BLUE); - - DrawText("Free 2d camera controls:", 20, 20, 10, BLACK); - DrawText("- Right/Left to move Offset", 40, 40, 10, DARKGRAY); - DrawText("- Mouse Wheel to Zoom in-out", 40, 60, 10, DARKGRAY); - DrawText("- A / S to Rotate", 40, 80, 10, DARKGRAY); - DrawText("- R to reset Zoom and Rotation", 40, 100, 10, DARKGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_3d_camera_first_person.cs b/Examples/Examples/core/core_3d_camera_first_person.cs deleted file mode 100644 index 938a34b..0000000 --- a/Examples/Examples/core/core_3d_camera_first_person.cs +++ /dev/null @@ -1,111 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - 3d camera first person - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - private const int MAX_COLUMNS = 20; - - public static int core_3d_camera_first_person() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera first person"); - - // Define the camera to look into our 3d world (position, target, up vector) - Camera camera = { 0 }; - camera.position = (Vector3){ 4.0f, 2.0f, 4.0f }; - camera.target = (Vector3){ 0.0f, 1.8f, 0.0f }; - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; - camera.fovy = 60.0f; - camera.type = CAMERA_PERSPECTIVE; - - // Generates some random columns - float heights[MAX_COLUMNS]; - Vector3 positions[MAX_COLUMNS]; - Color colors[MAX_COLUMNS]; - - for (int i = 0; i < MAX_COLUMNS; i++) - { - heights[i] = (float)GetRandomValue(1, 12); - positions[i] = (Vector3){ GetRandomValue(-15, 15), heights[i]/2, GetRandomValue(-15, 15) }; - colors[i] = (Color){ GetRandomValue(20, 255), GetRandomValue(10, 55), 30, 255 }; - } - - SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set a first person camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawPlane((Vector3){ 0.0f, 0.0f, 0.0f }, (Vector2){ 32.0f, 32.0f }, LIGHTGRAY); // Draw ground - DrawCube((Vector3){ -16.0f, 2.5f, 0.0f }, 1.0f, 5.0f, 32.0f, BLUE); // Draw a blue wall - DrawCube((Vector3){ 16.0f, 2.5f, 0.0f }, 1.0f, 5.0f, 32.0f, LIME); // Draw a green wall - DrawCube((Vector3){ 0.0f, 2.5f, 16.0f }, 32.0f, 5.0f, 1.0f, GOLD); // Draw a yellow wall - - // Draw some cubes around - for (int i = 0; i < MAX_COLUMNS; i++) - { - DrawCube(positions[i], 2.0f, heights[i], 2.0f, colors[i]); - DrawCubeWires(positions[i], 2.0f, heights[i], 2.0f, MAROON); - } - - EndMode3D(); - - DrawRectangle( 10, 10, 220, 70, Fade(SKYBLUE, 0.5f)); - DrawRectangleLines( 10, 10, 220, 70, BLUE); - - DrawText("First person camera default controls:", 20, 20, 10, BLACK); - DrawText("- Move with keys: W, A, S, D", 40, 40, 10, DARKGRAY); - DrawText("- Mouse move to look around", 40, 60, 10, DARKGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_3d_camera_free.cs b/Examples/Examples/core/core_3d_camera_free.cs deleted file mode 100644 index a7ffc34..0000000 --- a/Examples/Examples/core/core_3d_camera_free.cs +++ /dev/null @@ -1,97 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Initialize 3d camera free - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_3d_camera_free() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera free"); - - // Define the camera to look into our 3d world - Camera3D camera; - camera.position = (Vector3){ 10.0f, 10.0f, 10.0f }; // Camera position - camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target) - camera.fovy = 45.0f; // Camera field-of-view Y - camera.type = CAMERA_PERSPECTIVE; // Camera mode type - - Vector3 cubePosition = { 0.0f, 0.0f, 0.0f }; - - SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - - if (IsKeyDown('Z')) camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED); - DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON); - - DrawGrid(10, 1.0f); - - EndMode3D(); - - DrawRectangle( 10, 10, 320, 133, Fade(SKYBLUE, 0.5f)); - DrawRectangleLines( 10, 10, 320, 133, BLUE); - - DrawText("Free camera default controls:", 20, 20, 10, BLACK); - DrawText("- Mouse Wheel to Zoom in-out", 40, 40, 10, DARKGRAY); - DrawText("- Mouse Wheel Pressed to Pan", 40, 60, 10, DARKGRAY); - DrawText("- Alt + Mouse Wheel Pressed to Rotate", 40, 80, 10, DARKGRAY); - DrawText("- Alt + Ctrl + Mouse Wheel Pressed for Smooth Zoom", 40, 100, 10, DARKGRAY); - DrawText("- Z to zoom to (0, 0, 0)", 40, 120, 10, DARKGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_3d_mode.cs b/Examples/Examples/core/core_3d_mode.cs deleted file mode 100644 index ed65200..0000000 --- a/Examples/Examples/core/core_3d_mode.cs +++ /dev/null @@ -1,87 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Initialize 3d mode - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_3d_mode() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d mode"); - - // Define the camera to look into our 3d world - Camera3D camera; - camera.position = (Vector3){ 0.0f, 10.0f, 10.0f }; // Camera position - camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target) - camera.fovy = 45.0f; // Camera field-of-view Y - camera.type = CAMERA_PERSPECTIVE; // Camera mode type - - Vector3 cubePosition = { 0.0f, 0.0f, 0.0f }; - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED); - DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON); - - DrawGrid(10, 1.0f); - - EndMode3D(); - - DrawText("Welcome to the third dimension!", 10, 40, 20, DARKGRAY); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_3d_picking.cs b/Examples/Examples/core/core_3d_picking.cs deleted file mode 100644 index 42aeb8a..0000000 --- a/Examples/Examples/core/core_3d_picking.cs +++ /dev/null @@ -1,118 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Picking in 3d mode - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_3d_picking() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d picking"); - - // Define the camera to look into our 3d world - Camera camera; - camera.position = (Vector3){ 10.0f, 10.0f, 10.0f }; // Camera position - camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target) - camera.fovy = 45.0f; // Camera field-of-view Y - camera.type = CAMERA_PERSPECTIVE; // Camera mode type - - Vector3 cubePosition = { 0.0f, 1.0f, 0.0f }; - Vector3 cubeSize = { 2.0f, 2.0f, 2.0f }; - - Ray ray = {0.0f, 0.0f, 0.0f}; // Picking line ray - - bool collision = false; - - SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - - if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) - { - ray = GetMouseRay(GetMousePosition(), camera); - - // Check collision between ray and box - collision = CheckCollisionRayBox(ray, - (BoundingBox){(Vector3){ cubePosition.x - cubeSize.x/2, cubePosition.y - cubeSize.y/2, cubePosition.z - cubeSize.z/2 }, - (Vector3){ cubePosition.x + cubeSize.x/2, cubePosition.y + cubeSize.y/2, cubePosition.z + cubeSize.z/2 }}); - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - if (collision) - { - DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, RED); - DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, MAROON); - - DrawCubeWires(cubePosition, cubeSize.x + 0.2f, cubeSize.y + 0.2f, cubeSize.z + 0.2f, GREEN); - } - else - { - DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, GRAY); - DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, DARKGRAY); - } - - DrawRay(ray, MAROON); - DrawGrid(10, 1.0f); - - EndMode3D(); - - DrawText("Try selecting the box with mouse!", 240, 10, 20, DARKGRAY); - - if(collision) DrawText("BOX SELECTED", (screenWidth - MeasureText("BOX SELECTED", 30)) / 2, screenHeight * 0.1f, 30, GREEN); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_basic_window.cs b/Examples/Examples/core/core_basic_window.cs deleted file mode 100644 index f206f23..0000000 --- a/Examples/Examples/core/core_basic_window.cs +++ /dev/null @@ -1,67 +0,0 @@ - -using Raylib; -using static Raylib.Raylib; - -public partial class Examples -{ - /******************************************************************************************* - * - * raylib [core] example - Basic window - * - * Welcome to raylib! - * - * To test examples, just press F6 and execute raylib_compile_execute script - * Note that compiled executable is placed in the same folder as .c file - * - * You can find all basic examples on C:\raylib\raylib\examples folder or - * raylib official webpage: www.raylib.com - * - * Enjoy using raylib. :) - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2013-2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - public static int core_basic_window() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window"); - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("Congrats! You created your first window!", 190, 200, 20, MAROON); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } -} \ No newline at end of file diff --git a/Examples/Examples/core/core_basic_window_web.cs b/Examples/Examples/core/core_basic_window_web.cs deleted file mode 100644 index 9a36808..0000000 --- a/Examples/Examples/core/core_basic_window_web.cs +++ /dev/null @@ -1,99 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Basic window (adapted for HTML5 platform) - * - * This example is prepared to compile for PLATFORM_WEB, PLATFORM_DESKTOP and PLATFORM_RPI - * As you will notice, code structure is slightly diferent to the other examples... - * To compile it for PLATFORM_WEB just uncomment #define PLATFORM_WEB at beginning - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - //#define PLATFORM_WEB - - #if defined(PLATFORM_WEB) - #include - #endif - - //---------------------------------------------------------------------------------- - // Global Variables Definition - //---------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - //---------------------------------------------------------------------------------- - // Module Functions Declaration - //---------------------------------------------------------------------------------- - void UpdateDrawFrame(void); // Update and Draw one frame - - //---------------------------------------------------------------------------------- - // Main Enry Point - //---------------------------------------------------------------------------------- - public static int core_basic_window_web() - { - // Initialization - //-------------------------------------------------------------------------------------- - InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window"); - - #if defined(PLATFORM_WEB) - emscripten_set_main_loop(UpdateDrawFrame, 0, 1); - #else - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - UpdateDrawFrame(); - } - #endif - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - //---------------------------------------------------------------------------------- - // Module Functions Definition - //---------------------------------------------------------------------------------- - void UpdateDrawFrame(void) - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_color_select.cs b/Examples/Examples/core/core_color_select.cs deleted file mode 100644 index 8b79957..0000000 --- a/Examples/Examples/core/core_color_select.cs +++ /dev/null @@ -1,108 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Color selection by mouse (collision detection) - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_color_select() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - color selection (collision detection)"); - - Color colors[21] = { DARKGRAY, MAROON, ORANGE, DARKGREEN, DARKBLUE, DARKPURPLE, DARKBROWN, - GRAY, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK, YELLOW, - GREEN, SKYBLUE, PURPLE, BEIGE }; - - Rectangle colorsRecs[21]; // Rectangles array - - // Fills colorsRecs data (for every rectangle) - for (int i = 0; i < 21; i++) - { - colorsRecs[i].x = 20 + 100*(i%7) + 10*(i%7); - colorsRecs[i].y = 60 + 100*(i/7) + 10*(i/7); - colorsRecs[i].width = 100; - colorsRecs[i].height = 100; - } - - bool selected[21] = { false }; // Selected rectangles indicator - - Vector2 mousePoint; - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - mousePoint = GetMousePosition(); - - for (int i = 0; i < 21; i++) // Iterate along all the rectangles - { - if (CheckCollisionPointRec(mousePoint, colorsRecs[i])) - { - colors[i].a = 120; - - if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) selected[i] = !selected[i]; - } - else colors[i].a = 255; - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - for (int i = 0; i < 21; i++) // Draw all rectangles - { - DrawRectangleRec(colorsRecs[i], colors[i]); - - // Draw four rectangles around selected rectangle - if (selected[i]) - { - DrawRectangle(colorsRecs[i].x, colorsRecs[i].y, 100, 10, RAYWHITE); // Square top rectangle - DrawRectangle(colorsRecs[i].x, colorsRecs[i].y, 10, 100, RAYWHITE); // Square left rectangle - DrawRectangle(colorsRecs[i].x + 90, colorsRecs[i].y, 10, 100, RAYWHITE); // Square right rectangle - DrawRectangle(colorsRecs[i].x, colorsRecs[i].y + 90, 100, 10, RAYWHITE); // Square bottom rectangle - } - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_drop_files.cs b/Examples/Examples/core/core_drop_files.cs deleted file mode 100644 index 1cb75b0..0000000 --- a/Examples/Examples/core/core_drop_files.cs +++ /dev/null @@ -1,90 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Windows drop files - * - * This example only works on platforms that support drag & drop (Windows, Linux, OSX, Html5?) - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_drop_files() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - drop files"); - - int count = 0; - char **droppedFiles = { 0 }; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsFileDropped()) - { - droppedFiles = GetDroppedFiles(&count); - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - if (count == 0) DrawText("Drop your files to this window!", 100, 40, 20, DARKGRAY); - else - { - DrawText("Dropped files:", 100, 40, 20, DARKGRAY); - - for (int i = 0; i < count; i++) - { - if (i%2 == 0) DrawRectangle(0, 85 + 40*i, screenWidth, 40, Fade(LIGHTGRAY, 0.5f)); - else DrawRectangle(0, 85 + 40*i, screenWidth, 40, Fade(LIGHTGRAY, 0.3f)); - - DrawText(droppedFiles[i], 120, 100 + 40*i, 10, GRAY); - } - - DrawText("Drop new files...", 100, 110 + 40*count, 20, DARKGRAY); - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - ClearDroppedFiles(); // Clear internal buffers - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_gestures_detection.cs b/Examples/Examples/core/core_gestures_detection.cs deleted file mode 100644 index 0806013..0000000 --- a/Examples/Examples/core/core_gestures_detection.cs +++ /dev/null @@ -1,129 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Gestures Detection - * - * This example has been created using raylib 1.4 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - #include - - private const int MAX_GESTURE_STRINGS = 20; - - public static int core_gestures_detection() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - gestures detection"); - - Vector2 touchPosition = { 0, 0 }; - Rectangle touchArea = { 220, 10, screenWidth - 230, screenHeight - 20 }; - - int gesturesCount = 0; - char gestureStrings[MAX_GESTURE_STRINGS][32]; - - int currentGesture = GESTURE_NONE; - int lastGesture = GESTURE_NONE; - - //SetGesturesEnabled(0b0000000000001001); // Enable only some gestures to be detected - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - lastGesture = currentGesture; - currentGesture = GetGestureDetected(); - touchPosition = GetTouchPosition(0); - - if (CheckCollisionPointRec(touchPosition, touchArea) && (currentGesture != GESTURE_NONE)) - { - if (currentGesture != lastGesture) - { - // Store gesture string - switch (currentGesture) - { - case GESTURE_TAP: strcpy(gestureStrings[gesturesCount], "GESTURE TAP"); break; - case GESTURE_DOUBLETAP: strcpy(gestureStrings[gesturesCount], "GESTURE DOUBLETAP"); break; - case GESTURE_HOLD: strcpy(gestureStrings[gesturesCount], "GESTURE HOLD"); break; - case GESTURE_DRAG: strcpy(gestureStrings[gesturesCount], "GESTURE DRAG"); break; - case GESTURE_SWIPE_RIGHT: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE RIGHT"); break; - case GESTURE_SWIPE_LEFT: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE LEFT"); break; - case GESTURE_SWIPE_UP: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE UP"); break; - case GESTURE_SWIPE_DOWN: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE DOWN"); break; - case GESTURE_PINCH_IN: strcpy(gestureStrings[gesturesCount], "GESTURE PINCH IN"); break; - case GESTURE_PINCH_OUT: strcpy(gestureStrings[gesturesCount], "GESTURE PINCH OUT"); break; - default: break; - } - - gesturesCount++; - - // Reset gestures strings - if (gesturesCount >= MAX_GESTURE_STRINGS) - { - for (int i = 0; i < MAX_GESTURE_STRINGS; i++) strcpy(gestureStrings[i], "\0"); - - gesturesCount = 0; - } - } - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawRectangleRec(touchArea, GRAY); - DrawRectangle(225, 15, screenWidth - 240, screenHeight - 30, RAYWHITE); - - DrawText("GESTURES TEST AREA", screenWidth - 270, screenHeight - 40, 20, Fade(GRAY, 0.5f)); - - for (int i = 0; i < gesturesCount; i++) - { - if (i%2 == 0) DrawRectangle(10, 30 + 20*i, 200, 20, Fade(LIGHTGRAY, 0.5f)); - else DrawRectangle(10, 30 + 20*i, 200, 20, Fade(LIGHTGRAY, 0.3f)); - - if (i < gesturesCount - 1) DrawText(gestureStrings[i], 35, 36 + 20*i, 10, DARKGRAY); - else DrawText(gestureStrings[i], 35, 36 + 20*i, 10, MAROON); - } - - DrawRectangleLines(10, 29, 200, screenHeight - 50, GRAY); - DrawText("DETECTED GESTURES", 50, 15, 10, GRAY); - - if (currentGesture != GESTURE_NONE) DrawCircleV(touchPosition, 30, MAROON); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_input_gamepad.cs b/Examples/Examples/core/core_input_gamepad.cs deleted file mode 100644 index 6aba066..0000000 --- a/Examples/Examples/core/core_input_gamepad.cs +++ /dev/null @@ -1,208 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Gamepad input - * - * NOTE: This example requires a Gamepad connected to the system - * raylib is configured to work with the following gamepads: - * - Xbox 360 Controller (Xbox 360, Xbox One) - * - PLAYSTATION(R)3 Controller - * Check raylib.h for buttons configuration - * - * This example has been created using raylib 1.6 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2013-2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - // NOTE: Gamepad name ID depends on drivers and OS - #if defined(PLATFORM_RPI) - private const int XBOX360_NAME_ID = 360; pad" - private const int PS3_NAME_ID = 3; Controller" - #else - private const int XBOX360_NAME_ID = 360; Controller" - private const int PS3_NAME_ID = 3; Controller" - #endif - - public static int core_input_gamepad() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); // Set MSAA 4X hint before windows creation - - InitWindow(screenWidth, screenHeight, "raylib [core] example - gamepad input"); - - Texture2D texPs3Pad = LoadTexture("resources/ps3.png"); - Texture2D texXboxPad = LoadTexture("resources/xbox.png"); - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // ... - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - if (IsGamepadAvailable(GAMEPAD_PLAYER1)) - { - DrawText(FormatText("GP1: %s", GetGamepadName(GAMEPAD_PLAYER1)), 10, 10, 10, BLACK); - - if (IsGamepadName(GAMEPAD_PLAYER1, XBOX360_NAME_ID)) - { - DrawTexture(texXboxPad, 0, 0, DARKGRAY); - - // Draw buttons: xbox home - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_HOME)) DrawCircle(394, 89, 19, RED); - - // Draw buttons: basic - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_START)) DrawCircle(436, 150, 9, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_SELECT)) DrawCircle(352, 150, 9, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_X)) DrawCircle(501, 151, 15, BLUE); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_A)) DrawCircle(536, 187, 15, LIME); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_B)) DrawCircle(572, 151, 15, MAROON); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_Y)) DrawCircle(536, 115, 15, GOLD); - - // Draw buttons: d-pad - DrawRectangle(317, 202, 19, 71, BLACK); - DrawRectangle(293, 228, 69, 19, BLACK); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_UP)) DrawRectangle(317, 202, 19, 26, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_DOWN)) DrawRectangle(317, 202 + 45, 19, 26, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_LEFT)) DrawRectangle(292, 228, 25, 19, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_RIGHT)) DrawRectangle(292 + 44, 228, 26, 19, RED); - - // Draw buttons: left-right back - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_LB)) DrawCircle(259, 61, 20, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_RB)) DrawCircle(536, 61, 20, RED); - - // Draw axis: left joystick - DrawCircle(259, 152, 39, BLACK); - DrawCircle(259, 152, 34, LIGHTGRAY); - DrawCircle(259 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LEFT_X)*20), - 152 - (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LEFT_Y)*20), 25, BLACK); - - // Draw axis: right joystick - DrawCircle(461, 237, 38, BLACK); - DrawCircle(461, 237, 33, LIGHTGRAY); - DrawCircle(461 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RIGHT_X)*20), - 237 - (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RIGHT_Y)*20), 25, BLACK); - - // Draw axis: left-right triggers - DrawRectangle(170, 30, 15, 70, GRAY); - DrawRectangle(604, 30, 15, 70, GRAY); - DrawRectangle(170, 30, 15, (((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT))/2.0f)*70), RED); - DrawRectangle(604, 30, 15, (((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT))/2.0f)*70), RED); - - //DrawText(FormatText("Xbox axis LT: %02.02f", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT)), 10, 40, 10, BLACK); - //DrawText(FormatText("Xbox axis RT: %02.02f", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT)), 10, 60, 10, BLACK); - } - else if (IsGamepadName(GAMEPAD_PLAYER1, PS3_NAME_ID)) - { - DrawTexture(texPs3Pad, 0, 0, DARKGRAY); - - // Draw buttons: ps - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_PS)) DrawCircle(396, 222, 13, RED); - - // Draw buttons: basic - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_SELECT)) DrawRectangle(328, 170, 32, 13, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_START)) DrawTriangle((Vector2){ 436, 168 }, (Vector2){ 436, 185 }, (Vector2){ 464, 177 }, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_TRIANGLE)) DrawCircle(557, 144, 13, LIME); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_CIRCLE)) DrawCircle(586, 173, 13, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_CROSS)) DrawCircle(557, 203, 13, VIOLET); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_SQUARE)) DrawCircle(527, 173, 13, PINK); - - // Draw buttons: d-pad - DrawRectangle(225, 132, 24, 84, BLACK); - DrawRectangle(195, 161, 84, 25, BLACK); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_UP)) DrawRectangle(225, 132, 24, 29, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_DOWN)) DrawRectangle(225, 132 + 54, 24, 30, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_LEFT)) DrawRectangle(195, 161, 30, 25, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_RIGHT)) DrawRectangle(195 + 54, 161, 30, 25, RED); - - // Draw buttons: left-right back buttons - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_L1)) DrawCircle(239, 82, 20, RED); - if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_R1)) DrawCircle(557, 82, 20, RED); - - // Draw axis: left joystick - DrawCircle(319, 255, 35, BLACK); - DrawCircle(319, 255, 31, LIGHTGRAY); - DrawCircle(319 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_LEFT_X)*20), - 255 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_LEFT_Y)*20), 25, BLACK); - - // Draw axis: right joystick - DrawCircle(475, 255, 35, BLACK); - DrawCircle(475, 255, 31, LIGHTGRAY); - DrawCircle(475 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_RIGHT_X)*20), - 255 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_RIGHT_Y)*20), 25, BLACK); - - // Draw axis: left-right triggers - DrawRectangle(169, 48, 15, 70, GRAY); - DrawRectangle(611, 48, 15, 70, GRAY); - DrawRectangle(169, 48, 15, (((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_L2))/2.0f)*70), RED); - DrawRectangle(611, 48, 15, (((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_R2))/2.0f)*70), RED); - } - else - { - DrawText("- GENERIC GAMEPAD -", 280, 180, 20, GRAY); - - // TODO: Draw generic gamepad - } - - DrawText(FormatText("DETECTED AXIS [%i]:", GetGamepadAxisCount(GAMEPAD_PLAYER1)), 10, 50, 10, MAROON); - - for (int i = 0; i < GetGamepadAxisCount(GAMEPAD_PLAYER1); i++) - { - DrawText(FormatText("AXIS %i: %.02f", i, GetGamepadAxisMovement(GAMEPAD_PLAYER1, i)), 20, 70 + 20*i, 10, DARKGRAY); - } - - if (GetGamepadButtonPressed() != -1) DrawText(FormatText("DETECTED BUTTON: %i", GetGamepadButtonPressed()), 10, 430, 10, RED); - else DrawText("DETECTED BUTTON: NONE", 10, 430, 10, GRAY); - } - else - { - DrawText("GP1: NOT DETECTED", 10, 10, 10, GRAY); - - DrawTexture(texXboxPad, 0, 0, LIGHTGRAY); - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texPs3Pad); - UnloadTexture(texXboxPad); - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_input_keys.cs b/Examples/Examples/core/core_input_keys.cs deleted file mode 100644 index 95399d9..0000000 --- a/Examples/Examples/core/core_input_keys.cs +++ /dev/null @@ -1,73 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Keyboard input - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_input_keys() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - keyboard input"); - - Vector2 ballPosition = { (float)screenWidth/2, (float)screenHeight/2 }; - - SetTargetFPS(60); // Set target frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyDown(KEY_RIGHT)) ballPosition.x += 2.0f; - if (IsKeyDown(KEY_LEFT)) ballPosition.x -= 2.0f; - if (IsKeyDown(KEY_UP)) ballPosition.y -= 2.0f; - if (IsKeyDown(KEY_DOWN)) ballPosition.y += 2.0f; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("move the ball with arrow keys", 10, 10, 20, DARKGRAY); - - DrawCircleV(ballPosition, 50, MAROON); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_input_mouse.cs b/Examples/Examples/core/core_input_mouse.cs deleted file mode 100644 index 6ccbde3..0000000 --- a/Examples/Examples/core/core_input_mouse.cs +++ /dev/null @@ -1,75 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Mouse input - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_input_mouse() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - mouse input"); - - Vector2 ballPosition = { -100.0f, -100.0f }; - Color ballColor = DARKBLUE; - - SetTargetFPS(60); - //--------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - ballPosition = GetMousePosition(); - - if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) ballColor = MAROON; - else if (IsMouseButtonPressed(MOUSE_MIDDLE_BUTTON)) ballColor = LIME; - else if (IsMouseButtonPressed(MOUSE_RIGHT_BUTTON)) ballColor = DARKBLUE; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawCircleV(ballPosition, 40, ballColor); - - DrawText("move ball with mouse and click mouse button to change color", 10, 10, 20, DARKGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_mouse_wheel.cs b/Examples/Examples/core/core_mouse_wheel.cs deleted file mode 100644 index d63b836..0000000 --- a/Examples/Examples/core/core_mouse_wheel.cs +++ /dev/null @@ -1,72 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] examples - Mouse wheel - * - * This test has been created using raylib 1.1 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_mouse_wheel() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - mouse wheel"); - - int boxPositionY = screenHeight/2 - 40; - int scrollSpeed = 4; // Scrolling speed in pixels - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - boxPositionY -= (GetMouseWheelMove()*scrollSpeed); - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawRectangle(screenWidth/2 - 40, boxPositionY, 80, 80, MAROON); - - DrawText("Use mouse wheel to move the cube up and down!", 10, 10, 20, GRAY); - DrawText(FormatText("Box position Y: %03i", boxPositionY), 10, 40, 20, LIGHTGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_random_values.cs b/Examples/Examples/core/core_random_values.cs deleted file mode 100644 index 3cdfb87..0000000 --- a/Examples/Examples/core/core_random_values.cs +++ /dev/null @@ -1,79 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Generate random values - * - * This example has been created using raylib 1.1 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_random_values() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - generate random values"); - - int framesCounter = 0; // Variable used to count frames - - int randValue = GetRandomValue(-8, 5); // Get a random integer number between -8 and 5 (both included) - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - framesCounter++; - - // Every two seconds (120 frames) a new random value is generated - if (((framesCounter/120)%2) == 1) - { - randValue = GetRandomValue(-8, 5); - framesCounter = 0; - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("Every 2 seconds a new random value is generated:", 130, 100, 20, MAROON); - - DrawText(FormatText("%i", randValue), 360, 180, 80, LIGHTGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_storage_values.cs b/Examples/Examples/core/core_storage_values.cs deleted file mode 100644 index bb6208c..0000000 --- a/Examples/Examples/core/core_storage_values.cs +++ /dev/null @@ -1,99 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - Storage save/load values - * - * This example has been created using raylib 1.4 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - // NOTE: Storage positions must start with 0, directly related to file memory layout - typedef enum { STORAGE_SCORE = 0, STORAGE_HISCORE } StorageData; - - public static int core_storage_values() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - storage save/load values"); - - int score = 0; - int hiscore = 0; - - int framesCounter = 0; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyPressed(KEY_R)) - { - score = GetRandomValue(1000, 2000); - hiscore = GetRandomValue(2000, 4000); - } - - if (IsKeyPressed(KEY_ENTER)) - { - StorageSaveValue(STORAGE_SCORE, score); - StorageSaveValue(STORAGE_HISCORE, hiscore); - } - else if (IsKeyPressed(KEY_SPACE)) - { - // NOTE: If requested position could not be found, value 0 is returned - score = StorageLoadValue(STORAGE_SCORE); - hiscore = StorageLoadValue(STORAGE_HISCORE); - } - - framesCounter++; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText(FormatText("SCORE: %i", score), 280, 130, 40, MAROON); - DrawText(FormatText("HI-SCORE: %i", hiscore), 210, 200, 50, BLACK); - - DrawText(FormatText("frames: %i", framesCounter), 10, 10, 20, LIME); - - DrawText("Press R to generate random numbers", 220, 40, 20, LIGHTGRAY); - DrawText("Press ENTER to SAVE values", 250, 310, 20, LIGHTGRAY); - DrawText("Press SPACE to LOAD values", 252, 350, 20, LIGHTGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_vr_simulator.cs b/Examples/Examples/core/core_vr_simulator.cs deleted file mode 100644 index ed62653..0000000 --- a/Examples/Examples/core/core_vr_simulator.cs +++ /dev/null @@ -1,100 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - VR Simulator (Oculus Rift CV1 parameters) - * - * This example has been created using raylib 1.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_vr_simulator() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 1080; - int screenHeight = 600; - - // NOTE: screenWidth/screenHeight should match VR device aspect ratio - - InitWindow(screenWidth, screenHeight, "raylib [core] example - vr simulator"); - - // Init VR simulator (Oculus Rift CV1 parameters) - InitVrSimulator(GetVrDeviceInfo(HMD_OCULUS_RIFT_CV1)); - - // Define the camera to look into our 3d world - Camera camera; - camera.position = (Vector3){ 5.0f, 2.0f, 5.0f }; // Camera position - camera.target = (Vector3){ 0.0f, 2.0f, 0.0f }; // Camera looking at point - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target) - camera.fovy = 60.0f; // Camera field-of-view Y - camera.type = CAMERA_PERSPECTIVE; // Camera type - - Vector3 cubePosition = { 0.0f, 0.0f, 0.0f }; - - SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set first person camera mode - - SetTargetFPS(90); // Set our game to run at 90 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera (simulator mode) - - if (IsKeyPressed(KEY_SPACE)) ToggleVrMode(); // Toggle VR mode - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginVrDrawing(); - - BeginMode3D(camera); - - DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED); - DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON); - - DrawGrid(40, 1.0f); - - EndMode3D(); - - EndVrDrawing(); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseVrSimulator(); // Close VR simulator - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/core/core_world_screen.cs b/Examples/Examples/core/core_world_screen.cs deleted file mode 100644 index b44e5a7..0000000 --- a/Examples/Examples/core/core_world_screen.cs +++ /dev/null @@ -1,93 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [core] example - World to screen - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int core_world_screen() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera free"); - - // Define the camera to look into our 3d world - Camera camera = { 0 }; - camera.position = (Vector3){ 10.0f, 10.0f, 10.0f }; - camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; - camera.fovy = 45.0f; - camera.type = CAMERA_PERSPECTIVE; - - Vector3 cubePosition = { 0.0f, 0.0f, 0.0f }; - - Vector2 cubeScreenPosition; - - SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - - // Calculate cube screen space position (with a little offset to be in top) - cubeScreenPosition = GetWorldToScreen((Vector3){cubePosition.x, cubePosition.y + 2.5f, cubePosition.z}, camera); - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED); - DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON); - - DrawGrid(10, 1.0f); - - EndMode3D(); - - DrawText("Enemy: 100 / 100", cubeScreenPosition.x - MeasureText("Enemy: 100 / 100", 20) / 2, cubeScreenPosition.y, 20, BLACK); - DrawText("Text is always on top of the cube", (screenWidth - MeasureText("Text is always on top of the cube", 20)) / 2, 25, 20, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_billboard.cs b/Examples/Examples/models/models_billboard.cs deleted file mode 100644 index 0118deb..0000000 --- a/Examples/Examples/models/models_billboard.cs +++ /dev/null @@ -1,90 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Drawing billboards - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int models_billboard() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - drawing billboards"); - - // Define the camera to look into our 3d world - Camera camera = { 0 }; - camera.position = (Vector3){ 5.0f, 4.0f, 5.0f }; - camera.target = (Vector3){ 0.0f, 2.0f, 0.0f }; - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; - camera.fovy = 45.0f; - camera.type = CAMERA_PERSPECTIVE; - - - Texture2D bill = LoadTexture("resources/billboard.png"); // Our texture billboard - Vector3 billPosition = { 0.0f, 2.0f, 0.0f }; // Position where draw billboard - - SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawBillboard(camera, bill, billPosition, 2.0f, WHITE); - - DrawGrid(10, 1.0f); // Draw a grid - - EndMode3D(); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(bill); // Unload texture - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_box_collisions.cs b/Examples/Examples/models/models_box_collisions.cs deleted file mode 100644 index df50183..0000000 --- a/Examples/Examples/models/models_box_collisions.cs +++ /dev/null @@ -1,135 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Detect basic 3d collisions (box vs sphere vs box) - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int models_box_collisions() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - box collisions"); - - // Define the camera to look into our 3d world - Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 }; - - Vector3 playerPosition = { 0.0f, 1.0f, 2.0f }; - Vector3 playerSize = { 1.0f, 2.0f, 1.0f }; - Color playerColor = GREEN; - - Vector3 enemyBoxPos = { -4.0f, 1.0f, 0.0f }; - Vector3 enemyBoxSize = { 2.0f, 2.0f, 2.0f }; - - Vector3 enemySpherePos = { 4.0f, 0.0f, 0.0f }; - float enemySphereSize = 1.5f; - - bool collision = false; - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - - // Move player - if (IsKeyDown(KEY_RIGHT)) playerPosition.x += 0.2f; - else if (IsKeyDown(KEY_LEFT)) playerPosition.x -= 0.2f; - else if (IsKeyDown(KEY_DOWN)) playerPosition.z += 0.2f; - else if (IsKeyDown(KEY_UP)) playerPosition.z -= 0.2f; - - collision = false; - - // Check collisions player vs enemy-box - if (CheckCollisionBoxes( - (BoundingBox){(Vector3){ playerPosition.x - playerSize.x/2, - playerPosition.y - playerSize.y/2, - playerPosition.z - playerSize.z/2 }, - (Vector3){ playerPosition.x + playerSize.x/2, - playerPosition.y + playerSize.y/2, - playerPosition.z + playerSize.z/2 }}, - (BoundingBox){(Vector3){ enemyBoxPos.x - enemyBoxSize.x/2, - enemyBoxPos.y - enemyBoxSize.y/2, - enemyBoxPos.z - enemyBoxSize.z/2 }, - (Vector3){ enemyBoxPos.x + enemyBoxSize.x/2, - enemyBoxPos.y + enemyBoxSize.y/2, - enemyBoxPos.z + enemyBoxSize.z/2 }})) collision = true; - - // Check collisions player vs enemy-sphere - if (CheckCollisionBoxSphere( - (BoundingBox){(Vector3){ playerPosition.x - playerSize.x/2, - playerPosition.y - playerSize.y/2, - playerPosition.z - playerSize.z/2 }, - (Vector3){ playerPosition.x + playerSize.x/2, - playerPosition.y + playerSize.y/2, - playerPosition.z + playerSize.z/2 }}, - enemySpherePos, enemySphereSize)) collision = true; - - if (collision) playerColor = RED; - else playerColor = GREEN; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - // Draw enemy-box - DrawCube(enemyBoxPos, enemyBoxSize.x, enemyBoxSize.y, enemyBoxSize.z, GRAY); - DrawCubeWires(enemyBoxPos, enemyBoxSize.x, enemyBoxSize.y, enemyBoxSize.z, DARKGRAY); - - // Draw enemy-sphere - DrawSphere(enemySpherePos, enemySphereSize, GRAY); - DrawSphereWires(enemySpherePos, enemySphereSize, 16, 16, DARKGRAY); - - // Draw player - DrawCubeV(playerPosition, playerSize, playerColor); - - DrawGrid(10, 1.0f); // Draw a grid - - EndMode3D(); - - DrawText("Move player with cursors to collide", 220, 40, 20, GRAY); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_cubicmap.cs b/Examples/Examples/models/models_cubicmap.cs deleted file mode 100644 index d10f756..0000000 --- a/Examples/Examples/models/models_cubicmap.cs +++ /dev/null @@ -1,102 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Cubicmap loading and drawing - * - * This example has been created using raylib 1.8 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int models_cubicmap() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - cubesmap loading and drawing"); - - // Define the camera to look into our 3d world - Camera camera = {{ 16.0f, 14.0f, 16.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 }; - - Image image = LoadImage("resources/cubicmap.png"); // Load cubicmap image (RAM) - Texture2D cubicmap = LoadTextureFromImage(image); // Convert image to texture to display (VRAM) - - Mesh mesh = GenMeshCubicmap(image, (Vector3){ 1.0f, 1.0f, 1.0f }); - Model model = LoadModelFromMesh(mesh); - - // NOTE: By default each cube is mapped to one part of texture atlas - Texture2D texture = LoadTexture("resources/cubicmap_atlas.png"); // Load map texture - model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture - - Vector3 mapPosition = { -16.0f, 0.0f, -8.0f }; // Set model position - - UnloadImage(image); // Unload cubesmap image from RAM, already uploaded to VRAM - - SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawModel(model, mapPosition, 1.0f, WHITE); - - EndMode3D(); - - DrawTextureEx(cubicmap, (Vector2){ screenWidth - cubicmap.width*4 - 20, 20 }, 0.0f, 4.0f, WHITE); - DrawRectangleLines(screenWidth - cubicmap.width*4 - 20, 20, cubicmap.width*4, cubicmap.height*4, GREEN); - - DrawText("cubicmap image used to", 658, 90, 10, GRAY); - DrawText("generate map 3d model", 658, 104, 10, GRAY); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(cubicmap); // Unload cubicmap texture - UnloadTexture(texture); // Unload map texture - UnloadModel(model); // Unload map model - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_geometric_shapes.cs b/Examples/Examples/models/models_geometric_shapes.cs deleted file mode 100644 index 920f86e..0000000 --- a/Examples/Examples/models/models_geometric_shapes.cs +++ /dev/null @@ -1,94 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Draw some basic geometric shapes (cube, sphere, cylinder...) - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int models_geometric_shapes() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - geometric shapes"); - - // Define the camera to look into our 3d world - Camera camera = { 0 }; - camera.position = (Vector3){ 0.0f, 10.0f, 10.0f }; - camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; - camera.fovy = 45.0f; - camera.type = CAMERA_PERSPECTIVE; - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawCube((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, RED); - DrawCubeWires((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, GOLD); - DrawCubeWires((Vector3){-4.0f, 0.0f, -2.0f}, 3.0f, 6.0f, 2.0f, MAROON); - - DrawSphere((Vector3){-1.0f, 0.0f, -2.0f}, 1.0f, GREEN); - DrawSphereWires((Vector3){1.0f, 0.0f, 2.0f}, 2.0f, 16, 16, LIME); - - DrawCylinder((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, SKYBLUE); - DrawCylinderWires((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, DARKBLUE); - DrawCylinderWires((Vector3){4.5f, -1.0f, 2.0f}, 1.0f, 1.0f, 2.0f, 6, BROWN); - - DrawCylinder((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, GOLD); - DrawCylinderWires((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, PINK); - - DrawGrid(10, 1.0f); // Draw a grid - - EndMode3D(); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_heightmap.cs b/Examples/Examples/models/models_heightmap.cs deleted file mode 100644 index 9652cc0..0000000 --- a/Examples/Examples/models/models_heightmap.cs +++ /dev/null @@ -1,96 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Heightmap loading and drawing - * - * This example has been created using raylib 1.8 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int models_heightmap() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - heightmap loading and drawing"); - - // Define our custom camera to look into our 3d world - Camera camera = {{ 18.0f, 16.0f, 18.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 }; - - Image image = LoadImage("resources/heightmap.png"); // Load heightmap image (RAM) - Texture2D texture = LoadTextureFromImage(image); // Convert image to texture (VRAM) - - Mesh mesh = GenMeshHeightmap(image, (Vector3){ 16, 8, 16 }); // Generate heightmap mesh (RAM and VRAM) - Model model = LoadModelFromMesh(mesh); // Load model from generated mesh - - model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture - Vector3 mapPosition = { -8.0f, 0.0f, -8.0f }; // Define model position - - UnloadImage(image); // Unload heightmap image from RAM, already uploaded to VRAM - - SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawModel(model, mapPosition, 1.0f, RED); - - DrawGrid(20, 1.0f); - - EndMode3D(); - - DrawTexture(texture, screenWidth - texture.width - 20, 20, WHITE); - DrawRectangleLines(screenWidth - texture.width - 20, 20, texture.width, texture.height, GREEN); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Unload texture - UnloadModel(model); // Unload model - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_material_pbr.cs b/Examples/Examples/models/models_material_pbr.cs deleted file mode 100644 index 27820bb..0000000 --- a/Examples/Examples/models/models_material_pbr.cs +++ /dev/null @@ -1,211 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - PBR material - * - * This example has been created using raylib 1.8 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - #include "raymath.h" - - #define RLIGHTS_IMPLEMENTATION - #include "rlights.h" - - private const int CUBEMAP_SIZE = 512; // Cubemap texture size - private const int IRRADIANCE_SIZE = 32; // Irradiance texture size - private const int PREFILTERED_SIZE = 256; // Prefiltered HDR environment texture size - private const int BRDF_SIZE = 512; // BRDF LUT texture size - - // PBR material loading - static Material LoadMaterialPBR(Color albedo, float metalness, float roughness); - - public static int models_material_pbr() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available) - InitWindow(screenWidth, screenHeight, "raylib [models] example - pbr material"); - - // Define the camera to look into our 3d world - Camera camera = {{ 4.0f, 4.0f, 4.0f }, { 0.0f, 0.5f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 }; - - // Load model and PBR material - Model model = LoadModel("resources/pbr/trooper.obj"); - MeshTangents(&model.mesh); - model.material = LoadMaterialPBR((Color){ 255, 255, 255, 255 }, 1.0f, 1.0f); - - // Define lights attributes - // NOTE: Shader is passed to every light on creation to define shader bindings internally - Light lights[MAX_LIGHTS] = { - CreateLight(LIGHT_POINT, (Vector3){ LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 255, 0, 0, 255 }, model.material.shader), - CreateLight(LIGHT_POINT, (Vector3){ 0.0f, LIGHT_HEIGHT, LIGHT_DISTANCE }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 0, 255, 0, 255 }, model.material.shader), - CreateLight(LIGHT_POINT, (Vector3){ -LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 0, 0, 255, 255 }, model.material.shader), - CreateLight(LIGHT_DIRECTIONAL, (Vector3){ 0.0f, LIGHT_HEIGHT*2.0f, -LIGHT_DISTANCE }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 255, 0, 255, 255 }, model.material.shader) - }; - - SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - - // Send to material PBR shader camera view position - float cameraPos[3] = { camera.position.x, camera.position.y, camera.position.z }; - SetShaderValue(model.material.shader, model.material.shader.locs[LOC_VECTOR_VIEW], cameraPos, 3); - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawModel(model, Vector3Zero(), 1.0f, WHITE); - - DrawGrid(10, 1.0f); - - EndMode3D(); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadModel(model); // Unload skybox model - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - // Load PBR material (Supports: ALBEDO, NORMAL, METALNESS, ROUGHNESS, AO, EMMISIVE, HEIGHT maps) - // NOTE: PBR shader is loaded inside this function - static Material LoadMaterialPBR(Color albedo, float metalness, float roughness) - { - Material mat = { 0 }; // NOTE: All maps textures are set to { 0 } - - #define PATH_PBR_VS "resources/shaders/pbr.vs" // Path to physically based rendering vertex shader - #define PATH_PBR_FS "resources/shaders/pbr.fs" // Path to physically based rendering fragment shader - - mat.shader = LoadShader(PATH_PBR_VS, PATH_PBR_FS); - - // Get required locations points for PBR material - // NOTE: Those location names must be available and used in the shader code - mat.shader.locs[LOC_MAP_ALBEDO] = GetShaderLocation(mat.shader, "albedo.sampler"); - mat.shader.locs[LOC_MAP_METALNESS] = GetShaderLocation(mat.shader, "metalness.sampler"); - mat.shader.locs[LOC_MAP_NORMAL] = GetShaderLocation(mat.shader, "normals.sampler"); - mat.shader.locs[LOC_MAP_ROUGHNESS] = GetShaderLocation(mat.shader, "roughness.sampler"); - mat.shader.locs[LOC_MAP_OCCLUSION] = GetShaderLocation(mat.shader, "occlusion.sampler"); - //mat.shader.locs[LOC_MAP_EMISSION] = GetShaderLocation(mat.shader, "emission.sampler"); - //mat.shader.locs[LOC_MAP_HEIGHT] = GetShaderLocation(mat.shader, "height.sampler"); - mat.shader.locs[LOC_MAP_IRRADIANCE] = GetShaderLocation(mat.shader, "irradianceMap"); - mat.shader.locs[LOC_MAP_PREFILTER] = GetShaderLocation(mat.shader, "prefilterMap"); - mat.shader.locs[LOC_MAP_BRDF] = GetShaderLocation(mat.shader, "brdfLUT"); - - // Set view matrix location - mat.shader.locs[LOC_MATRIX_MODEL] = GetShaderLocation(mat.shader, "matModel"); - mat.shader.locs[LOC_MATRIX_VIEW] = GetShaderLocation(mat.shader, "view"); - mat.shader.locs[LOC_VECTOR_VIEW] = GetShaderLocation(mat.shader, "viewPos"); - - // Set PBR standard maps - mat.maps[MAP_ALBEDO].texture = LoadTexture("resources/pbr/trooper_albedo.png"); - mat.maps[MAP_NORMAL].texture = LoadTexture("resources/pbr/trooper_normals.png"); - mat.maps[MAP_METALNESS].texture = LoadTexture("resources/pbr/trooper_metalness.png"); - mat.maps[MAP_ROUGHNESS].texture = LoadTexture("resources/pbr/trooper_roughness.png"); - mat.maps[MAP_OCCLUSION].texture = LoadTexture("resources/pbr/trooper_ao.png"); - - // Set environment maps - #define PATH_CUBEMAP_VS "resources/shaders/cubemap.vs" // Path to equirectangular to cubemap vertex shader - #define PATH_CUBEMAP_FS "resources/shaders/cubemap.fs" // Path to equirectangular to cubemap fragment shader - #define PATH_SKYBOX_VS "resources/shaders/skybox.vs" // Path to skybox vertex shader - #define PATH_IRRADIANCE_FS "resources/shaders/irradiance.fs" // Path to irradiance (GI) calculation fragment shader - #define PATH_PREFILTER_FS "resources/shaders/prefilter.fs" // Path to reflection prefilter calculation fragment shader - #define PATH_BRDF_VS "resources/shaders/brdf.vs" // Path to bidirectional reflectance distribution function vertex shader - #define PATH_BRDF_FS "resources/shaders/brdf.fs" // Path to bidirectional reflectance distribution function fragment shader - - Shader shdrCubemap = LoadShader(PATH_CUBEMAP_VS, PATH_CUBEMAP_FS); - Shader shdrIrradiance = LoadShader(PATH_SKYBOX_VS, PATH_IRRADIANCE_FS); - Shader shdrPrefilter = LoadShader(PATH_SKYBOX_VS, PATH_PREFILTER_FS); - Shader shdrBRDF = LoadShader(PATH_BRDF_VS, PATH_BRDF_FS); - - // Setup required shader locations - SetShaderValuei(shdrCubemap, GetShaderLocation(shdrCubemap, "equirectangularMap"), (int[1]){ 0 }, 1); - SetShaderValuei(shdrIrradiance, GetShaderLocation(shdrIrradiance, "environmentMap"), (int[1]){ 0 }, 1); - SetShaderValuei(shdrPrefilter, GetShaderLocation(shdrPrefilter, "environmentMap"), (int[1]){ 0 }, 1); - - Texture2D texHDR = LoadTexture("resources/dresden_square.hdr"); - Texture2D cubemap = GenTextureCubemap(shdrCubemap, texHDR, CUBEMAP_SIZE); - mat.maps[MAP_IRRADIANCE].texture = GenTextureIrradiance(shdrIrradiance, cubemap, IRRADIANCE_SIZE); - mat.maps[MAP_PREFILTER].texture = GenTexturePrefilter(shdrPrefilter, cubemap, PREFILTERED_SIZE); - mat.maps[MAP_BRDF].texture = GenTextureBRDF(shdrBRDF, cubemap, BRDF_SIZE); - UnloadTexture(cubemap); - UnloadTexture(texHDR); - - // Unload already used shaders (to create specific textures) - UnloadShader(shdrCubemap); - UnloadShader(shdrIrradiance); - UnloadShader(shdrPrefilter); - UnloadShader(shdrBRDF); - - // Set textures filtering for better quality - SetTextureFilter(mat.maps[MAP_ALBEDO].texture, FILTER_BILINEAR); - SetTextureFilter(mat.maps[MAP_NORMAL].texture, FILTER_BILINEAR); - SetTextureFilter(mat.maps[MAP_METALNESS].texture, FILTER_BILINEAR); - SetTextureFilter(mat.maps[MAP_ROUGHNESS].texture, FILTER_BILINEAR); - SetTextureFilter(mat.maps[MAP_OCCLUSION].texture, FILTER_BILINEAR); - - // Enable sample usage in shader for assigned textures - SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "albedo.useSampler"), (int[1]){ 1 }, 1); - SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "normals.useSampler"), (int[1]){ 1 }, 1); - SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "metalness.useSampler"), (int[1]){ 1 }, 1); - SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "roughness.useSampler"), (int[1]){ 1 }, 1); - SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "occlusion.useSampler"), (int[1]){ 1 }, 1); - - int renderModeLoc = GetShaderLocation(mat.shader, "renderMode"); - SetShaderValuei(mat.shader, renderModeLoc, (int[1]){ 0 }, 1); - - // Set up material properties color - mat.maps[MAP_ALBEDO].color = albedo; - mat.maps[MAP_NORMAL].color = (Color){ 128, 128, 255, 255 }; - mat.maps[MAP_METALNESS].value = metalness; - mat.maps[MAP_ROUGHNESS].value = roughness; - mat.maps[MAP_OCCLUSION].value = 1.0f; - mat.maps[MAP_EMISSION].value = 0.5f; - mat.maps[MAP_HEIGHT].value = 0.5f; - - return mat; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_mesh_generation.cs b/Examples/Examples/models/models_mesh_generation.cs deleted file mode 100644 index ab6f36b..0000000 --- a/Examples/Examples/models/models_mesh_generation.cs +++ /dev/null @@ -1,127 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib example - procedural mesh generation - * - * This example has been created using raylib 1.8 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (Ray San) - * - ********************************************************************************************/ - - - - private const int NUM_MODELS = 7; // We generate 7 parametric 3d shapes - - public static int models_mesh_generation() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - mesh generation"); - - // We generate a checked image for texturing - Image checked = GenImageChecked(2, 2, 1, 1, RED, GREEN); - Texture2D texture = LoadTextureFromImage(checked); - UnloadImage(checked); - - Model models[NUM_MODELS]; - - models[0] = LoadModelFromMesh(GenMeshPlane(2, 2, 5, 5)); - models[1] = LoadModelFromMesh(GenMeshCube(2.0f, 1.0f, 2.0f)); - models[2] = LoadModelFromMesh(GenMeshSphere(2, 32, 32)); - models[3] = LoadModelFromMesh(GenMeshHemiSphere(2, 16, 16)); - models[4] = LoadModelFromMesh(GenMeshCylinder(1, 2, 16)); - models[5] = LoadModelFromMesh(GenMeshTorus(0.25f, 4.0f, 16, 32)); - models[6] = LoadModelFromMesh(GenMeshKnot(1.0f, 2.0f, 16, 128)); - - // Set checked texture as default diffuse component for all models material - for (int i = 0; i < NUM_MODELS; i++) models[i].material.maps[MAP_DIFFUSE].texture = texture; - - // Define the camera to look into our 3d world - Camera camera = {{ 5.0f, 5.0f, 5.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 }; - - // Model drawing position - Vector3 position = { 0.0f, 0.0f, 0.0f }; - - int currentModel = 0; - - SetCameraMode(camera, CAMERA_ORBITAL); // Set a orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update internal camera and our camera - - if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) - { - currentModel = (currentModel + 1)%NUM_MODELS; // Cycle between the textures - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawModel(models[currentModel], position, 1.0f, WHITE); - - DrawGrid(10, 1.0); - - EndMode3D(); - - DrawRectangle(30, 400, 310, 30, Fade(SKYBLUE, 0.5f)); - DrawRectangleLines(30, 400, 310, 30, Fade(DARKBLUE, 0.5f)); - DrawText("MOUSE LEFT BUTTON to CYCLE PROCEDURAL MODELS", 40, 410, 10, BLUE); - - switch(currentModel) - { - case 0: DrawText("PLANE", 680, 10, 20, DARKBLUE); break; - case 1: DrawText("CUBE", 680, 10, 20, DARKBLUE); break; - case 2: DrawText("SPHERE", 680, 10, 20, DARKBLUE); break; - case 3: DrawText("HEMISPHERE", 640, 10, 20, DARKBLUE); break; - case 4: DrawText("CYLINDER", 680, 10, 20, DARKBLUE); break; - case 5: DrawText("TORUS", 680, 10, 20, DARKBLUE); break; - case 6: DrawText("KNOT", 680, 10, 20, DARKBLUE); break; - default: break; - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - - // Unload models data (GPU VRAM) - for (int i = 0; i < NUM_MODELS; i++) UnloadModel(models[i]); - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_mesh_picking.cs b/Examples/Examples/models/models_mesh_picking.cs deleted file mode 100644 index a979ced..0000000 --- a/Examples/Examples/models/models_mesh_picking.cs +++ /dev/null @@ -1,215 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Mesh picking in 3d mode, ground plane, triangle, mesh - * - * This example has been created using raylib 1.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * Example contributed by Joel Davis (@joeld42) - * - ********************************************************************************************/ - - - #include "raymath.h" - - private const int FLT_MAX = 3;.40282347E+38F // Maximum value of a float, defined in - - public static int models_mesh_picking() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - mesh picking"); - - // Define the camera to look into our 3d world - Camera camera; - camera.position = (Vector3){ 20.0f, 20.0f, 20.0f }; // Camera position - camera.target = (Vector3){ 0.0f, 8.0f, 0.0f }; // Camera looking at point - camera.up = (Vector3){ 0.0f, 1.6f, 0.0f }; // Camera up vector (rotation towards target) - camera.fovy = 45.0f; // Camera field-of-view Y - camera.type = CAMERA_PERSPECTIVE; // Camera mode type - - Ray ray; // Picking ray - - Model tower = LoadModel("resources/models/turret.obj"); // Load OBJ model - Texture2D texture = LoadTexture("resources/models/turret_diffuse.png"); // Load model texture - tower.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture - - Vector3 towerPos = { 0.0f, 0.0f, 0.0f }; // Set model position - BoundingBox towerBBox = MeshBoundingBox(tower.mesh); // Get mesh bounding box - bool hitMeshBBox = false; - bool hitTriangle = false; - - // Test triangle - Vector3 ta = (Vector3){ -25.0, 0.5, 0.0 }; - Vector3 tb = (Vector3){ -4.0, 2.5, 1.0 }; - Vector3 tc = (Vector3){ -8.0, 6.5, 0.0 }; - - Vector3 bary = { 0.0f, 0.0f, 0.0f }; - - SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - - // Display information about closest hit - RayHitInfo nearestHit; - char *hitObjectName = "None"; - nearestHit.distance = FLT_MAX; - nearestHit.hit = false; - Color cursorColor = WHITE; - - // Get ray and test against ground, triangle, and mesh - ray = GetMouseRay(GetMousePosition(), camera); - - // Check ray collision aginst ground plane - RayHitInfo groundHitInfo = GetCollisionRayGround(ray, 0.0f); - - if ((groundHitInfo.hit) && (groundHitInfo.distance < nearestHit.distance)) - { - nearestHit = groundHitInfo; - cursorColor = GREEN; - hitObjectName = "Ground"; - } - - // Check ray collision against test triangle - RayHitInfo triHitInfo = GetCollisionRayTriangle(ray, ta, tb, tc); - - if ((triHitInfo.hit) && (triHitInfo.distance < nearestHit.distance)) - { - nearestHit = triHitInfo; - cursorColor = PURPLE; - hitObjectName = "Triangle"; - - bary = Vector3Barycenter(nearestHit.position, ta, tb, tc); - hitTriangle = true; - } - else hitTriangle = false; - - RayHitInfo meshHitInfo; - - // Check ray collision against bounding box first, before trying the full ray-mesh test - if (CheckCollisionRayBox(ray, towerBBox)) - { - hitMeshBBox = true; - - // Check ray collision against model - // NOTE: It considers model.transform matrix! - meshHitInfo = GetCollisionRayModel(ray, &tower); - - if ((meshHitInfo.hit) && (meshHitInfo.distance < nearestHit.distance)) - { - nearestHit = meshHitInfo; - cursorColor = ORANGE; - hitObjectName = "Mesh"; - } - - } hitMeshBBox = false; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - // Draw the tower - // WARNING: If scale is different than 1.0f, - // not considered by GetCollisionRayModel() - DrawModel(tower, towerPos, 1.0f, WHITE); - - // Draw the test triangle - DrawLine3D(ta, tb, PURPLE); - DrawLine3D(tb, tc, PURPLE); - DrawLine3D(tc, ta, PURPLE); - - // Draw the mesh bbox if we hit it - if (hitMeshBBox) DrawBoundingBox(towerBBox, LIME); - - // If we hit something, draw the cursor at the hit point - if (nearestHit.hit) - { - DrawCube(nearestHit.position, 0.3, 0.3, 0.3, cursorColor); - DrawCubeWires(nearestHit.position, 0.3, 0.3, 0.3, RED); - - Vector3 normalEnd; - normalEnd.x = nearestHit.position.x + nearestHit.normal.x; - normalEnd.y = nearestHit.position.y + nearestHit.normal.y; - normalEnd.z = nearestHit.position.z + nearestHit.normal.z; - - DrawLine3D(nearestHit.position, normalEnd, RED); - } - - DrawRay(ray, MAROON); - - DrawGrid(10, 10.0f); - - EndMode3D(); - - // Draw some debug GUI text - DrawText(FormatText("Hit Object: %s", hitObjectName), 10, 50, 10, BLACK); - - if (nearestHit.hit) - { - int ypos = 70; - - DrawText(FormatText("Distance: %3.2f", nearestHit.distance), 10, ypos, 10, BLACK); - - DrawText(FormatText("Hit Pos: %3.2f %3.2f %3.2f", - nearestHit.position.x, - nearestHit.position.y, - nearestHit.position.z), 10, ypos + 15, 10, BLACK); - - DrawText(FormatText("Hit Norm: %3.2f %3.2f %3.2f", - nearestHit.normal.x, - nearestHit.normal.y, - nearestHit.normal.z), 10, ypos + 30, 10, BLACK); - - if (hitTriangle) DrawText(FormatText("Barycenter: %3.2f %3.2f %3.2f", bary.x, bary.y, bary.z), 10, ypos + 45, 10, BLACK); - } - - DrawText("Use Mouse to Move Camera", 10, 430, 10, GRAY); - - DrawText("(c) Turret 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadModel(tower); // Unload model - UnloadTexture(texture); // Unload texture - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_obj_loading.cs b/Examples/Examples/models/models_obj_loading.cs deleted file mode 100644 index 3c3005e..0000000 --- a/Examples/Examples/models/models_obj_loading.cs +++ /dev/null @@ -1,94 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Load and draw a 3d model (OBJ) - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int models_obj_loading() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - obj model loading"); - - // Define the camera to look into our 3d world - Camera camera = { 0 }; - camera.position = (Vector3){ 8.0f, 8.0f, 8.0f }; // Camera position - camera.target = (Vector3){ 0.0f, 2.5f, 0.0f }; // Camera looking at point - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target) - camera.fovy = 45.0f; // Camera field-of-view Y - camera.type = CAMERA_PERSPECTIVE; // Camera mode type - - Model model = LoadModel("resources/models/castle.obj"); // Load OBJ model - Texture2D texture = LoadTexture("resources/models/castle_diffuse.png"); // Load model texture - model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture - Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - //... - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawModel(model, position, 0.2f, WHITE); // Draw 3d model with texture - - DrawGrid(10, 1.0f); // Draw a grid - - DrawGizmo(position); // Draw gizmo - - EndMode3D(); - - DrawText("(c) Castle 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Unload texture - UnloadModel(model); // Unload model - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_orthographic_projection.cs b/Examples/Examples/models/models_orthographic_projection.cs deleted file mode 100644 index 98e343a..0000000 --- a/Examples/Examples/models/models_orthographic_projection.cs +++ /dev/null @@ -1,112 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Show the difference between perspective and orthographic projection - * - * This program is heavily based on the geometric objects example - * - * This example has been created using raylib 1.9.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2018 Max Danielsson & Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - private const int FOVY_PERSPECTIVE = 45;.0f - private const int WIDTH_ORTHOGRAPHIC = 10;.0f - - public static int models_orthographic_projection() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - geometric shapes"); - - // Define the camera to look into our 3d world - Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, FOVY_PERSPECTIVE, CAMERA_PERSPECTIVE }; - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyPressed(KEY_SPACE)) - { - if (camera.type == CAMERA_PERSPECTIVE) - { - camera.fovy = WIDTH_ORTHOGRAPHIC; - camera.type = CAMERA_ORTHOGRAPHIC; - } - else - { - camera.fovy = FOVY_PERSPECTIVE; - camera.type = CAMERA_PERSPECTIVE; - } - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawCube((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, RED); - DrawCubeWires((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, GOLD); - DrawCubeWires((Vector3){-4.0f, 0.0f, -2.0f}, 3.0f, 6.0f, 2.0f, MAROON); - - DrawSphere((Vector3){-1.0f, 0.0f, -2.0f}, 1.0f, GREEN); - DrawSphereWires((Vector3){1.0f, 0.0f, 2.0f}, 2.0f, 16, 16, LIME); - - DrawCylinder((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, SKYBLUE); - DrawCylinderWires((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, DARKBLUE); - DrawCylinderWires((Vector3){4.5f, -1.0f, 2.0f}, 1.0f, 1.0f, 2.0f, 6, BROWN); - - DrawCylinder((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, GOLD); - DrawCylinderWires((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, PINK); - - DrawGrid(10, 1.0f); // Draw a grid - - EndMode3D(); - - DrawText("Press Spacebar to switch camera type", 10, GetScreenHeight() - 30, 20, DARKGRAY); - - if (camera.type == CAMERA_ORTHOGRAPHIC) DrawText("ORTHOGRAPHIC", 10, 40, 20, BLACK); - else if (camera.type == CAMERA_PERSPECTIVE) DrawText("PERSPECTIVE", 10, 40, 20, BLACK); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_skybox.cs b/Examples/Examples/models/models_skybox.cs deleted file mode 100644 index 0aa419b..0000000 --- a/Examples/Examples/models/models_skybox.cs +++ /dev/null @@ -1,105 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Skybox loading and drawing - * - * This example has been created using raylib 1.8 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int models_skybox() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - skybox loading and drawing"); - - // Define the camera to look into our 3d world - Camera camera = {{ 1.0f, 1.0f, 1.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 }; - - // Load skybox model - Mesh cube = GenMeshCube(1.0f, 1.0f, 1.0f); - Model skybox = LoadModelFromMesh(cube); - - // Load skybox shader and set required locations - // NOTE: Some locations are automatically set at shader loading - skybox.material.shader = LoadShader("resources/shaders/skybox.vs", "resources/shaders/skybox.fs"); - SetShaderValuei(skybox.material.shader, GetShaderLocation(skybox.material.shader, "environmentMap"), (int[1]){ MAP_CUBEMAP }, 1); - - // Load cubemap shader and setup required shader locations - Shader shdrCubemap = LoadShader("resources/shaders/cubemap.vs", "resources/shaders/cubemap.fs"); - SetShaderValuei(shdrCubemap, GetShaderLocation(shdrCubemap, "equirectangularMap"), (int[1]){ 0 }, 1); - - // Load HDR panorama (sphere) texture - Texture2D texHDR = LoadTexture("resources/dresden_square.hdr"); - - // Generate cubemap (texture with 6 quads-cube-mapping) from panorama HDR texture - // NOTE: New texture is generated rendering to texture, shader computes the sphre->cube coordinates mapping - skybox.material.maps[MAP_CUBEMAP].texture = GenTextureCubemap(shdrCubemap, texHDR, 512); - - UnloadTexture(texHDR); // Texture not required anymore, cubemap already generated - UnloadShader(shdrCubemap); // Unload cubemap generation shader, not required anymore - - SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set a first person camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawModel(skybox, (Vector3){0, 0, 0}, 1.0f, WHITE); - - DrawGrid(10, 1.0f); - - EndMode3D(); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadModel(skybox); // Unload skybox model (and textures) - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/models/models_yaw_pitch_roll.cs b/Examples/Examples/models/models_yaw_pitch_roll.cs deleted file mode 100644 index cf46540..0000000 --- a/Examples/Examples/models/models_yaw_pitch_roll.cs +++ /dev/null @@ -1,214 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [models] example - Plane rotations (yaw, pitch, roll) - * - * This example has been created using raylib 1.8 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Example based on Berni work on Raspberry Pi: - * http://forum.raylib.com/index.php?p=/discussion/124/line-versus-triangle-drawing-order - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - #include "raymath.h" - - // Draw angle gauge controls - void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, char title[], Color color); - - //---------------------------------------------------------------------------------- - // Main entry point - //---------------------------------------------------------------------------------- - public static int models_yaw_pitch_roll() - { - // Initialization - //-------------------------------------------------------------------------------------- - const int screenWidth = 800; - const int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [models] example - plane rotations (yaw, pitch, roll)"); - - Texture2D texAngleGauge = LoadTexture("resources/angle_gauge.png"); - Texture2D texBackground = LoadTexture("resources/background.png"); - Texture2D texPitch = LoadTexture("resources/pitch.png"); - Texture2D texPlane = LoadTexture("resources/plane.png"); - - RenderTexture2D framebuffer = LoadRenderTexture(192, 192); - - // Model loading - Model model = LoadModel("resources/plane.obj"); // Load OBJ model - model.material.maps[MAP_DIFFUSE].texture = LoadTexture("resources/plane_diffuse.png"); // Set map diffuse texture - - GenTextureMipmaps(&model.material.maps[MAP_DIFFUSE].texture); - - Camera camera = { 0 }; - camera.position = (Vector3){ 0.0f, 60.0f, -120.0f };// Camera position perspective - camera.target = (Vector3){ 0.0f, 12.0f, 0.0f }; // Camera looking at point - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target) - camera.fovy = 30.0f; // Camera field-of-view Y - camera.type = CAMERA_PERSPECTIVE; // Camera type - - float pitch = 0.0f; - float roll = 0.0f; - float yaw = 0.0f; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - - // Plane roll (x-axis) controls - if (IsKeyDown(KEY_LEFT)) roll += 1.0f; - else if (IsKeyDown(KEY_RIGHT)) roll -= 1.0f; - else - { - if (roll > 0.0f) roll -= 0.5f; - else if (roll < 0.0f) roll += 0.5f; - } - - // Plane yaw (y-axis) controls - if (IsKeyDown(KEY_S)) yaw += 1.0f; - else if (IsKeyDown(KEY_A)) yaw -= 1.0f; - else - { - if (yaw > 0.0f) yaw -= 0.5f; - else if (yaw < 0.0f) yaw += 0.5f; - } - - // Plane pitch (z-axis) controls - if (IsKeyDown(KEY_DOWN)) pitch += 0.6f; - else if (IsKeyDown(KEY_UP)) pitch -= 0.6f; - else - { - if (pitch > 0.3f) pitch -= 0.3f; - else if (pitch < -0.3f) pitch += 0.3f; - } - - // Wraps the phase of an angle to fit between -180 and +180 degrees - int pitchOffset = pitch; - while (pitchOffset > 180) pitchOffset -= 360; - while (pitchOffset < -180) pitchOffset += 360; - pitchOffset *= 10; - - Matrix transform = MatrixIdentity(); - - transform = MatrixMultiply(transform, MatrixRotateZ(DEG2RAD*roll)); - transform = MatrixMultiply(transform, MatrixRotateX(DEG2RAD*pitch)); - transform = MatrixMultiply(transform, MatrixRotateY(DEG2RAD*yaw)); - - model.transform = transform; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - // Draw framebuffer texture (Ahrs Display) - int centerX = framebuffer.texture.width/2; - int centerY = framebuffer.texture.height/2; - float scaleFactor = 0.5f; - - BeginTextureMode(framebuffer); - - BeginBlendMode(BLEND_ALPHA); - - DrawTexturePro(texBackground, (Rectangle){ 0, 0, texBackground.width, texBackground.height }, - (Rectangle){ centerX, centerY, texBackground.width*scaleFactor, texBackground.height*scaleFactor}, - (Vector2){ texBackground.width/2*scaleFactor, texBackground.height/2*scaleFactor + pitchOffset*scaleFactor }, roll, WHITE); - - DrawTexturePro(texPitch, (Rectangle){ 0, 0, texPitch.width, texPitch.height }, - (Rectangle){ centerX, centerY, texPitch.width*scaleFactor, texPitch.height*scaleFactor }, - (Vector2){ texPitch.width/2*scaleFactor, texPitch.height/2*scaleFactor + pitchOffset*scaleFactor }, roll, WHITE); - - DrawTexturePro(texPlane, (Rectangle){ 0, 0, texPlane.width, texPlane.height }, - (Rectangle){ centerX, centerY, texPlane.width*scaleFactor, texPlane.height*scaleFactor }, - (Vector2){ texPlane.width/2*scaleFactor, texPlane.height/2*scaleFactor }, 0, WHITE); - - EndBlendMode(); - - EndTextureMode(); - - // Draw 3D model (recomended to draw 3D always before 2D) - BeginMode3D(camera); - - DrawModel(model, (Vector3){ 0, 6.0f, 0 }, 1.0f, WHITE); // Draw 3d model with texture - DrawGrid(10, 10.0f); - - EndMode3D(); - - // Draw 2D GUI stuff - DrawAngleGauge(texAngleGauge, 80, 70, roll, "roll", RED); - DrawAngleGauge(texAngleGauge, 190, 70, pitch, "pitch", GREEN); - DrawAngleGauge(texAngleGauge, 300, 70, yaw, "yaw", SKYBLUE); - - DrawRectangle(30, 360, 260, 70, Fade(SKYBLUE, 0.5f)); - DrawRectangleLines(30, 360, 260, 70, Fade(DARKBLUE, 0.5f)); - DrawText("Pitch controlled with: KEY_UP / KEY_DOWN", 40, 370, 10, DARKGRAY); - DrawText("Roll controlled with: KEY_LEFT / KEY_RIGHT", 40, 390, 10, DARKGRAY); - DrawText("Yaw controlled with: KEY_A / KEY_S", 40, 410, 10, DARKGRAY); - - // Draw framebuffer texture - DrawTextureRec(framebuffer.texture, (Rectangle){ 0, 0, framebuffer.texture.width, -framebuffer.texture.height }, - (Vector2){ screenWidth - framebuffer.texture.width - 20, 20 }, Fade(WHITE, 0.8f)); - - DrawRectangleLines(screenWidth - framebuffer.texture.width - 20, 20, framebuffer.texture.width, framebuffer.texture.height, DARKGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - - // Unload all loaded data - UnloadModel(model); - - UnloadRenderTexture(framebuffer); - - UnloadTexture(texAngleGauge); - UnloadTexture(texBackground); - UnloadTexture(texPitch); - UnloadTexture(texPlane); - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - // Draw angle gauge controls - void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, char title[], Color color) - { - Rectangle srcRec = { 0, 0, angleGauge.width, angleGauge.height }; - Rectangle dstRec = { x, y, angleGauge.width, angleGauge.height }; - Vector2 origin = { angleGauge.width/2, angleGauge.height/2}; - int textSize = 20; - - DrawTexturePro(angleGauge, srcRec, dstRec, origin, angle, color); - - DrawText(FormatText("%5.1f", angle), x - MeasureText(FormatText("%5.1f", angle), textSize) / 2, y + 10, textSize, DARKGRAY); - DrawText(title, x - MeasureText(title, textSize) / 2, y + 60, textSize, DARKGRAY); - } - - -} \ No newline at end of file diff --git a/Examples/Examples/others/audio_standalone.cs b/Examples/Examples/others/audio_standalone.cs deleted file mode 100644 index fbbf7cd..0000000 --- a/Examples/Examples/others/audio_standalone.cs +++ /dev/null @@ -1,156 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [audio] example - Using audio module as standalone module - * - * NOTE: This example does not require any graphic device, it can run directly on console. - * - * DEPENDENCIES: - * mini_al.h - Audio device management lib (http://kcat.strangesoft.net/openal.html) - * stb_vorbis.c - Ogg audio files loading (http://www.nothings.org/stb_vorbis/) - * jar_xm.h - XM module file loading - * jar_mod.h - MOD audio file loading - * dr_flac.h - FLAC audio file loading - * - * COMPILATION: - * gcc -c ..\..\src\external\mini_al.c -Wall -I. - * gcc -o audio_standalone.exe audio_standalone.c ..\..\src\audio.c ..\..\src\external\stb_vorbis.c mini_al.o / - * -I..\..\src -I..\..\src\external -L. -Wall -std=c99 / - * -DAUDIO_STANDALONE -DSUPPORT_FILEFORMAT_WAV -DSUPPORT_FILEFORMAT_OGG - * - * LICENSE: zlib/libpng - * - * This example is licensed under an unmodified zlib/libpng license, which is an OSI-certified, - * BSD-like license that allows static linking with closed source software: - * - * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) - * - * This software is provided "as-is", without any express or implied warranty. In no event - * will the authors be held liable for any damages arising from the use of this software. - * - * Permission is granted to anyone to use this software for any purpose, including commercial - * applications, and to alter it and redistribute it freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not claim that you - * wrote the original software. If you use this software in a product, an acknowledgment - * in the product documentation would be appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be misrepresented - * as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - * - ********************************************************************************************/ - - #include "audio.h" // Audio library - - #include // Required for: printf() - - #if defined(_WIN32) - #include // Windows only, no stardard library - #else - - // Provide kbhit() function in non-Windows platforms - #include - #include - #include - #include - - // Check if a key has been pressed - static int kbhit(void) - { - struct termios oldt, newt; - int ch; - int oldf; - - tcgetattr(STDIN_FILENO, &oldt); - newt = oldt; - newt.c_lflag &= ~(ICANON | ECHO); - tcsetattr(STDIN_FILENO, TCSANOW, &newt); - oldf = fcntl(STDIN_FILENO, F_GETFL, 0); - fcntl(STDIN_FILENO, F_SETFL, oldf | O_NONBLOCK); - - ch = getchar(); - - tcsetattr(STDIN_FILENO, TCSANOW, &oldt); - fcntl(STDIN_FILENO, F_SETFL, oldf); - - if (ch != EOF) - { - ungetc(ch, stdin); - return 1; - } - - return 0; - } - - // Get pressed character - static char getch() { return getchar(); } - - #endif - - private const int KEY_ESCAPE = 27; - - public static int audio_standalone() - { - // Initialization - //-------------------------------------------------------------------------------------- - static unsigned char key; - - InitAudioDevice(); - - Sound fxWav = LoadSound("resources/audio/weird.wav"); // Load WAV audio file - Sound fxOgg = LoadSound("resources/audio/tanatana.ogg"); // Load OGG audio file - - Music music = LoadMusicStream("resources/audio/guitar_noodling.ogg"); - PlayMusicStream(music); - - printf("\nPress s or d to play sounds...\n"); - //-------------------------------------------------------------------------------------- - - // Main loop - while (key != KEY_ESCAPE) - { - if (kbhit()) key = getch(); - - if (key == 's') - { - PlaySound(fxWav); - key = 0; - } - - if (key == 'd') - { - PlaySound(fxOgg); - key = 0; - } - - UpdateMusicStream(music); - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadSound(fxWav); // Unload sound data - UnloadSound(fxOgg); // Unload sound data - - UnloadMusicStream(music); // Unload music stream data - - CloseAudioDevice(); - //-------------------------------------------------------------------------------------- - - return 0; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/others/rlgl_standalone.cs b/Examples/Examples/others/rlgl_standalone.cs deleted file mode 100644 index 0475072..0000000 --- a/Examples/Examples/others/rlgl_standalone.cs +++ /dev/null @@ -1,434 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [rlgl] example - Using rlgl module as standalone module - * - * NOTE: This example requires OpenGL 3.3 or ES2 versions for shaders support, - * OpenGL 1.1 does not support shaders but it can also be used. - * - * DEPENDENCIES: - * rlgl.h - OpenGL 1.1 immediate-mode style coding translation layer - * glad.h - OpenGL extensions initialization library (required by rlgl) - * raymath.h - 3D math library (required by rlgl) - * glfw3 - Windows and context initialization library - * - * rlgl library is provided as a single-file header-only library, this library - * allows coding in a pseudo-OpenGL 1.1 style while translating calls to multiple - * OpenGL versions backends (1.1, 2.1, 3.3, ES 2.0). - * - * COMPILATION: - * gcc -o rlgl_standalone.exe rlgl_standalone.c -s -Iexternal\include -I..\..\src \ - * -L. -Lexternal\lib -lglfw3 -lopengl32 -lgdi32 -Wall -std=c99 \ - * -DRAYMATH_IMPLEMENTATION -DGRAPHICS_API_OPENGL_33 - * - * LICENSE: zlib/libpng - * - * This example is licensed under an unmodified zlib/libpng license, which is an OSI-certified, - * BSD-like license that allows static linking with closed source software: - * - * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) - * - * This software is provided "as-is", without any express or implied warranty. In no event - * will the authors be held liable for any damages arising from the use of this software. - * - * Permission is granted to anyone to use this software for any purpose, including commercial - * applications, and to alter it and redistribute it freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not claim that you - * wrote the original software. If you use this software in a product, an acknowledgment - * in the product documentation would be appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be misrepresented - * as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - * - ********************************************************************************************/ - - #define RLGL_IMPLEMENTATION - #define RLGL_STANDALONE - #include "rlgl.h" // OpenGL 1.1 immediate-mode style coding - - #include // Windows/Context and inputs management - - private const int RED = 230;, 41, 55, 255 } // Red - private const int RAYWHITE = 245;, 245, 245, 255 } // My own White (raylib logo) - private const int DARKGRAY = 80;, 80, 80, 255 } // Dark Gray - - //---------------------------------------------------------------------------------- - // Module specific Functions Declaration - //---------------------------------------------------------------------------------- - static void ErrorCallback(int error, const char* description); - static void KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods); - - // Drawing functions (uses rlgl functionality) - static void DrawGrid(int slices, float spacing); - static void DrawCube(Vector3 position, float width, float height, float length, Color color); - static void DrawCubeWires(Vector3 position, float width, float height, float length, Color color); - static void DrawRectangleV(Vector2 position, Vector2 size, Color color); - - //---------------------------------------------------------------------------------- - // Main Entry point - //---------------------------------------------------------------------------------- - int main(void) - { - // Initialization - //-------------------------------------------------------------------------------------- - const int screenWidth = 800; - const int screenHeight = 450; - - // GLFW3 Initialization + OpenGL 3.3 Context + Extensions - //-------------------------------------------------------- - glfwSetErrorCallback(ErrorCallback); - - if (!glfwInit()) - { - TraceLog(LOG_WARNING, "GLFW3: Can not initialize GLFW"); - return 1; - } - else TraceLog(LOG_INFO, "GLFW3: GLFW initialized successfully"); - - glfwWindowHint(GLFW_SAMPLES, 4); - glfwWindowHint(GLFW_DEPTH_BITS, 16); - glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); - glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); - glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); - glfwWindowHint(GLFW_OPENGL_DEBUG_CONTEXT, GL_TRUE); - - GLFWwindow *window = glfwCreateWindow(screenWidth, screenHeight, "rlgl standalone", NULL, NULL); - - if (!window) - { - glfwTerminate(); - return 2; - } - else TraceLog(LOG_INFO, "GLFW3: Window created successfully"); - - glfwSetWindowPos(window, 200, 200); - - glfwSetKeyCallback(window, KeyCallback); - - glfwMakeContextCurrent(window); - glfwSwapInterval(1); - - // Load OpenGL 3.3 supported extensions - rlLoadExtensions(glfwGetProcAddress); - //-------------------------------------------------------- - - // Initialize OpenGL context (states and resources) - rlglInit(screenWidth, screenHeight); - - // Initialize viewport and internal projection/modelview matrices - rlViewport(0, 0, screenWidth, screenHeight); - rlMatrixMode(RL_PROJECTION); // Switch to PROJECTION matrix - rlLoadIdentity(); // Reset current matrix (PROJECTION) - rlOrtho(0, screenWidth, screenHeight, 0, 0.0f, 1.0f); // Orthographic projection with top-left corner at (0,0) - rlMatrixMode(RL_MODELVIEW); // Switch back to MODELVIEW matrix - rlLoadIdentity(); // Reset current matrix (MODELVIEW) - - rlClearColor(245, 245, 245, 255); // Define clear color - rlEnableDepthTest(); // Enable DEPTH_TEST for 3D - - Camera camera; - camera.position = (Vector3){ 5.0f, 5.0f, 5.0f }; // Camera position - camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target) - camera.fovy = 45.0f; // Camera field-of-view Y - - Vector3 cubePosition = { 0.0f, 0.0f, 0.0f }; // Cube default position (center) - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!glfwWindowShouldClose(window)) - { - // Update - //---------------------------------------------------------------------------------- - // ... - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - rlClearScreenBuffers(); // Clear current framebuffer - - // Draw '3D' elements in the scene - //----------------------------------------------- - // Calculate projection matrix (from perspective) and view matrix from camera look at - Matrix matProj = MatrixPerspective(camera.fovy*DEG2RAD, (double)screenWidth/(double)screenHeight, 0.01, 1000.0); - Matrix matView = MatrixLookAt(camera.position, camera.target, camera.up); - - SetMatrixModelview(matView); // Set internal modelview matrix (default shader) - SetMatrixProjection(matProj); // Set internal projection matrix (default shader) - - DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED); - DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, RAYWHITE); - DrawGrid(10, 1.0f); - - // NOTE: Internal buffers drawing (3D data) - rlglDraw(); - //----------------------------------------------- - - // Draw '2D' elements in the scene (GUI) - //----------------------------------------------- - #define RLGL_CREATE_MATRIX_MANUALLY - #if defined(RLGL_CREATE_MATRIX_MANUALLY) - matProj = MatrixOrtho(0.0, screenWidth, screenHeight, 0.0, 0.0, 1.0); - matView = MatrixIdentity(); - - SetMatrixModelview(matView); // Set internal modelview matrix (default shader) - SetMatrixProjection(matProj); // Set internal projection matrix (default shader) - - #else // Let rlgl generate and multiply matrix internally - - rlMatrixMode(RL_PROJECTION); // Enable internal projection matrix - rlLoadIdentity(); // Reset internal projection matrix - rlOrtho(0.0, screenWidth, screenHeight, 0.0, 0.0, 1.0); // Recalculate internal projection matrix - rlMatrixMode(RL_MODELVIEW); // Enable internal modelview matrix - rlLoadIdentity(); // Reset internal modelview matrix - #endif - DrawRectangleV((Vector2){ 10.0f, 10.0f }, (Vector2){ 780.0f, 20.0f }, DARKGRAY); - - // NOTE: Internal buffers drawing (2D data) - rlglDraw(); - //----------------------------------------------- - - glfwSwapBuffers(window); - glfwPollEvents(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - rlglClose(); // Unload rlgl internal buffers and default shader/texture - - glfwDestroyWindow(window); // Close window - glfwTerminate(); // Free GLFW3 resources - //-------------------------------------------------------------------------------------- - - return 0; - } - - //---------------------------------------------------------------------------------- - // Module specific Functions Definitions - //---------------------------------------------------------------------------------- - - // GLFW3: Error callback - static void ErrorCallback(int error, const char* description) - { - TraceLog(LOG_ERROR, description); - } - - // GLFW3: Keyboard callback - static void KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods) - { - if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS) - { - glfwSetWindowShouldClose(window, GL_TRUE); - } - } - - // Draw rectangle using rlgl OpenGL 1.1 style coding (translated to OpenGL 3.3 internally) - static void DrawRectangleV(Vector2 position, Vector2 size, Color color) - { - rlBegin(RL_TRIANGLES); - rlColor4ub(color.r, color.g, color.b, color.a); - - rlVertex2i(position.x, position.y); - rlVertex2i(position.x, position.y + size.y); - rlVertex2i(position.x + size.x, position.y + size.y); - - rlVertex2i(position.x, position.y); - rlVertex2i(position.x + size.x, position.y + size.y); - rlVertex2i(position.x + size.x, position.y); - rlEnd(); - } - - // Draw a grid centered at (0, 0, 0) - static void DrawGrid(int slices, float spacing) - { - int halfSlices = slices / 2; - - rlBegin(RL_LINES); - for(int i = -halfSlices; i <= halfSlices; i++) - { - if (i == 0) - { - rlColor3f(0.5f, 0.5f, 0.5f); - rlColor3f(0.5f, 0.5f, 0.5f); - rlColor3f(0.5f, 0.5f, 0.5f); - rlColor3f(0.5f, 0.5f, 0.5f); - } - else - { - rlColor3f(0.75f, 0.75f, 0.75f); - rlColor3f(0.75f, 0.75f, 0.75f); - rlColor3f(0.75f, 0.75f, 0.75f); - rlColor3f(0.75f, 0.75f, 0.75f); - } - - rlVertex3f((float)i*spacing, 0.0f, (float)-halfSlices*spacing); - rlVertex3f((float)i*spacing, 0.0f, (float)halfSlices*spacing); - - rlVertex3f((float)-halfSlices*spacing, 0.0f, (float)i*spacing); - rlVertex3f((float)halfSlices*spacing, 0.0f, (float)i*spacing); - } - rlEnd(); - } - - // Draw cube - // NOTE: Cube position is the center position - void DrawCube(Vector3 position, float width, float height, float length, Color color) - { - float x = 0.0f; - float y = 0.0f; - float z = 0.0f; - - rlPushMatrix(); - - // NOTE: Be careful! Function order matters (rotate -> scale -> translate) - rlTranslatef(position.x, position.y, position.z); - //rlScalef(2.0f, 2.0f, 2.0f); - //rlRotatef(45, 0, 1, 0); - - rlBegin(RL_TRIANGLES); - rlColor4ub(color.r, color.g, color.b, color.a); - - // Front Face ----------------------------------------------------- - rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left - rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right - rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left - - rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Right - rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left - rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right - - // Back Face ------------------------------------------------------ - rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Left - rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left - rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right - - rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right - rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right - rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left - - // Top Face ------------------------------------------------------- - rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left - rlVertex3f(x-width/2, y+height/2, z+length/2); // Bottom Left - rlVertex3f(x+width/2, y+height/2, z+length/2); // Bottom Right - - rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right - rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left - rlVertex3f(x+width/2, y+height/2, z+length/2); // Bottom Right - - // Bottom Face ---------------------------------------------------- - rlVertex3f(x-width/2, y-height/2, z-length/2); // Top Left - rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right - rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left - - rlVertex3f(x+width/2, y-height/2, z-length/2); // Top Right - rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right - rlVertex3f(x-width/2, y-height/2, z-length/2); // Top Left - - // Right face ----------------------------------------------------- - rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right - rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right - rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Left - - rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Left - rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right - rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Left - - // Left Face ------------------------------------------------------ - rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Right - rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left - rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Right - - rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left - rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left - rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Right - rlEnd(); - rlPopMatrix(); - } - - // Draw cube wires - void DrawCubeWires(Vector3 position, float width, float height, float length, Color color) - { - float x = 0.0f; - float y = 0.0f; - float z = 0.0f; - - rlPushMatrix(); - - rlTranslatef(position.x, position.y, position.z); - //rlRotatef(45, 0, 1, 0); - - rlBegin(RL_LINES); - rlColor4ub(color.r, color.g, color.b, color.a); - - // Front Face ----------------------------------------------------- - // Bottom Line - rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left - rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right - - // Left Line - rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right - rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Right - - // Top Line - rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Right - rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left - - // Right Line - rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left - rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left - - // Back Face ------------------------------------------------------ - // Bottom Line - rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Left - rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right - - // Left Line - rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right - rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right - - // Top Line - rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right - rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left - - // Right Line - rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left - rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Left - - // Top Face ------------------------------------------------------- - // Left Line - rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left Front - rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left Back - - // Right Line - rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Right Front - rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right Back - - // Bottom Face --------------------------------------------------- - // Left Line - rlVertex3f(x-width/2, y-height/2, z+length/2); // Top Left Front - rlVertex3f(x-width/2, y-height/2, z-length/2); // Top Left Back - - // Right Line - rlVertex3f(x+width/2, y-height/2, z+length/2); // Top Right Front - rlVertex3f(x+width/2, y-height/2, z-length/2); // Top Right Back - rlEnd(); - rlPopMatrix(); - } - - -} \ No newline at end of file diff --git a/Examples/Examples/others/standard_lighting.cs b/Examples/Examples/others/standard_lighting.cs deleted file mode 100644 index 2fd6d3f..0000000 --- a/Examples/Examples/others/standard_lighting.cs +++ /dev/null @@ -1,496 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shaders] example - Standard lighting (materials and lights) - * - * NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support, - * OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version. - * - * NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example - * on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders - * raylib comes with shaders ready for both versions, check raylib/shaders install folder - * - * This example has been created using raylib 1.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016-2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - #include // Required for: NULL - #include // Required for: strcpy() - #include // Required for: vector math - - //---------------------------------------------------------------------------------- - // Defines and Macros - //---------------------------------------------------------------------------------- - private const int MAX_LIGHTS = 8; // Max lights supported by standard shader - - //---------------------------------------------------------------------------------- - // Types and Structures Definition - //---------------------------------------------------------------------------------- - - // Light type - typedef struct LightData { - unsigned int id; // Light unique id - bool enabled; // Light enabled - int type; // Light type: LIGHT_POINT, LIGHT_DIRECTIONAL, LIGHT_SPOT - - Vector3 position; // Light position - Vector3 target; // Light direction: LIGHT_DIRECTIONAL and LIGHT_SPOT (cone direction target) - float radius; // Light attenuation radius light intensity reduced with distance (world distance) - - Color diffuse; // Light diffuse color - float intensity; // Light intensity level - - float coneAngle; // Light cone max angle: LIGHT_SPOT - } LightData, *Light; - - // Light types - typedef enum { LIGHT_POINT, LIGHT_DIRECTIONAL, LIGHT_SPOT } LightType; - - //---------------------------------------------------------------------------------- - // Global Variables Definition - //---------------------------------------------------------------------------------- - static Light lights[MAX_LIGHTS]; // Lights pool - static int lightsCount = 0; // Enabled lights counter - static int lightsLocs[MAX_LIGHTS][8]; // Lights location points in shader: 8 possible points per light: - // enabled, type, position, target, radius, diffuse, intensity, coneAngle - - //---------------------------------------------------------------------------------- - // Module Functions Declaration - //---------------------------------------------------------------------------------- - static Light CreateLight(int type, Vector3 position, Color diffuse); // Create a new light, initialize it and add to pool - static void DestroyLight(Light light); // Destroy a light and take it out of the list - static void DrawLight(Light light); // Draw light in 3D world - - static void GetShaderLightsLocations(Shader shader); // Get shader locations for lights (up to MAX_LIGHTS) - static void SetShaderLightsValues(Shader shader); // Set shader uniform values for lights - - // Vector3 math functions - static float VectorLength(const Vector3 v); // Calculate vector length - static void VectorNormalize(Vector3 *v); // Normalize provided vector - static Vector3 VectorSubtract(Vector3 v1, Vector3 v2); // Substract two vectors - - - //https://www.gamedev.net/topic/655969-speed-gluniform-vs-uniform-buffer-objects/ - //https://www.reddit.com/r/opengl/comments/4ri20g/is_gluniform_more_expensive_than_glprogramuniform/ - //http://cg.alexandra.dk/?p=3778 - AZDO - //https://developer.apple.com/library/content/documentation/3DDrawing/Conceptual/OpenGLES_ProgrammingGuide/BestPracticesforShaders/BestPracticesforShaders.html - - //------------------------------------------------------------------------------------ - // Program main entry point - //------------------------------------------------------------------------------------ - public static int standard_lighting() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available) - - InitWindow(screenWidth, screenHeight, "raylib [shaders] example - model shader"); - - // Define the camera to look into our 3d world - Camera camera = {{ 4.0f, 4.0f, 4.0f }, { 0.0f, 1.5f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f }; - Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position - - Model dwarf = LoadModel("resources/model/dwarf.obj"); // Load OBJ model - - Material material;// = LoadStandardMaterial(); - - material.shader = LoadShader("resources/shaders/glsl330/standard.vs", - "resources/shaders/glsl330/standard.fs"); - - // Try to get lights location points (if available) - GetShaderLightsLocations(material.shader); - - material.maps[MAP_DIFFUSE].texture = LoadTexture("resources/model/dwarf_diffuse.png"); // Load model diffuse texture - material.maps[MAP_NORMAL].texture = LoadTexture("resources/model/dwarf_normal.png"); // Load model normal texture - material.maps[MAP_SPECULAR].texture = LoadTexture("resources/model/dwarf_specular.png"); // Load model specular texture - material.maps[MAP_DIFFUSE].color = WHITE; - material.maps[MAP_SPECULAR].color = WHITE; - - dwarf.material = material; // Apply material to model - - Light spotLight = CreateLight(LIGHT_SPOT, (Vector3){3.0f, 5.0f, 2.0f}, (Color){255, 255, 255, 255}); - spotLight->target = (Vector3){0.0f, 0.0f, 0.0f}; - spotLight->intensity = 2.0f; - spotLight->diffuse = (Color){255, 100, 100, 255}; - spotLight->coneAngle = 60.0f; - - Light dirLight = CreateLight(LIGHT_DIRECTIONAL, (Vector3){0.0f, -3.0f, -3.0f}, (Color){255, 255, 255, 255}); - dirLight->target = (Vector3){1.0f, -2.0f, -2.0f}; - dirLight->intensity = 2.0f; - dirLight->diffuse = (Color){100, 255, 100, 255}; - - Light pointLight = CreateLight(LIGHT_POINT, (Vector3){0.0f, 4.0f, 5.0f}, (Color){255, 255, 255, 255}); - pointLight->intensity = 2.0f; - pointLight->diffuse = (Color){100, 100, 255, 255}; - pointLight->radius = 3.0f; - - // Set shader lights values for enabled lights - // NOTE: If values are not changed in real time, they can be set at initialization!!! - SetShaderLightsValues(material.shader); - - //SetShaderActive(0); - - // Setup orbital camera - SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawModel(dwarf, position, 2.0f, WHITE); // Draw 3d model with texture - - DrawLight(spotLight); // Draw spot light - DrawLight(dirLight); // Draw directional light - DrawLight(pointLight); // Draw point light - - DrawGrid(10, 1.0f); // Draw a grid - - EndMode3D(); - - DrawText("(c) Dwarf 3D model by David Moreno", screenWidth - 200, screenHeight - 20, 10, GRAY); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadMaterial(material); // Unload material and assigned textures - UnloadModel(dwarf); // Unload model - - // Destroy all created lights - DestroyLight(pointLight); - DestroyLight(dirLight); - DestroyLight(spotLight); - - // Unload lights - if (lightsCount > 0) - { - for (int i = 0; i < lightsCount; i++) free(lights[i]); - lightsCount = 0; - } - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - //-------------------------------------------------------------------------------------------- - // Module Functions Definitions - //-------------------------------------------------------------------------------------------- - - // Create a new light, initialize it and add to pool - Light CreateLight(int type, Vector3 position, Color diffuse) - { - Light light = NULL; - - if (lightsCount < MAX_LIGHTS) - { - // Allocate dynamic memory - light = (Light)malloc(sizeof(LightData)); - - // Initialize light values with generic values - light->id = lightsCount; - light->type = type; - light->enabled = true; - - light->position = position; - light->target = (Vector3){ 0.0f, 0.0f, 0.0f }; - light->intensity = 1.0f; - light->diffuse = diffuse; - - // Add new light to the array - lights[lightsCount] = light; - - // Increase enabled lights count - lightsCount++; - } - else - { - // NOTE: Returning latest created light to avoid crashes - light = lights[lightsCount]; - } - - return light; - } - - // Destroy a light and take it out of the list - void DestroyLight(Light light) - { - if (light != NULL) - { - int lightId = light->id; - - // Free dynamic memory allocation - free(lights[lightId]); - - // Remove *obj from the pointers array - for (int i = lightId; i < lightsCount; i++) - { - // Resort all the following pointers of the array - if ((i + 1) < lightsCount) - { - lights[i] = lights[i + 1]; - lights[i]->id = lights[i + 1]->id; - } - } - - // Decrease enabled physic objects count - lightsCount--; - } - } - - // Draw light in 3D world - void DrawLight(Light light) - { - switch (light->type) - { - case LIGHT_POINT: - { - DrawSphereWires(light->position, 0.3f*light->intensity, 8, 8, (light->enabled ? light->diffuse : GRAY)); - - DrawCircle3D(light->position, light->radius, (Vector3){ 0, 0, 0 }, 0.0f, (light->enabled ? light->diffuse : GRAY)); - DrawCircle3D(light->position, light->radius, (Vector3){ 1, 0, 0 }, 90.0f, (light->enabled ? light->diffuse : GRAY)); - DrawCircle3D(light->position, light->radius, (Vector3){ 0, 1, 0 },90.0f, (light->enabled ? light->diffuse : GRAY)); - } break; - case LIGHT_DIRECTIONAL: - { - DrawLine3D(light->position, light->target, (light->enabled ? light->diffuse : GRAY)); - - DrawSphereWires(light->position, 0.3f*light->intensity, 8, 8, (light->enabled ? light->diffuse : GRAY)); - DrawCubeWires(light->target, 0.3f, 0.3f, 0.3f, (light->enabled ? light->diffuse : GRAY)); - } break; - case LIGHT_SPOT: - { - DrawLine3D(light->position, light->target, (light->enabled ? light->diffuse : GRAY)); - - Vector3 dir = VectorSubtract(light->target, light->position); - VectorNormalize(&dir); - - DrawCircle3D(light->position, 0.5f, dir, 0.0f, (light->enabled ? light->diffuse : GRAY)); - - //DrawCylinderWires(light->position, 0.0f, 0.3f*light->coneAngle/50, 0.6f, 5, (light->enabled ? light->diffuse : GRAY)); - DrawCubeWires(light->target, 0.3f, 0.3f, 0.3f, (light->enabled ? light->diffuse : GRAY)); - } break; - default: break; - } - } - - // Get shader locations for lights (up to MAX_LIGHTS) - static void GetShaderLightsLocations(Shader shader) - { - char locName[32] = "lights[x].\0"; - char locNameUpdated[64]; - - for (int i = 0; i < MAX_LIGHTS; i++) - { - locName[7] = '0' + i; - - strcpy(locNameUpdated, locName); - strcat(locNameUpdated, "enabled\0"); - lightsLocs[i][0] = GetShaderLocation(shader, locNameUpdated); - - locNameUpdated[0] = '\0'; - strcpy(locNameUpdated, locName); - strcat(locNameUpdated, "type\0"); - lightsLocs[i][1] = GetShaderLocation(shader, locNameUpdated); - - locNameUpdated[0] = '\0'; - strcpy(locNameUpdated, locName); - strcat(locNameUpdated, "position\0"); - lightsLocs[i][2] = GetShaderLocation(shader, locNameUpdated); - - locNameUpdated[0] = '\0'; - strcpy(locNameUpdated, locName); - strcat(locNameUpdated, "direction\0"); - lightsLocs[i][3] = GetShaderLocation(shader, locNameUpdated); - - locNameUpdated[0] = '\0'; - strcpy(locNameUpdated, locName); - strcat(locNameUpdated, "radius\0"); - lightsLocs[i][4] = GetShaderLocation(shader, locNameUpdated); - - locNameUpdated[0] = '\0'; - strcpy(locNameUpdated, locName); - strcat(locNameUpdated, "diffuse\0"); - lightsLocs[i][5] = GetShaderLocation(shader, locNameUpdated); - - locNameUpdated[0] = '\0'; - strcpy(locNameUpdated, locName); - strcat(locNameUpdated, "intensity\0"); - lightsLocs[i][6] = GetShaderLocation(shader, locNameUpdated); - - locNameUpdated[0] = '\0'; - strcpy(locNameUpdated, locName); - strcat(locNameUpdated, "coneAngle\0"); - lightsLocs[i][7] = GetShaderLocation(shader, locNameUpdated); - } - } - - // Set shader uniform values for lights - // NOTE: It would be far easier with shader UBOs but are not supported on OpenGL ES 2.0 - // TODO: Replace glUniform1i(), glUniform1f(), glUniform3f(), glUniform4f(): - //SetShaderValue(Shader shader, int uniformLoc, float *value, int size) - //SetShaderValuei(Shader shader, int uniformLoc, int *value, int size) - static void SetShaderLightsValues(Shader shader) - { - int tempInt[8] = { 0 }; - float tempFloat[8] = { 0.0f }; - - for (int i = 0; i < MAX_LIGHTS; i++) - { - if (i < lightsCount) - { - tempInt[0] = lights[i]->enabled; - SetShaderValuei(shader, lightsLocs[i][0], tempInt, 1); //glUniform1i(lightsLocs[i][0], lights[i]->enabled); - - tempInt[0] = lights[i]->type; - SetShaderValuei(shader, lightsLocs[i][1], tempInt, 1); //glUniform1i(lightsLocs[i][1], lights[i]->type); - - tempFloat[0] = (float)lights[i]->diffuse.r/255.0f; - tempFloat[1] = (float)lights[i]->diffuse.g/255.0f; - tempFloat[2] = (float)lights[i]->diffuse.b/255.0f; - tempFloat[3] = (float)lights[i]->diffuse.a/255.0f; - SetShaderValue(shader, lightsLocs[i][5], tempFloat, 4); - //glUniform4f(lightsLocs[i][5], (float)lights[i]->diffuse.r/255, (float)lights[i]->diffuse.g/255, (float)lights[i]->diffuse.b/255, (float)lights[i]->diffuse.a/255); - - tempFloat[0] = lights[i]->intensity; - SetShaderValue(shader, lightsLocs[i][6], tempFloat, 1); - - switch (lights[i]->type) - { - case LIGHT_POINT: - { - tempFloat[0] = lights[i]->position.x; - tempFloat[1] = lights[i]->position.y; - tempFloat[2] = lights[i]->position.z; - SetShaderValue(shader, lightsLocs[i][2], tempFloat, 3); - - tempFloat[0] = lights[i]->radius; - SetShaderValue(shader, lightsLocs[i][4], tempFloat, 1); - - //glUniform3f(lightsLocs[i][2], lights[i]->position.x, lights[i]->position.y, lights[i]->position.z); - //glUniform1f(lightsLocs[i][4], lights[i]->radius); - } break; - case LIGHT_DIRECTIONAL: - { - Vector3 direction = VectorSubtract(lights[i]->target, lights[i]->position); - VectorNormalize(&direction); - - tempFloat[0] = direction.x; - tempFloat[1] = direction.y; - tempFloat[2] = direction.z; - SetShaderValue(shader, lightsLocs[i][3], tempFloat, 3); - - //glUniform3f(lightsLocs[i][3], direction.x, direction.y, direction.z); - } break; - case LIGHT_SPOT: - { - tempFloat[0] = lights[i]->position.x; - tempFloat[1] = lights[i]->position.y; - tempFloat[2] = lights[i]->position.z; - SetShaderValue(shader, lightsLocs[i][2], tempFloat, 3); - - //glUniform3f(lightsLocs[i][2], lights[i]->position.x, lights[i]->position.y, lights[i]->position.z); - - Vector3 direction = VectorSubtract(lights[i]->target, lights[i]->position); - VectorNormalize(&direction); - - tempFloat[0] = direction.x; - tempFloat[1] = direction.y; - tempFloat[2] = direction.z; - SetShaderValue(shader, lightsLocs[i][3], tempFloat, 3); - //glUniform3f(lightsLocs[i][3], direction.x, direction.y, direction.z); - - tempFloat[0] = lights[i]->coneAngle; - SetShaderValue(shader, lightsLocs[i][7], tempFloat, 1); - //glUniform1f(lightsLocs[i][7], lights[i]->coneAngle); - } break; - default: break; - } - } - else - { - tempInt[0] = 0; - SetShaderValuei(shader, lightsLocs[i][0], tempInt, 1); //glUniform1i(lightsLocs[i][0], 0); // Light disabled - } - } - } - - // Calculate vector length - float VectorLength(const Vector3 v) - { - float length; - - length = sqrtf(v.x*v.x + v.y*v.y + v.z*v.z); - - return length; - } - - // Normalize provided vector - void VectorNormalize(Vector3 *v) - { - float length, ilength; - - length = VectorLength(*v); - - if (length == 0.0f) length = 1.0f; - - ilength = 1.0f/length; - - v->x *= ilength; - v->y *= ilength; - v->z *= ilength; - } - - // Substract two vectors - Vector3 VectorSubtract(Vector3 v1, Vector3 v2) - { - Vector3 result; - - result.x = v1.x - v2.x; - result.y = v1.y - v2.y; - result.z = v1.z - v2.z; - - return result; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/physac/physics_demo.cs b/Examples/Examples/physac/physics_demo.cs deleted file mode 100644 index 78f5b22..0000000 --- a/Examples/Examples/physac/physics_demo.cs +++ /dev/null @@ -1,152 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * Physac - Physics demo - * - * NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations. - * NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread) - * - * Use the following line to compile: - * - * gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread - * -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition - * - * Copyright (c) 2016-2018 Victor Fisac - * - ********************************************************************************************/ - - - - #define PHYSAC_IMPLEMENTATION - #include "physac.h" - - public static int physics_demo() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); - InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics demo"); - - // Physac logo drawing position - int logoX = screenWidth - MeasureText("Physac", 30) - 10; - int logoY = 15; - bool needsReset = false; - - // Initialize physics and default physics bodies - InitPhysics(); - - // Create floor rectangle physics body - PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, 500, 100, 10); - floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions) - - // Create obstacle circle physics body - PhysicsBody circle = CreatePhysicsBodyCircle((Vector2){ screenWidth/2, screenHeight/2 }, 45, 10); - circle->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions) - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // Delay initialization of variables due to physics reset async - if (needsReset) - { - floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, 500, 100, 10); - floor->enabled = false; - - circle = CreatePhysicsBodyCircle((Vector2){ screenWidth/2, screenHeight/2 }, 45, 10); - circle->enabled = false; - } - - // Reset physics input - if (IsKeyPressed('R')) - { - ResetPhysics(); - needsReset = true; - } - - // Physics body creation inputs - if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) CreatePhysicsBodyPolygon(GetMousePosition(), GetRandomValue(20, 80), GetRandomValue(3, 8), 10); - else if (IsMouseButtonPressed(MOUSE_RIGHT_BUTTON)) CreatePhysicsBodyCircle(GetMousePosition(), GetRandomValue(10, 45), 10); - - // Destroy falling physics bodies - int bodiesCount = GetPhysicsBodiesCount(); - for (int i = bodiesCount - 1; i >= 0; i--) - { - PhysicsBody body = GetPhysicsBody(i); - if (body != NULL && (body->position.y > screenHeight*2)) DestroyPhysicsBody(body); - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(BLACK); - - DrawFPS(screenWidth - 90, screenHeight - 30); - - // Draw created physics bodies - bodiesCount = GetPhysicsBodiesCount(); - for (int i = 0; i < bodiesCount; i++) - { - PhysicsBody body = GetPhysicsBody(i); - - if (body != NULL) - { - int vertexCount = GetPhysicsShapeVerticesCount(i); - for (int j = 0; j < vertexCount; j++) - { - // Get physics bodies shape vertices to draw lines - // Note: GetPhysicsShapeVertex() already calculates rotation transformations - Vector2 vertexA = GetPhysicsShapeVertex(body, j); - - int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape - Vector2 vertexB = GetPhysicsShapeVertex(body, jj); - - DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions - } - } - } - - DrawText("Left mouse button to create a polygon", 10, 10, 10, WHITE); - DrawText("Right mouse button to create a circle", 10, 25, 10, WHITE); - DrawText("Press 'R' to reset example", 10, 40, 10, WHITE); - - DrawText("Physac", logoX, logoY, 30, WHITE); - DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - ClosePhysics(); // Unitialize physics - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - - -} \ No newline at end of file diff --git a/Examples/Examples/physac/physics_friction.cs b/Examples/Examples/physac/physics_friction.cs deleted file mode 100644 index b6bae8b..0000000 --- a/Examples/Examples/physac/physics_friction.cs +++ /dev/null @@ -1,159 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * Physac - Physics friction - * - * NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations. - * NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread) - * - * Use the following line to compile: - * - * gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread - * -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition - * - * Copyright (c) 2016-2018 Victor Fisac - * - ********************************************************************************************/ - - - - #define PHYSAC_IMPLEMENTATION - #include "physac.h" - - public static int physics_friction() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); - InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics friction"); - - // Physac logo drawing position - int logoX = screenWidth - MeasureText("Physac", 30) - 10; - int logoY = 15; - - // Initialize physics and default physics bodies - InitPhysics(); - - // Create floor rectangle physics body - PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10); - floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions) - PhysicsBody wall = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight*0.8f }, 10, 80, 10); - wall->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions) - - // Create left ramp physics body - PhysicsBody rectLeft = CreatePhysicsBodyRectangle((Vector2){ 25, screenHeight - 5 }, 250, 250, 10); - rectLeft->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions) - SetPhysicsBodyRotation(rectLeft, 30*DEG2RAD); - - // Create right ramp physics body - PhysicsBody rectRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth - 25, screenHeight - 5 }, 250, 250, 10); - rectRight->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions) - SetPhysicsBodyRotation(rectRight, 330*DEG2RAD); - - // Create dynamic physics bodies - PhysicsBody bodyA = CreatePhysicsBodyRectangle((Vector2){ 35, screenHeight*0.6f }, 40, 40, 10); - bodyA->staticFriction = 0.1f; - bodyA->dynamicFriction = 0.1f; - SetPhysicsBodyRotation(bodyA, 30*DEG2RAD); - - PhysicsBody bodyB = CreatePhysicsBodyRectangle((Vector2){ screenWidth - 35, screenHeight*0.6f }, 40, 40, 10); - bodyB->staticFriction = 1; - bodyB->dynamicFriction = 1; - SetPhysicsBodyRotation(bodyB, 330*DEG2RAD); - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyPressed('R')) // Reset physics input - { - // Reset dynamic physics bodies position, velocity and rotation - bodyA->position = (Vector2){ 35, screenHeight*0.6f }; - bodyA->velocity = (Vector2){ 0, 0 }; - bodyA->angularVelocity = 0; - SetPhysicsBodyRotation(bodyA, 30*DEG2RAD); - - bodyB->position = (Vector2){ screenWidth - 35, screenHeight*0.6f }; - bodyB->velocity = (Vector2){ 0, 0 }; - bodyB->angularVelocity = 0; - SetPhysicsBodyRotation(bodyB, 330*DEG2RAD); - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(BLACK); - - DrawFPS(screenWidth - 90, screenHeight - 30); - - // Draw created physics bodies - int bodiesCount = GetPhysicsBodiesCount(); - for (int i = 0; i < bodiesCount; i++) - { - PhysicsBody body = GetPhysicsBody(i); - - if (body != NULL) - { - int vertexCount = GetPhysicsShapeVerticesCount(i); - for (int j = 0; j < vertexCount; j++) - { - // Get physics bodies shape vertices to draw lines - // Note: GetPhysicsShapeVertex() already calculates rotation transformations - Vector2 vertexA = GetPhysicsShapeVertex(body, j); - - int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape - Vector2 vertexB = GetPhysicsShapeVertex(body, jj); - - DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions - } - } - } - - DrawRectangle(0, screenHeight - 49, screenWidth, 49, BLACK); - - DrawText("Friction amount", (screenWidth - MeasureText("Friction amount", 30))/2, 75, 30, WHITE); - DrawText("0.1", bodyA->position.x - MeasureText("0.1", 20)/2, bodyA->position.y - 7, 20, WHITE); - DrawText("1", bodyB->position.x - MeasureText("1", 20)/2, bodyB->position.y - 7, 20, WHITE); - - DrawText("Press 'R' to reset example", 10, 10, 10, WHITE); - - DrawText("Physac", logoX, logoY, 30, WHITE); - DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - ClosePhysics(); // Unitialize physics - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - - -} \ No newline at end of file diff --git a/Examples/Examples/physac/physics_movement.cs b/Examples/Examples/physac/physics_movement.cs deleted file mode 100644 index 0b3d913..0000000 --- a/Examples/Examples/physac/physics_movement.cs +++ /dev/null @@ -1,145 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * Physac - Physics movement - * - * NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations. - * NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread) - * - * Use the following line to compile: - * - * gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread - * -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition - * - * Copyright (c) 2016-2018 Victor Fisac - * - ********************************************************************************************/ - - - - #define PHYSAC_IMPLEMENTATION - #include "physac.h" - - private const int VELOCITY = 0;.5f - - public static int physics_movement() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); - InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics movement"); - - // Physac logo drawing position - int logoX = screenWidth - MeasureText("Physac", 30) - 10; - int logoY = 15; - - // Initialize physics and default physics bodies - InitPhysics(); - - // Create floor and walls rectangle physics body - PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10); - PhysicsBody platformLeft = CreatePhysicsBodyRectangle((Vector2){ screenWidth*0.25f, screenHeight*0.6f }, screenWidth*0.25f, 10, 10); - PhysicsBody platformRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth*0.75f, screenHeight*0.6f }, screenWidth*0.25f, 10, 10); - PhysicsBody wallLeft = CreatePhysicsBodyRectangle((Vector2){ -5, screenHeight/2 }, 10, screenHeight, 10); - PhysicsBody wallRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth + 5, screenHeight/2 }, 10, screenHeight, 10); - - // Disable dynamics to floor and walls physics bodies - floor->enabled = false; - platformLeft->enabled = false; - platformRight->enabled = false; - wallLeft->enabled = false; - wallRight->enabled = false; - - // Create movement physics body - PhysicsBody body = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight/2 }, 50, 50, 1); - body->freezeOrient = true; // Constrain body rotation to avoid little collision torque amounts - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyPressed('R')) // Reset physics input - { - // Reset movement physics body position, velocity and rotation - body->position = (Vector2){ screenWidth/2, screenHeight/2 }; - body->velocity = (Vector2){ 0, 0 }; - SetPhysicsBodyRotation(body, 0); - } - - // Horizontal movement input - if (IsKeyDown(KEY_RIGHT)) body->velocity.x = VELOCITY; - else if (IsKeyDown(KEY_LEFT)) body->velocity.x = -VELOCITY; - - // Vertical movement input checking if player physics body is grounded - if (IsKeyDown(KEY_UP) && body->isGrounded) body->velocity.y = -VELOCITY*4; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(BLACK); - - DrawFPS(screenWidth - 90, screenHeight - 30); - - // Draw created physics bodies - int bodiesCount = GetPhysicsBodiesCount(); - for (int i = 0; i < bodiesCount; i++) - { - PhysicsBody body = GetPhysicsBody(i); - - int vertexCount = GetPhysicsShapeVerticesCount(i); - for (int j = 0; j < vertexCount; j++) - { - // Get physics bodies shape vertices to draw lines - // Note: GetPhysicsShapeVertex() already calculates rotation transformations - Vector2 vertexA = GetPhysicsShapeVertex(body, j); - - int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape - Vector2 vertexB = GetPhysicsShapeVertex(body, jj); - - DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions - } - } - - DrawText("Use 'ARROWS' to move player", 10, 10, 10, WHITE); - DrawText("Press 'R' to reset example", 10, 30, 10, WHITE); - - DrawText("Physac", logoX, logoY, 30, WHITE); - DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - ClosePhysics(); // Unitialize physics - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - - -} \ No newline at end of file diff --git a/Examples/Examples/physac/physics_restitution.cs b/Examples/Examples/physac/physics_restitution.cs deleted file mode 100644 index 9e20557..0000000 --- a/Examples/Examples/physac/physics_restitution.cs +++ /dev/null @@ -1,138 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * Physac - Physics restitution - * - * NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations. - * NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread) - * - * Use the following line to compile: - * - * gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread - * -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition - * - * Copyright (c) 2016-2018 Victor Fisac - * - ********************************************************************************************/ - - - - #define PHYSAC_IMPLEMENTATION - #include "physac.h" - - public static int physics_restitution() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); - InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics restitution"); - - // Physac logo drawing position - int logoX = screenWidth - MeasureText("Physac", 30) - 10; - int logoY = 15; - - // Initialize physics and default physics bodies - InitPhysics(); - - // Create floor rectangle physics body - PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10); - floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions) - floor->restitution = 1; - - // Create circles physics body - PhysicsBody circleA = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.25f, screenHeight/2 }, 30, 10); - circleA->restitution = 0; - PhysicsBody circleB = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.5f, screenHeight/2 }, 30, 10); - circleB->restitution = 0.5f; - PhysicsBody circleC = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.75f, screenHeight/2 }, 30, 10); - circleC->restitution = 1; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyPressed('R')) // Reset physics input - { - // Reset circles physics bodies position and velocity - circleA->position = (Vector2){ screenWidth*0.25f, screenHeight/2 }; - circleA->velocity = (Vector2){ 0, 0 }; - circleB->position = (Vector2){ screenWidth*0.5f, screenHeight/2 }; - circleB->velocity = (Vector2){ 0, 0 }; - circleC->position = (Vector2){ screenWidth*0.75f, screenHeight/2 }; - circleC->velocity = (Vector2){ 0, 0 }; - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(BLACK); - - DrawFPS(screenWidth - 90, screenHeight - 30); - - // Draw created physics bodies - int bodiesCount = GetPhysicsBodiesCount(); - for (int i = 0; i < bodiesCount; i++) - { - PhysicsBody body = GetPhysicsBody(i); - - int vertexCount = GetPhysicsShapeVerticesCount(i); - for (int j = 0; j < vertexCount; j++) - { - // Get physics bodies shape vertices to draw lines - // Note: GetPhysicsShapeVertex() already calculates rotation transformations - Vector2 vertexA = GetPhysicsShapeVertex(body, j); - - int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape - Vector2 vertexB = GetPhysicsShapeVertex(body, jj); - - DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions - } - } - - DrawText("Restitution amount", (screenWidth - MeasureText("Restitution amount", 30))/2, 75, 30, WHITE); - DrawText("0", circleA->position.x - MeasureText("0", 20)/2, circleA->position.y - 7, 20, WHITE); - DrawText("0.5", circleB->position.x - MeasureText("0.5", 20)/2, circleB->position.y - 7, 20, WHITE); - DrawText("1", circleC->position.x - MeasureText("1", 20)/2, circleC->position.y - 7, 20, WHITE); - - DrawText("Press 'R' to reset example", 10, 10, 10, WHITE); - - DrawText("Physac", logoX, logoY, 30, WHITE); - DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - ClosePhysics(); // Unitialize physics - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - - -} \ No newline at end of file diff --git a/Examples/Examples/physac/physics_shatter.cs b/Examples/Examples/physac/physics_shatter.cs deleted file mode 100644 index 9dbb89b..0000000 --- a/Examples/Examples/physac/physics_shatter.cs +++ /dev/null @@ -1,136 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * Physac - Body shatter - * - * NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations. - * NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread) - * - * Use the following line to compile: - * - * gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread - * -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition - * - * Copyright (c) 2016-2018 Victor Fisac - * - ********************************************************************************************/ - - - - #define PHYSAC_IMPLEMENTATION - #include "physac.h" - - public static int physics_shatter() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); - InitWindow(screenWidth, screenHeight, "Physac [raylib] - Body shatter"); - - // Physac logo drawing position - int logoX = screenWidth - MeasureText("Physac", 30) - 10; - int logoY = 15; - bool needsReset = false; - - // Initialize physics and default physics bodies - InitPhysics(); - SetPhysicsGravity(0, 0); - - // Create random polygon physics body to shatter - CreatePhysicsBodyPolygon((Vector2){ screenWidth/2, screenHeight/2 }, GetRandomValue(80, 200), GetRandomValue(3, 8), 10); - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // Delay initialization of variables due to physics reset asynchronous - if (needsReset) - { - // Create random polygon physics body to shatter - CreatePhysicsBodyPolygon((Vector2){ screenWidth/2, screenHeight/2 }, GetRandomValue(80, 200), GetRandomValue(3, 8), 10); - } - - if (IsKeyPressed('R')) // Reset physics input - { - ResetPhysics(); - needsReset = true; - } - - if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) // Physics shatter input - { - // Note: some values need to be stored in variables due to asynchronous changes during main thread - int count = GetPhysicsBodiesCount(); - for (int i = count - 1; i >= 0; i--) - { - PhysicsBody currentBody = GetPhysicsBody(i); - if (currentBody != NULL) PhysicsShatter(currentBody, GetMousePosition(), 10/currentBody->inverseMass); - } - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(BLACK); - - // Draw created physics bodies - int bodiesCount = GetPhysicsBodiesCount(); - for (int i = 0; i < bodiesCount; i++) - { - PhysicsBody currentBody = GetPhysicsBody(i); - - int vertexCount = GetPhysicsShapeVerticesCount(i); - for (int j = 0; j < vertexCount; j++) - { - // Get physics bodies shape vertices to draw lines - // Note: GetPhysicsShapeVertex() already calculates rotation transformations - Vector2 vertexA = GetPhysicsShapeVertex(currentBody, j); - - int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape - Vector2 vertexB = GetPhysicsShapeVertex(currentBody, jj); - - DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions - } - } - - DrawText("Left mouse button in polygon area to shatter body\nPress 'R' to reset example", 10, 10, 10, WHITE); - - DrawText("Physac", logoX, logoY, 30, WHITE); - DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - ClosePhysics(); // Unitialize physics - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - - -} \ No newline at end of file diff --git a/Examples/Examples/shaders/shaders_custom_uniform.cs b/Examples/Examples/shaders/shaders_custom_uniform.cs deleted file mode 100644 index 1860b7c..0000000 --- a/Examples/Examples/shaders/shaders_custom_uniform.cs +++ /dev/null @@ -1,140 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shaders] example - Apply a postprocessing shader and connect a custom uniform variable - * - * NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support, - * OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version. - * - * NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example - * on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders - * raylib comes with shaders ready for both versions, check raylib/shaders install folder - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int shaders_custom_uniform() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available) - - InitWindow(screenWidth, screenHeight, "raylib [shaders] example - custom uniform variable"); - - // Define the camera to look into our 3d world - Camera camera = { 0 }; - camera.position = (Vector3){ 8.0f, 8.0f, 8.0f }; - camera.target = (Vector3){ 0.0f, 1.5f, 0.0f }; - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; - camera.fovy = 45.0f; - camera.type = CAMERA_PERSPECTIVE; - - Model model = LoadModel("resources/models/barracks.obj"); // Load OBJ model - Texture2D texture = LoadTexture("resources/models/barracks_diffuse.png"); // Load model texture (diffuse map) - model.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture - - Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position - - Shader shader = LoadShader("resources/shaders/glsl330/base.vs", - "resources/shaders/glsl330/swirl.fs"); // Load postpro shader - - // Get variable (uniform) location on the shader to connect with the program - // NOTE: If uniform variable could not be found in the shader, function returns -1 - int swirlCenterLoc = GetShaderLocation(shader, "center"); - - float swirlCenter[2] = { (float)screenWidth/2, (float)screenHeight/2 }; - - // Create a RenderTexture2D to be used for render to texture - RenderTexture2D target = LoadRenderTexture(screenWidth, screenHeight); - - // Setup orbital camera - SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - Vector2 mousePosition = GetMousePosition(); - - swirlCenter[0] = mousePosition.x; - swirlCenter[1] = screenHeight - mousePosition.y; - - // Send new value to the shader to be used on drawing - SetShaderValue(shader, swirlCenterLoc, swirlCenter, 2); - - UpdateCamera(&camera); // Update camera - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginTextureMode(target); // Enable drawing to texture - - BeginMode3D(camera); - - DrawModel(model, position, 0.5f, WHITE); // Draw 3d model with texture - - DrawGrid(10, 1.0f); // Draw a grid - - EndMode3D(); - - DrawText("TEXT DRAWN IN RENDER TEXTURE", 200, 10, 30, RED); - - EndTextureMode(); // End drawing to texture (now we have a texture available for next passes) - - BeginShaderMode(shader); - - // NOTE: Render texture must be y-flipped due to default OpenGL coordinates (left-bottom) - DrawTextureRec(target.texture, (Rectangle){ 0, 0, target.texture.width, -target.texture.height }, (Vector2){ 0, 0 }, WHITE); - - EndShaderMode(); - - DrawText("(c) Barracks 3D model by Alberto Cano", screenWidth - 220, screenHeight - 20, 10, GRAY); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadShader(shader); // Unload shader - UnloadTexture(texture); // Unload texture - UnloadModel(model); // Unload model - UnloadRenderTexture(target); // Unload render texture - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/shaders/shaders_model_shader.cs b/Examples/Examples/shaders/shaders_model_shader.cs deleted file mode 100644 index 8a3b991..0000000 --- a/Examples/Examples/shaders/shaders_model_shader.cs +++ /dev/null @@ -1,112 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shaders] example - Apply a shader to a 3d model - * - * NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support, - * OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version. - * - * NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example - * on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders - * raylib comes with shaders ready for both versions, check raylib/shaders install folder - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int shaders_model_shader() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available) - - InitWindow(screenWidth, screenHeight, "raylib [shaders] example - model shader"); - - // Define the camera to look into our 3d world - Camera camera = { 0 }; - camera.position = (Vector3){ 4.0f, 4.0f, 4.0f }; - camera.target = (Vector3){ 0.0f, 1.0f, -1.0f }; - camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; - camera.fovy = 45.0f; - camera.type = CAMERA_PERSPECTIVE; - - Model model = LoadModel("resources/models/watermill.obj"); // Load OBJ model - Texture2D texture = LoadTexture("resources/models/watermill_diffuse.png"); // Load model texture - Shader shader = LoadShader("resources/shaders/glsl330/base.vs", - "resources/shaders/glsl330/grayscale.fs"); // Load model shader - - model.material.shader = shader; // Set shader effect to 3d model - model.material.maps[MAP_DIFFUSE].texture = texture; // Bind texture to model - - Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position - - SetCameraMode(camera, CAMERA_FREE); // Set an orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginMode3D(camera); - - DrawModel(model, position, 0.2f, WHITE); // Draw 3d model with texture - - DrawGrid(10, 1.0f); // Draw a grid - - EndMode3D(); - - DrawText("(c) Watermill 3D model by Alberto Cano", screenWidth - 210, screenHeight - 20, 10, GRAY); - - DrawText(FormatText("Camera position: (%.2f, %.2f, %.2f)", camera.position.x, camera.position.y, camera.position.z), 600, 20, 10, BLACK); - DrawText(FormatText("Camera target: (%.2f, %.2f, %.2f)", camera.target.x, camera.target.y, camera.target.z), 600, 40, 10, GRAY); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadShader(shader); // Unload shader - UnloadTexture(texture); // Unload texture - UnloadModel(model); // Unload model - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/shaders/shaders_postprocessing.cs b/Examples/Examples/shaders/shaders_postprocessing.cs deleted file mode 100644 index da59117..0000000 --- a/Examples/Examples/shaders/shaders_postprocessing.cs +++ /dev/null @@ -1,194 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shaders] example - Apply a postprocessing shader to a scene - * - * NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support, - * OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version. - * - * NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example - * on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders - * raylib comes with shaders ready for both versions, check raylib/shaders install folder - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - #if defined(PLATFORM_DESKTOP) - private const int GLSL_VERSION = 330; - #else // PLATFORM_RPI, PLATFORM_ANDROID, PLATFORM_WEB - private const int GLSL_VERSION = 100; - #endif - - private const int MAX_POSTPRO_SHADERS = 12; - - typedef enum { - FX_GRAYSCALE = 0, - FX_POSTERIZATION, - FX_DREAM_VISION, - FX_PIXELIZER, - FX_CROSS_HATCHING, - FX_CROSS_STITCHING, - FX_PREDATOR_VIEW, - FX_SCANLINES, - FX_FISHEYE, - FX_SOBEL, - FX_BLOOM, - FX_BLUR, - //FX_FXAA - } PostproShader; - - static const char *postproShaderText[] = { - "GRAYSCALE", - "POSTERIZATION", - "DREAM_VISION", - "PIXELIZER", - "CROSS_HATCHING", - "CROSS_STITCHING", - "PREDATOR_VIEW", - "SCANLINES", - "FISHEYE", - "SOBEL", - "BLOOM", - "BLUR", - //"FXAA" - }; - - public static int shaders_postprocessing() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available) - - InitWindow(screenWidth, screenHeight, "raylib [shaders] example - postprocessing shader"); - - // Define the camera to look into our 3d world - Camera camera = {{ 2.0f, 3.0f, 2.0f }, { 0.0f, 1.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 }; - - Model model = LoadModel("resources/models/church.obj"); // Load OBJ model - Texture2D texture = LoadTexture("resources/models/church_diffuse.png"); // Load model texture (diffuse map) - model.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture - - Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position - - // Load all postpro shaders - // NOTE 1: All postpro shader use the base vertex shader (DEFAULT_VERTEX_SHADER) - // NOTE 2: We load the correct shader depending on GLSL version - Shader shaders[MAX_POSTPRO_SHADERS]; - - // NOTE: Defining 0 (NULL) for vertex shader forces usage of internal default vertex shader - shaders[FX_GRAYSCALE] = LoadShader(0, FormatText("resources/shaders/glsl%i/grayscale.fs", GLSL_VERSION)); - shaders[FX_POSTERIZATION] = LoadShader(0, FormatText("resources/shaders/glsl%i/posterization.fs", GLSL_VERSION)); - shaders[FX_DREAM_VISION] = LoadShader(0, FormatText("resources/shaders/glsl%i/dream_vision.fs", GLSL_VERSION)); - shaders[FX_PIXELIZER] = LoadShader(0, FormatText("resources/shaders/glsl%i/pixelizer.fs", GLSL_VERSION)); - shaders[FX_CROSS_HATCHING] = LoadShader(0, FormatText("resources/shaders/glsl%i/cross_hatching.fs", GLSL_VERSION)); - shaders[FX_CROSS_STITCHING] = LoadShader(0, FormatText("resources/shaders/glsl%i/cross_stitching.fs", GLSL_VERSION)); - shaders[FX_PREDATOR_VIEW] = LoadShader(0, FormatText("resources/shaders/glsl%i/predator.fs", GLSL_VERSION)); - shaders[FX_SCANLINES] = LoadShader(0, FormatText("resources/shaders/glsl%i/scanlines.fs", GLSL_VERSION)); - shaders[FX_FISHEYE] = LoadShader(0, FormatText("resources/shaders/glsl%i/fisheye.fs", GLSL_VERSION)); - shaders[FX_SOBEL] = LoadShader(0, FormatText("resources/shaders/glsl%i/sobel.fs", GLSL_VERSION)); - shaders[FX_BLOOM] = LoadShader(0, FormatText("resources/shaders/glsl%i/bloom.fs", GLSL_VERSION)); - shaders[FX_BLUR] = LoadShader(0, FormatText("resources/shaders/glsl%i/blur.fs", GLSL_VERSION)); - - int currentShader = FX_GRAYSCALE; - - // Create a RenderTexture2D to be used for render to texture - RenderTexture2D target = LoadRenderTexture(screenWidth, screenHeight); - - // Setup orbital camera - SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera - - if (IsKeyPressed(KEY_RIGHT)) currentShader++; - else if (IsKeyPressed(KEY_LEFT)) currentShader--; - - if (currentShader >= MAX_POSTPRO_SHADERS) currentShader = 0; - else if (currentShader < 0) currentShader = MAX_POSTPRO_SHADERS - 1; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - BeginTextureMode(target); // Enable drawing to texture - - BeginMode3D(camera); - - DrawModel(model, position, 0.1f, WHITE); // Draw 3d model with texture - - DrawGrid(10, 1.0f); // Draw a grid - - EndMode3D(); - - EndTextureMode(); // End drawing to texture (now we have a texture available for next passes) - - // Render previously generated texture using selected postpro shader - BeginShaderMode(shaders[currentShader]); - - // NOTE: Render texture must be y-flipped due to default OpenGL coordinates (left-bottom) - DrawTextureRec(target.texture, (Rectangle){ 0, 0, target.texture.width, -target.texture.height }, (Vector2){ 0, 0 }, WHITE); - - EndShaderMode(); - - DrawRectangle(0, 9, 580, 30, Fade(LIGHTGRAY, 0.7f)); - - DrawText("(c) Church 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY); - - DrawText("CURRENT POSTPRO SHADER:", 10, 15, 20, BLACK); - DrawText(postproShaderText[currentShader], 330, 15, 20, RED); - DrawText("< >", 540, 10, 30, DARKBLUE); - - DrawFPS(700, 15); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - - // Unload all postpro shaders - for (int i = 0; i < MAX_POSTPRO_SHADERS; i++) UnloadShader(shaders[i]); - - UnloadTexture(texture); // Unload texture - UnloadModel(model); // Unload model - UnloadRenderTexture(target); // Unload render texture - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/shaders/shaders_shapes_textures.cs b/Examples/Examples/shaders/shaders_shapes_textures.cs deleted file mode 100644 index 5ae9abd..0000000 --- a/Examples/Examples/shaders/shaders_shapes_textures.cs +++ /dev/null @@ -1,123 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shaders] example - Apply a shader to some shape or texture - * - * NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support, - * OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version. - * - * NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example - * on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders - * raylib comes with shaders ready for both versions, check raylib/shaders install folder - * - * This example has been created using raylib 1.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int shaders_shapes_textures() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [shaders] example - shapes and texture shaders"); - - Texture2D fudesumi = LoadTexture("resources/fudesumi.png"); - - // NOTE: Using GLSL 330 shader version, on OpenGL ES 2.0 use GLSL 100 shader version - Shader shader = LoadShader("resources/shaders/glsl330/base.vs", - "resources/shaders/glsl330/grayscale.fs"); - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - // Start drawing with default shader - - DrawText("USING DEFAULT SHADER", 20, 40, 10, RED); - - DrawCircle(80, 120, 35, DARKBLUE); - DrawCircleGradient(80, 220, 60, GREEN, SKYBLUE); - DrawCircleLines(80, 340, 80, DARKBLUE); - - - // Activate our custom shader to be applied on next shapes/textures drawings - BeginShaderMode(shader); - - DrawText("USING CUSTOM SHADER", 190, 40, 10, RED); - - DrawRectangle(250 - 60, 90, 120, 60, RED); - DrawRectangleGradientH(250 - 90, 170, 180, 130, MAROON, GOLD); - DrawRectangleLines(250 - 40, 320, 80, 60, ORANGE); - - // Activate our default shader for next drawings - EndShaderMode(); - - DrawText("USING DEFAULT SHADER", 370, 40, 10, RED); - - DrawTriangle((Vector2){430, 80}, - (Vector2){430 - 60, 150}, - (Vector2){430 + 60, 150}, VIOLET); - - DrawTriangleLines((Vector2){430, 160}, - (Vector2){430 - 20, 230}, - (Vector2){430 + 20, 230}, DARKBLUE); - - DrawPoly((Vector2){430, 320}, 6, 80, 0, BROWN); - - // Activate our custom shader to be applied on next shapes/textures drawings - BeginShaderMode(shader); - - DrawTexture(fudesumi, 500, -30, WHITE); // Using custom shader - - // Activate our default shader for next drawings - EndShaderMode(); - - DrawText("(c) Fudesumi sprite by Eiden Marsal", 380, screenHeight - 20, 10, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadShader(shader); // Unload shader - UnloadTexture(fudesumi); // Unload texture - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/shapes/shapes_basic_shapes.cs b/Examples/Examples/shapes/shapes_basic_shapes.cs deleted file mode 100644 index ab32cea..0000000 --- a/Examples/Examples/shapes/shapes_basic_shapes.cs +++ /dev/null @@ -1,86 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shapes] example - Draw basic shapes 2d (rectangle, circle, line...) - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int shapes_basic_shapes() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [shapes] example - basic shapes drawing"); - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("some basic shapes available on raylib", 20, 20, 20, DARKGRAY); - - DrawLine(18, 42, screenWidth - 18, 42, BLACK); - - DrawCircle(screenWidth/4, 120, 35, DARKBLUE); - DrawCircleGradient(screenWidth/4, 220, 60, GREEN, SKYBLUE); - DrawCircleLines(screenWidth/4, 340, 80, DARKBLUE); - - DrawRectangle(screenWidth/4*2 - 60, 100, 120, 60, RED); - DrawRectangleGradientH(screenWidth/4*2 - 90, 170, 180, 130, MAROON, GOLD); - DrawRectangleLines(screenWidth/4*2 - 40, 320, 80, 60, ORANGE); - - DrawTriangle((Vector2){screenWidth/4*3, 80}, - (Vector2){screenWidth/4*3 - 60, 150}, - (Vector2){screenWidth/4*3 + 60, 150}, VIOLET); - - DrawTriangleLines((Vector2){screenWidth/4*3, 160}, - (Vector2){screenWidth/4*3 - 20, 230}, - (Vector2){screenWidth/4*3 + 20, 230}, DARKBLUE); - - DrawPoly((Vector2){screenWidth/4*3, 320}, 6, 80, 0, BROWN); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/shapes/shapes_colors_palette.cs b/Examples/Examples/shapes/shapes_colors_palette.cs deleted file mode 100644 index 00cd741..0000000 --- a/Examples/Examples/shapes/shapes_colors_palette.cs +++ /dev/null @@ -1,111 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shapes] example - Draw raylib custom color palette - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int shapes_colors_palette() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib color palette"); - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("raylib color palette", 28, 42, 20, BLACK); - - DrawRectangle(26, 80, 100, 100, DARKGRAY); - DrawRectangle(26, 188, 100, 100, GRAY); - DrawRectangle(26, 296, 100, 100, LIGHTGRAY); - DrawRectangle(134, 80, 100, 100, MAROON); - DrawRectangle(134, 188, 100, 100, RED); - DrawRectangle(134, 296, 100, 100, PINK); - DrawRectangle(242, 80, 100, 100, ORANGE); - DrawRectangle(242, 188, 100, 100, GOLD); - DrawRectangle(242, 296, 100, 100, YELLOW); - DrawRectangle(350, 80, 100, 100, DARKGREEN); - DrawRectangle(350, 188, 100, 100, LIME); - DrawRectangle(350, 296, 100, 100, GREEN); - DrawRectangle(458, 80, 100, 100, DARKBLUE); - DrawRectangle(458, 188, 100, 100, BLUE); - DrawRectangle(458, 296, 100, 100, SKYBLUE); - DrawRectangle(566, 80, 100, 100, DARKPURPLE); - DrawRectangle(566, 188, 100, 100, VIOLET); - DrawRectangle(566, 296, 100, 100, PURPLE); - DrawRectangle(674, 80, 100, 100, DARKBROWN); - DrawRectangle(674, 188, 100, 100, BROWN); - DrawRectangle(674, 296, 100, 100, BEIGE); - - - DrawText("DARKGRAY", 65, 166, 10, BLACK); - DrawText("GRAY", 93, 274, 10, BLACK); - DrawText("LIGHTGRAY", 61, 382, 10, BLACK); - DrawText("MAROON", 186, 166, 10, BLACK); - DrawText("RED", 208, 274, 10, BLACK); - DrawText("PINK", 204, 382, 10, BLACK); - DrawText("ORANGE", 295, 166, 10, BLACK); - DrawText("GOLD", 310, 274, 10, BLACK); - DrawText("YELLOW", 300, 382, 10, BLACK); - DrawText("DARKGREEN", 382, 166, 10, BLACK); - DrawText("LIME", 420, 274, 10, BLACK); - DrawText("GREEN", 410, 382, 10, BLACK); - DrawText("DARKBLUE", 498, 166, 10, BLACK); - DrawText("BLUE", 526, 274, 10, BLACK); - DrawText("SKYBLUE", 505, 382, 10, BLACK); - DrawText("DARKPURPLE", 592, 166, 10, BLACK); - DrawText("VIOLET", 621, 274, 10, BLACK); - DrawText("PURPLE", 620, 382, 10, BLACK); - DrawText("DARKBROWN", 705, 166, 10, BLACK); - DrawText("BROWN", 733, 274, 10, BLACK); - DrawText("BEIGE", 737, 382, 10, BLACK); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/shapes/shapes_lines_bezier.cs b/Examples/Examples/shapes/shapes_lines_bezier.cs deleted file mode 100644 index 8d4557e..0000000 --- a/Examples/Examples/shapes/shapes_lines_bezier.cs +++ /dev/null @@ -1,74 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shapes] example - Cubic-bezier lines - * - * This example has been created using raylib 1.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int shapes_lines_bezier() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - SetConfigFlags(FLAG_MSAA_4X_HINT); - InitWindow(screenWidth, screenHeight, "raylib [shapes] example - cubic-bezier lines"); - - Vector2 start = { 0, 0 }; - Vector2 end = { screenWidth, screenHeight }; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) start = GetMousePosition(); - else if (IsMouseButtonDown(MOUSE_RIGHT_BUTTON)) end = GetMousePosition(); - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("USE MOUSE LEFT-RIGHT CLICK to DEFINE LINE START and END POINTS", 15, 20, 20, GRAY); - - DrawLineBezier(start, end, 2.0f, RED); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/shapes/shapes_logo_raylib.cs b/Examples/Examples/shapes/shapes_logo_raylib.cs deleted file mode 100644 index 00170ba..0000000 --- a/Examples/Examples/shapes/shapes_logo_raylib.cs +++ /dev/null @@ -1,70 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shapes] example - Draw raylib logo using basic shapes - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int shapes_logo_raylib() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib logo using shapes"); - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawRectangle(screenWidth/2 - 128, screenHeight/2 - 128, 256, 256, BLACK); - DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, RAYWHITE); - DrawText("raylib", screenWidth/2 - 44, screenHeight/2 + 48, 50, BLACK); - - DrawText("this is NOT a texture!", 350, 370, 10, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/shapes/shapes_logo_raylib_anim.cs b/Examples/Examples/shapes/shapes_logo_raylib_anim.cs deleted file mode 100644 index 6dd5655..0000000 --- a/Examples/Examples/shapes/shapes_logo_raylib_anim.cs +++ /dev/null @@ -1,174 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [shapes] example - raylib logo animation - * - * This example has been created using raylib 1.4 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int shapes_logo_raylib_anim() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib logo animation"); - - int logoPositionX = screenWidth/2 - 128; - int logoPositionY = screenHeight/2 - 128; - - int framesCounter = 0; - int lettersCount = 0; - - int topSideRecWidth = 16; - int leftSideRecHeight = 16; - - int bottomSideRecWidth = 16; - int rightSideRecHeight = 16; - - int state = 0; // Tracking animation states (State Machine) - float alpha = 1.0f; // Useful for fading - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (state == 0) // State 0: Small box blinking - { - framesCounter++; - - if (framesCounter == 120) - { - state = 1; - framesCounter = 0; // Reset counter... will be used later... - } - } - else if (state == 1) // State 1: Top and left bars growing - { - topSideRecWidth += 4; - leftSideRecHeight += 4; - - if (topSideRecWidth == 256) state = 2; - } - else if (state == 2) // State 2: Bottom and right bars growing - { - bottomSideRecWidth += 4; - rightSideRecHeight += 4; - - if (bottomSideRecWidth == 256) state = 3; - } - else if (state == 3) // State 3: Letters appearing (one by one) - { - framesCounter++; - - if (framesCounter/12) // Every 12 frames, one more letter! - { - lettersCount++; - framesCounter = 0; - } - - if (lettersCount >= 10) // When all letters have appeared, just fade out everything - { - alpha -= 0.02f; - - if (alpha <= 0.0f) - { - alpha = 0.0f; - state = 4; - } - } - } - else if (state == 4) // State 4: Reset and Replay - { - if (IsKeyPressed('R')) - { - framesCounter = 0; - lettersCount = 0; - - topSideRecWidth = 16; - leftSideRecHeight = 16; - - bottomSideRecWidth = 16; - rightSideRecHeight = 16; - - alpha = 1.0f; - state = 0; // Return to State 0 - } - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - if (state == 0) - { - if ((framesCounter/15)%2) DrawRectangle(logoPositionX, logoPositionY, 16, 16, BLACK); - } - else if (state == 1) - { - DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, BLACK); - DrawRectangle(logoPositionX, logoPositionY, 16, leftSideRecHeight, BLACK); - } - else if (state == 2) - { - DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, BLACK); - DrawRectangle(logoPositionX, logoPositionY, 16, leftSideRecHeight, BLACK); - - DrawRectangle(logoPositionX + 240, logoPositionY, 16, rightSideRecHeight, BLACK); - DrawRectangle(logoPositionX, logoPositionY + 240, bottomSideRecWidth, 16, BLACK); - } - else if (state == 3) - { - DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, Fade(BLACK, alpha)); - DrawRectangle(logoPositionX, logoPositionY + 16, 16, leftSideRecHeight - 32, Fade(BLACK, alpha)); - - DrawRectangle(logoPositionX + 240, logoPositionY + 16, 16, rightSideRecHeight - 32, Fade(BLACK, alpha)); - DrawRectangle(logoPositionX, logoPositionY + 240, bottomSideRecWidth, 16, Fade(BLACK, alpha)); - - DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, Fade(RAYWHITE, alpha)); - - DrawText(SubText("raylib", 0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha)); - } - else if (state == 4) - { - DrawText("[R] REPLAY", 340, 200, 20, GRAY); - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_bmfont_ttf.cs b/Examples/Examples/text/text_bmfont_ttf.cs deleted file mode 100644 index 563354e..0000000 --- a/Examples/Examples/text/text_bmfont_ttf.cs +++ /dev/null @@ -1,82 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - BMFont and TTF Fonts loading - * - * This example has been created using raylib 1.4 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int text_bmfont_ttf() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - bmfont and ttf sprite fonts loading"); - - const char msgBm[64] = "THIS IS AN AngelCode SPRITE FONT"; - const char msgTtf[64] = "THIS SPRITE FONT has been GENERATED from a TTF"; - - // NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required) - Font fontBm = LoadFont("resources/bmfont.fnt"); // BMFont (AngelCode) - Font fontTtf = LoadFont("resources/pixantiqua.ttf"); // TTF font - - Vector2 fontPosition; - - fontPosition.x = screenWidth/2 - MeasureTextEx(fontBm, msgBm, fontBm.baseSize, 0).x/2; - fontPosition.y = screenHeight/2 - fontBm.baseSize/2 - 80; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update variables here... - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTextEx(fontBm, msgBm, fontPosition, fontBm.baseSize, 0, MAROON); - DrawTextEx(fontTtf, msgTtf, (Vector2){ 75.0f, 240.0f }, fontTtf.baseSize*0.8f, 2, LIME); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadFont(fontBm); // AngelCode Font unloading - UnloadFont(fontTtf); // TTF Font unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_bmfont_unordered.cs b/Examples/Examples/text/text_bmfont_unordered.cs deleted file mode 100644 index 33113b8..0000000 --- a/Examples/Examples/text/text_bmfont_unordered.cs +++ /dev/null @@ -1,79 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - BMFont unordered chars loading and drawing - * - * This example has been created using raylib 1.4 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int text_bmfont_unordered() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - bmfont unordered loading and drawing"); - - // NOTE: Using chars outside the [32..127] limits! - // NOTE: If a character is not found in the font, it just renders a space - const char msg[256] = "ASCII extended characters:\n¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆ\nÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæ\nçèéêëìíîïðñòóôõö÷øùúûüýþÿ"; - - // NOTE: Loaded font has an unordered list of characters (chars in the range 32..255) - Font font = LoadFont("resources/pixantiqua.fnt"); // BMFont (AngelCode) - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update variables here... - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("Font name: PixAntiqua", 40, 50, 20, GRAY); - DrawText(FormatText("Font base size: %i", font.baseSize), 40, 80, 20, GRAY); - DrawText(FormatText("Font chars number: %i", font.charsCount), 40, 110, 20, GRAY); - - DrawTextEx(font, msg, (Vector2){ 40, 180 }, font.baseSize, 0, MAROON); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadFont(font); // AngelCode Font unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_font_sdf.cs b/Examples/Examples/text/text_font_sdf.cs deleted file mode 100644 index 8a6bbc0..0000000 --- a/Examples/Examples/text/text_font_sdf.cs +++ /dev/null @@ -1,140 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - TTF loading and usage - * - * This example has been created using raylib 1.3.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int text_font_sdf() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - SDF fonts"); - - // NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required) - - const char msg[50] = "Signed Distance Fields"; - - // Default font generation from TTF font - Font fontDefault = { 0 }; - fontDefault.baseSize = 16; - fontDefault.charsCount = 95; - // Parameters > font size: 16, no chars array provided (0), chars count: 95 (autogenerate chars array) - fontDefault.chars = LoadFontData("resources/AnonymousPro-Bold.ttf", 16, 0, 95, false); - // Parameters > chars count: 95, font size: 16, chars padding in image: 4 px, pack method: 0 (default) - Image atlas = GenImageFontAtlas(fontDefault.chars, 95, 16, 4, 0); - fontDefault.texture = LoadTextureFromImage(atlas); - UnloadImage(atlas); - - // SDF font generation from TTF font - // NOTE: SDF chars data is generated with LoadFontData(), it's just a bool option - Font fontSDF = { 0 }; - fontSDF.baseSize = 16; - fontSDF.charsCount = 95; - // Parameters > font size: 16, no chars array provided (0), chars count: 0 (defaults to 95) - fontSDF.chars = LoadFontData("resources/AnonymousPro-Bold.ttf", 16, 0, 0, true); - // Parameters > chars count: 95, font size: 16, chars padding in image: 0 px, pack method: 1 (Skyline algorythm) - atlas = GenImageFontAtlas(fontSDF.chars, 95, 16, 0, 1); - fontSDF.texture = LoadTextureFromImage(atlas); - UnloadImage(atlas); - - // Load SDF required shader (we use default vertex shader) - Shader shader = LoadShader(0, "resources/shaders/sdf.fs"); - SetTextureFilter(fontSDF.texture, FILTER_BILINEAR); // Required for SDF font - - Vector2 fontPosition = { 40, screenHeight/2 - 50 }; - Vector2 textSize = { 0.0f }; - float fontSize = 16.0f; - int currentFont = 0; // 0 - fontDefault, 1 - fontSDF - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - fontSize += GetMouseWheelMove()*8.0f; - - if (fontSize < 6) fontSize = 6; - - if (IsKeyDown(KEY_SPACE)) currentFont = 1; - else currentFont = 0; - - if (currentFont == 0) textSize = MeasureTextEx(fontDefault, msg, fontSize, 0); - else textSize = MeasureTextEx(fontSDF, msg, fontSize, 0); - - fontPosition.x = GetScreenWidth()/2 - textSize.x/2; - fontPosition.y = GetScreenHeight()/2 - textSize.y/2 + 80; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - if (currentFont == 1) - { - // NOTE: SDF fonts require a custom SDf shader to compute fragment color - BeginShaderMode(shader); // Activate SDF font shader - DrawTextEx(fontSDF, msg, fontPosition, fontSize, 0, BLACK); - EndShaderMode(); // Activate our default shader for next drawings - - DrawTexture(fontSDF.texture, 10, 10, BLACK); - } - else - { - DrawTextEx(fontDefault, msg, fontPosition, fontSize, 0, BLACK); - DrawTexture(fontDefault.texture, 10, 10, BLACK); - } - - if (currentFont == 1) DrawText("SDF!", 320, 20, 80, RED); - else DrawText("default font", 315, 40, 30, GRAY); - - DrawText("FONT SIZE: 16.0", GetScreenWidth() - 240, 20, 20, DARKGRAY); - DrawText(FormatText("RENDER SIZE: %02.02f", fontSize), GetScreenWidth() - 240, 50, 20, DARKGRAY); - DrawText("Use MOUSE WHEEL to SCALE TEXT!", GetScreenWidth() - 240, 90, 10, DARKGRAY); - - DrawText("PRESS SPACE to USE SDF FONT VERSION!", 340, GetScreenHeight() - 30, 20, MAROON); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadFont(fontDefault); // Default font unloading - UnloadFont(fontSDF); // SDF font unloading - - UnloadShader(shader); // Unload SDF shader - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_format_text.cs b/Examples/Examples/text/text_format_text.cs deleted file mode 100644 index 6d733fe..0000000 --- a/Examples/Examples/text/text_format_text.cs +++ /dev/null @@ -1,76 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - Text formatting - * - * This example has been created using raylib 1.1 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int text_format_text() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - text formatting"); - - int score = 100020; - int hiscore = 200450; - int lives = 5; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText(FormatText("Score: %08i", score), 200, 80, 20, RED); - - DrawText(FormatText("HiScore: %08i", hiscore), 200, 120, 20, GREEN); - - DrawText(FormatText("Lives: %02i", lives), 200, 160, 40, BLUE); - - DrawText(FormatText("Elapsed Time: %02.02f ms", GetFrameTime()*1000), 200, 220, 20, BLACK); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_input_box.cs b/Examples/Examples/text/text_input_box.cs deleted file mode 100644 index 9aa594a..0000000 --- a/Examples/Examples/text/text_input_box.cs +++ /dev/null @@ -1,130 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - Input Box - * - * This example has been created using raylib 1.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - private const int MAX_INPUT_CHARS = 9; - - public static int text_input_box() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - input box"); - - char name[MAX_INPUT_CHARS + 1] = "\0"; // NOTE: One extra space required for line ending char '\0' - int letterCount = 0; - - Rectangle textBox = { screenWidth/2 - 100, 180, 225, 50 }; - bool mouseOnText = false; - - int framesCounter = 0; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (CheckCollisionPointRec(GetMousePosition(), textBox)) mouseOnText = true; - else mouseOnText = false; - - if (mouseOnText) - { - int key = GetKeyPressed(); - - // NOTE: Only allow keys in range [32..125] - if ((key >= 32) && (key <= 125) && (letterCount < MAX_INPUT_CHARS)) - { - name[letterCount] = (char)key; - letterCount++; - } - - if (IsKeyPressed(KEY_BACKSPACE)) - { - letterCount--; - name[letterCount] = '\0'; - - if (letterCount < 0) letterCount = 0; - } - } - - if (mouseOnText) framesCounter++; - else framesCounter = 0; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("PLACE MOUSE OVER INPUT BOX!", 240, 140, 20, GRAY); - - DrawRectangleRec(textBox, LIGHTGRAY); - if (mouseOnText) DrawRectangleLines(textBox.x, textBox.y, textBox.width, textBox.height, RED); - else DrawRectangleLines(textBox.x, textBox.y, textBox.width, textBox.height, DARKGRAY); - - DrawText(name, textBox.x + 5, textBox.y + 8, 40, MAROON); - - DrawText(FormatText("INPUT CHARS: %i/%i", letterCount, MAX_INPUT_CHARS), 315, 250, 20, DARKGRAY); - - if (mouseOnText) - { - if (letterCount < MAX_INPUT_CHARS) - { - // Draw blinking underscore char - if (((framesCounter/20)%2) == 0) DrawText("_", textBox.x + 8 + MeasureText(name, 40), textBox.y + 12, 40, MAROON); - } - else DrawText("Press BACKSPACE to delete chars...", 230, 300, 20, GRAY); - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - // Check if any key is pressed - // NOTE: We limit keys check to keys between 32 (KEY_SPACE) and 126 - bool IsAnyKeyPressed() - { - bool keyPressed = false; - int key = GetKeyPressed(); - - if ((key >= 32) && (key <= 126)) keyPressed = true; - - return keyPressed; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_raylib_fonts.cs b/Examples/Examples/text/text_raylib_fonts.cs deleted file mode 100644 index 3ccac55..0000000 --- a/Examples/Examples/text/text_raylib_fonts.cs +++ /dev/null @@ -1,117 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - raylib font loading and usage - * - * NOTE: raylib is distributed with some free to use fonts (even for commercial pourposes!) - * To view details and credits for those fonts, check raylib license file - * - * This example has been created using raylib 1.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - private const int MAX_FONTS = 8; - - public static int text_raylib_fonts() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - raylib fonts"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - Font fonts[MAX_FONTS]; - - fonts[0] = LoadFont("resources/fonts/alagard.png"); - fonts[1] = LoadFont("resources/fonts/pixelplay.png"); - fonts[2] = LoadFont("resources/fonts/mecha.png"); - fonts[3] = LoadFont("resources/fonts/setback.png"); - fonts[4] = LoadFont("resources/fonts/romulus.png"); - fonts[5] = LoadFont("resources/fonts/pixantiqua.png"); - fonts[6] = LoadFont("resources/fonts/alpha_beta.png"); - fonts[7] = LoadFont("resources/fonts/jupiter_crash.png"); - - const char *messages[MAX_FONTS] = { "ALAGARD FONT designed by Hewett Tsoi", - "PIXELPLAY FONT designed by Aleksander Shevchuk", - "MECHA FONT designed by Captain Falcon", - "SETBACK FONT designed by Brian Kent (AEnigma)", - "ROMULUS FONT designed by Hewett Tsoi", - "PIXANTIQUA FONT designed by Gerhard Grossmann", - "ALPHA_BETA FONT designed by Brian Kent (AEnigma)", - "JUPITER_CRASH FONT designed by Brian Kent (AEnigma)" }; - - const int spacings[MAX_FONTS] = { 2, 4, 8, 4, 3, 4, 4, 1 }; - - Vector2 positions[MAX_FONTS]; - - for (int i = 0; i < MAX_FONTS; i++) - { - positions[i].x = screenWidth/2 - MeasureTextEx(fonts[i], messages[i], fonts[i].baseSize*2, spacings[i]).x/2; - positions[i].y = 60 + fonts[i].baseSize + 45*i; - } - - // Small Y position corrections - positions[3].y += 8; - positions[4].y += 2; - positions[7].y -= 8; - - Color colors[MAX_FONTS] = { MAROON, ORANGE, DARKGREEN, DARKBLUE, DARKPURPLE, LIME, GOLD, RED }; - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("free fonts included with raylib", 250, 20, 20, DARKGRAY); - DrawLine(220, 50, 590, 50, DARKGRAY); - - for (int i = 0; i < MAX_FONTS; i++) - { - DrawTextEx(fonts[i], messages[i], positions[i], fonts[i].baseSize*2, spacings[i], colors[i]); - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - - // Fonts unloading - for (int i = 0; i < MAX_FONTS; i++) UnloadFont(fonts[i]); - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_sprite_fonts.cs b/Examples/Examples/text/text_sprite_fonts.cs deleted file mode 100644 index 82737ae..0000000 --- a/Examples/Examples/text/text_sprite_fonts.cs +++ /dev/null @@ -1,91 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - Font loading and usage - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int text_sprite_fonts() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - sprite fonts usage"); - - const char msg1[50] = "THIS IS A custom SPRITE FONT..."; - const char msg2[50] = "...and this is ANOTHER CUSTOM font..."; - const char msg3[50] = "...and a THIRD one! GREAT! :D"; - - // NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required) - Font font1 = LoadFont("resources/custom_mecha.png"); // Font loading - Font font2 = LoadFont("resources/custom_alagard.png"); // Font loading - Font font3 = LoadFont("resources/custom_jupiter_crash.png"); // Font loading - - Vector2 fontPosition1, fontPosition2, fontPosition3; - - fontPosition1.x = screenWidth/2 - MeasureTextEx(font1, msg1, font1.baseSize, -3).x/2; - fontPosition1.y = screenHeight/2 - font1.baseSize/2 - 80; - - fontPosition2.x = screenWidth/2 - MeasureTextEx(font2, msg2, font2.baseSize, -2).x/2; - fontPosition2.y = screenHeight/2 - font2.baseSize/2 - 10; - - fontPosition3.x = screenWidth/2 - MeasureTextEx(font3, msg3, font3.baseSize, 2).x/2; - fontPosition3.y = screenHeight/2 - font3.baseSize/2 + 50; - - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update variables here... - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTextEx(font1, msg1, fontPosition1, font1.baseSize, -3, WHITE); - DrawTextEx(font2, msg2, fontPosition2, font2.baseSize, -2, WHITE); - DrawTextEx(font3, msg3, fontPosition3, font3.baseSize, 2, WHITE); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadFont(font1); // Font unloading - UnloadFont(font2); // Font unloading - UnloadFont(font3); // Font unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_ttf_loading.cs b/Examples/Examples/text/text_ttf_loading.cs deleted file mode 100644 index 911fc2d..0000000 --- a/Examples/Examples/text/text_ttf_loading.cs +++ /dev/null @@ -1,150 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - TTF loading and usage - * - * This example has been created using raylib 1.3.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int text_ttf_loading() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - ttf loading"); - - const char msg[50] = "TTF Font"; - - // NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required) - - // TTF Font loading with custom generation parameters - Font font = LoadFontEx("resources/KAISG.ttf", 96, 0, 0); - - // Generate mipmap levels to use trilinear filtering - // NOTE: On 2D drawing it won't be noticeable, it looks like FILTER_BILINEAR - GenTextureMipmaps(&font.texture); - - float fontSize = font.baseSize; - Vector2 fontPosition = { 40, screenHeight/2 - 80 }; - Vector2 textSize; - - SetTextureFilter(font.texture, FILTER_POINT); - int currentFontFilter = 0; // FILTER_POINT - - // NOTE: Drag and drop support only available for desktop platforms: Windows, Linux, OSX - #if defined(PLATFORM_DESKTOP) - int count = 0; - char **droppedFiles; - #endif - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - fontSize += GetMouseWheelMove()*4.0f; - - // Choose font texture filter method - if (IsKeyPressed(KEY_ONE)) - { - SetTextureFilter(font.texture, FILTER_POINT); - currentFontFilter = 0; - } - else if (IsKeyPressed(KEY_TWO)) - { - SetTextureFilter(font.texture, FILTER_BILINEAR); - currentFontFilter = 1; - } - else if (IsKeyPressed(KEY_THREE)) - { - // NOTE: Trilinear filter won't be noticed on 2D drawing - SetTextureFilter(font.texture, FILTER_TRILINEAR); - currentFontFilter = 2; - } - - textSize = MeasureTextEx(font, msg, fontSize, 0); - - if (IsKeyDown(KEY_LEFT)) fontPosition.x -= 10; - else if (IsKeyDown(KEY_RIGHT)) fontPosition.x += 10; - - #if defined(PLATFORM_DESKTOP) - // Load a dropped TTF file dynamically (at current fontSize) - if (IsFileDropped()) - { - droppedFiles = GetDroppedFiles(&count); - - if (count == 1) // Only support one ttf file dropped - { - UnloadFont(font); - font = LoadFontEx(droppedFiles[0], fontSize, 0, 0); - ClearDroppedFiles(); - } - } - #endif - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("Use mouse wheel to change font size", 20, 20, 10, GRAY); - DrawText("Use KEY_RIGHT and KEY_LEFT to move text", 20, 40, 10, GRAY); - DrawText("Use 1, 2, 3 to change texture filter", 20, 60, 10, GRAY); - DrawText("Drop a new TTF font for dynamic loading", 20, 80, 10, DARKGRAY); - - DrawTextEx(font, msg, fontPosition, fontSize, 0, BLACK); - - // TODO: It seems texSize measurement is not accurate due to chars offsets... - //DrawRectangleLines(fontPosition.x, fontPosition.y, textSize.x, textSize.y, RED); - - DrawRectangle(0, screenHeight - 80, screenWidth, 80, LIGHTGRAY); - DrawText(FormatText("Font size: %02.02f", fontSize), 20, screenHeight - 50, 10, DARKGRAY); - DrawText(FormatText("Text size: [%02.02f, %02.02f]", textSize.x, textSize.y), 20, screenHeight - 30, 10, DARKGRAY); - DrawText("CURRENT TEXTURE FILTER:", 250, 400, 20, GRAY); - - if (currentFontFilter == 0) DrawText("POINT", 570, 400, 20, BLACK); - else if (currentFontFilter == 1) DrawText("BILINEAR", 570, 400, 20, BLACK); - else if (currentFontFilter == 2) DrawText("TRILINEAR", 570, 400, 20, BLACK); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - #if defined(PLATFORM_DESKTOP) - ClearDroppedFiles(); // Clear internal buffers - #endif - UnloadFont(font); // Font unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/text/text_writing_anim.cs b/Examples/Examples/text/text_writing_anim.cs deleted file mode 100644 index 42db69e..0000000 --- a/Examples/Examples/text/text_writing_anim.cs +++ /dev/null @@ -1,76 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [text] example - Text Writing Animation - * - * This example has been created using raylib 1.4 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int text_writing_anim() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [text] example - text writing anim"); - - const char message[128] = "This sample illustrates a text writing\nanimation effect! Check it out! ;)"; - - int framesCounter = 0; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyDown(KEY_SPACE)) framesCounter += 8; - else framesCounter++; - - if (IsKeyPressed(KEY_ENTER)) framesCounter = 0; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText(SubText(message, 0, framesCounter/10), 210, 160, 20, MAROON); - - DrawText("PRESS [ENTER] to RESTART!", 240, 260, 20, LIGHTGRAY); - DrawText("PRESS [SPACE] to SPEED UP!", 239, 300, 20, LIGHTGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_image_drawing.cs b/Examples/Examples/textures/textures_image_drawing.cs deleted file mode 100644 index 3b835c5..0000000 --- a/Examples/Examples/textures/textures_image_drawing.cs +++ /dev/null @@ -1,100 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Image loading and drawing on it - * - * NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM) - * - * This example has been created using raylib 1.4 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int textures_image_drawing() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] example - image drawing"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - - Image cat = LoadImage("resources/cat.png"); // Load image in CPU memory (RAM) - ImageCrop(&cat, (Rectangle){ 100, 10, 280, 380 }); // Crop an image piece - ImageFlipHorizontal(&cat); // Flip cropped image horizontally - ImageResize(&cat, 150, 200); // Resize flipped-cropped image - - Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM) - - // Draw one image over the other with a scaling of 1.5f - ImageDraw(&parrots, cat, (Rectangle){ 0, 0, cat.width, cat.height }, (Rectangle){ 30, 40, cat.width*1.5f, cat.height*1.5f }); - ImageCrop(&parrots, (Rectangle){ 0, 50, parrots.width, parrots.height - 100 }); // Crop resulting image - - UnloadImage(cat); // Unload image from RAM - - // Load custom font for frawing on image - Font font = LoadFont("resources/custom_jupiter_crash.png"); - - // Draw over image using custom font - ImageDrawTextEx(&parrots, (Vector2){ 300, 230 }, font, "PARROTS & CAT", font.baseSize, -2, WHITE); - - UnloadFont(font); // Unload custom spritefont (already drawn used on image) - - Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM) - UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM - - SetTargetFPS(60); - //--------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2 - 40, WHITE); - DrawRectangleLines(screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2 - 40, texture.width, texture.height, DARKGRAY); - - DrawText("We are drawing only one texture from various images composed!", 240, 350, 10, DARKGRAY); - DrawText("Source images have been cropped, scaled, flipped and copied one over the other.", 190, 370, 10, DARKGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Texture unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_image_generation.cs b/Examples/Examples/textures/textures_image_generation.cs deleted file mode 100644 index 2b30023..0000000 --- a/Examples/Examples/textures/textures_image_generation.cs +++ /dev/null @@ -1,120 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Procedural images generation - * - * This example has been created using raylib 1.8 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2O17 Wilhem Barbier (@nounoursheureux) - * - ********************************************************************************************/ - - - - private const int NUM_TEXTURES = 7; // Currently we have 7 generation algorithms - - public static int textures_image_generation() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] example - procedural images generation"); - - Image verticalGradient = GenImageGradientV(screenWidth, screenHeight, RED, BLUE); - Image horizontalGradient = GenImageGradientH(screenWidth, screenHeight, RED, BLUE); - Image radialGradient = GenImageGradientRadial(screenWidth, screenHeight, 0.0f, WHITE, BLACK); - Image checked = GenImageChecked(screenWidth, screenHeight, 32, 32, RED, BLUE); - Image whiteNoise = GenImageWhiteNoise(screenWidth, screenHeight, 0.5f); - Image perlinNoise = GenImagePerlinNoise(screenWidth, screenHeight, 50, 50, 4.0f); - Image cellular = GenImageCellular(screenWidth, screenHeight, 32); - - Texture2D textures[NUM_TEXTURES]; - textures[0] = LoadTextureFromImage(verticalGradient); - textures[1] = LoadTextureFromImage(horizontalGradient); - textures[2] = LoadTextureFromImage(radialGradient); - textures[3] = LoadTextureFromImage(checked); - textures[4] = LoadTextureFromImage(whiteNoise); - textures[5] = LoadTextureFromImage(perlinNoise); - textures[6] = LoadTextureFromImage(cellular); - - // Unload image data (CPU RAM) - UnloadImage(verticalGradient); - UnloadImage(horizontalGradient); - UnloadImage(radialGradient); - UnloadImage(checked); - UnloadImage(whiteNoise); - UnloadImage(perlinNoise); - UnloadImage(cellular); - - int currentTexture = 0; - - SetTargetFPS(60); - //--------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) - { - // Update - //---------------------------------------------------------------------------------- - if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON) || IsKeyPressed(KEY_RIGHT)) - { - currentTexture = (currentTexture + 1)%NUM_TEXTURES; // Cycle between the textures - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTexture(textures[currentTexture], 0, 0, WHITE); - - DrawRectangle(30, 400, 325, 30, Fade(SKYBLUE, 0.5f)); - DrawRectangleLines(30, 400, 325, 30, Fade(WHITE, 0.5f)); - DrawText("MOUSE LEFT BUTTON to CYCLE PROCEDURAL TEXTURES", 40, 410, 10, WHITE); - - switch(currentTexture) - { - case 0: DrawText("VERTICAL GRADIENT", 560, 10, 20, RAYWHITE); break; - case 1: DrawText("HORIZONTAL GRADIENT", 540, 10, 20, RAYWHITE); break; - case 2: DrawText("RADIAL GRADIENT", 580, 10, 20, LIGHTGRAY); break; - case 3: DrawText("CHECKED", 680, 10, 20, RAYWHITE); break; - case 4: DrawText("WHITE NOISE", 640, 10, 20, RED); break; - case 5: DrawText("PERLIN NOISE", 630, 10, 20, RAYWHITE); break; - case 6: DrawText("CELLULAR", 670, 10, 20, RAYWHITE); break; - default: break; - } - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - - // Unload textures data (GPU VRAM) - for (int i = 0; i < NUM_TEXTURES; i++) UnloadTexture(textures[i]); - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_image_loading.cs b/Examples/Examples/textures/textures_image_loading.cs deleted file mode 100644 index 60db941..0000000 --- a/Examples/Examples/textures/textures_image_loading.cs +++ /dev/null @@ -1,77 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Image loading and texture creation - * - * NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM) - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int textures_image_loading() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] example - image loading"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - - Image image = LoadImage("resources/raylib_logo.png"); // Loaded in CPU memory (RAM) - Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (VRAM) - - UnloadImage(image); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM - //--------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE); - - DrawText("this IS a texture loaded from an image!", 300, 370, 10, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Texture unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_image_processing.cs b/Examples/Examples/textures/textures_image_processing.cs deleted file mode 100644 index d323030..0000000 --- a/Examples/Examples/textures/textures_image_processing.cs +++ /dev/null @@ -1,159 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Image processing - * - * NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM) - * - * This example has been created using raylib 1.4 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2016 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - #include // Required for: free() - - private const int NUM_PROCESSES = 8; - - typedef enum { - NONE = 0, - COLOR_GRAYSCALE, - COLOR_TINT, - COLOR_INVERT, - COLOR_CONTRAST, - COLOR_BRIGHTNESS, - FLIP_VERTICAL, - FLIP_HORIZONTAL - } ImageProcess; - - static const char *processText[] = { - "NO PROCESSING", - "COLOR GRAYSCALE", - "COLOR TINT", - "COLOR INVERT", - "COLOR CONTRAST", - "COLOR BRIGHTNESS", - "FLIP VERTICAL", - "FLIP HORIZONTAL" - }; - - public static int textures_image_processing() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] example - image processing"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - - Image image = LoadImage("resources/parrots.png"); // Loaded in CPU memory (RAM) - ImageFormat(&image, UNCOMPRESSED_R8G8B8A8); // Format image to RGBA 32bit (required for texture update) <-- ISSUE - Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (VRAM) - - int currentProcess = NONE; - bool textureReload = false; - - Rectangle selectRecs[NUM_PROCESSES]; - - for (int i = 0; i < NUM_PROCESSES; i++) selectRecs[i] = (Rectangle){ 40, 50 + 32*i, 150, 30 }; - - SetTargetFPS(60); - //--------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyPressed(KEY_DOWN)) - { - currentProcess++; - if (currentProcess > 7) currentProcess = 0; - textureReload = true; - } - else if (IsKeyPressed(KEY_UP)) - { - currentProcess--; - if (currentProcess < 0) currentProcess = 7; - textureReload = true; - } - - if (textureReload) - { - UnloadImage(image); // Unload current image data - image = LoadImage("resources/parrots.png"); // Re-load image data - - // NOTE: Image processing is a costly CPU process to be done every frame, - // If image processing is required in a frame-basis, it should be done - // with a texture and by shaders - switch (currentProcess) - { - case COLOR_GRAYSCALE: ImageColorGrayscale(&image); break; - case COLOR_TINT: ImageColorTint(&image, GREEN); break; - case COLOR_INVERT: ImageColorInvert(&image); break; - case COLOR_CONTRAST: ImageColorContrast(&image, -40); break; - case COLOR_BRIGHTNESS: ImageColorBrightness(&image, -80); break; - case FLIP_VERTICAL: ImageFlipVertical(&image); break; - case FLIP_HORIZONTAL: ImageFlipHorizontal(&image); break; - default: break; - } - - Color *pixels = GetImageData(image); // Get pixel data from image (RGBA 32bit) - UpdateTexture(texture, pixels); // Update texture with new image data - free(pixels); // Unload pixels data from RAM - - textureReload = false; - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("IMAGE PROCESSING:", 40, 30, 10, DARKGRAY); - - // Draw rectangles - for (int i = 0; i < NUM_PROCESSES; i++) - { - DrawRectangleRec(selectRecs[i], (i == currentProcess) ? SKYBLUE : LIGHTGRAY); - DrawRectangleLines(selectRecs[i].x, selectRecs[i].y, selectRecs[i].width, selectRecs[i].height, (i == currentProcess) ? BLUE : GRAY); - DrawText(processText[i], selectRecs[i].x + selectRecs[i].width/2 - MeasureText(processText[i], 10)/2, selectRecs[i].y + 11, 10, (i == currentProcess) ? DARKBLUE : DARKGRAY); - } - - DrawTexture(texture, screenWidth - texture.width - 60, screenHeight/2 - texture.height/2, WHITE); - DrawRectangleLines(screenWidth - texture.width - 60, screenHeight/2 - texture.height/2, texture.width, texture.height, BLACK); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Unload texture from VRAM - UnloadImage(image); // Unload image from RAM - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_image_text.cs b/Examples/Examples/textures/textures_image_text.cs deleted file mode 100644 index 674de1c..0000000 --- a/Examples/Examples/textures/textures_image_text.cs +++ /dev/null @@ -1,97 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [texture] example - Image text drawing using TTF generated spritefont - * - * This example has been created using raylib 1.8 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int textures_image_text() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [texture] example - image text drawing"); - - // TTF Font loading with custom generation parameters - Font font = LoadFontEx("resources/KAISG.ttf", 64, 95, 0); - - Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM) - - // Draw over image using custom font - ImageDrawTextEx(&parrots, (Vector2){ 20, 20 }, font, "[Parrots font drawing]", font.baseSize, 0, WHITE); - - Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM) - UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM - - Vector2 position = { screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2 - 20 }; - - bool showFont = false; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - if (IsKeyDown(KEY_SPACE)) showFont = true; - else showFont = false; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - if (!showFont) - { - // Draw texture with text already drawn inside - DrawTextureV(texture, position, WHITE); - - // Draw text directly using sprite font - DrawTextEx(font, "[Parrots font drawing]", (Vector2){ position.x + 20, - position.y + 20 + 280 }, font.baseSize, 0, WHITE); - } - else DrawTexture(font.texture, screenWidth/2 - font.texture.width/2, 50, BLACK); - - DrawText("PRESS SPACE to SEE USED SPRITEFONT ", 290, 420, 10, DARKGRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Texture unloading - - UnloadFont(font); // Unload custom spritefont - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_logo_raylib.cs b/Examples/Examples/textures/textures_logo_raylib.cs deleted file mode 100644 index f1eb122..0000000 --- a/Examples/Examples/textures/textures_logo_raylib.cs +++ /dev/null @@ -1,71 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Texture loading and drawing - * - * This example has been created using raylib 1.0 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int textures_logo_raylib() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture loading and drawing"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - Texture2D texture = LoadTexture("resources/raylib_logo.png"); // Texture loading - //--------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE); - - DrawText("this IS a texture!", 360, 370, 10, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Texture unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_particles_blending.cs b/Examples/Examples/textures/textures_particles_blending.cs deleted file mode 100644 index cbe5ef3..0000000 --- a/Examples/Examples/textures/textures_particles_blending.cs +++ /dev/null @@ -1,149 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib example - particles blending - * - * This example has been created using raylib 1.7 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2017 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - private const int MAX_PARTICLES = 200; - - // Particle structure with basic data - typedef struct { - Vector2 position; - Color color; - float alpha; - float size; - float rotation; - bool active; // NOTE: Use it to activate/deactive particle - } Particle; - - public static int textures_particles_blending() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] example - particles blending"); - - // Particles pool, reuse them! - Particle mouseTail[MAX_PARTICLES]; - - // Initialize particles - for (int i = 0; i < MAX_PARTICLES; i++) - { - mouseTail[i].position = (Vector2){ 0, 0 }; - mouseTail[i].color = (Color){ GetRandomValue(0, 255), GetRandomValue(0, 255), GetRandomValue(0, 255), 255 }; - mouseTail[i].alpha = 1.0f; - mouseTail[i].size = (float)GetRandomValue(1, 30)/20.0f; - mouseTail[i].rotation = GetRandomValue(0, 360); - mouseTail[i].active = false; - } - - float gravity = 3.0f; - - Texture2D smoke = LoadTexture("resources/smoke.png"); - - int blending = BLEND_ALPHA; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - - // Activate one particle every frame and Update active particles - // NOTE: Particles initial position should be mouse position when activated - // NOTE: Particles fall down with gravity and rotation... and disappear after 2 seconds (alpha = 0) - // NOTE: When a particle disappears, active = false and it can be reused. - for (int i = 0; i < MAX_PARTICLES; i++) - { - if (!mouseTail[i].active) - { - mouseTail[i].active = true; - mouseTail[i].alpha = 1.0f; - mouseTail[i].position = GetMousePosition(); - i = MAX_PARTICLES; - } - } - - for (int i = 0; i < MAX_PARTICLES; i++) - { - if (mouseTail[i].active) - { - mouseTail[i].position.y += gravity; - mouseTail[i].alpha -= 0.01f; - - if (mouseTail[i].alpha <= 0.0f) mouseTail[i].active = false; - - mouseTail[i].rotation += 5.0f; - } - } - - if (IsKeyPressed(KEY_SPACE)) - { - if (blending == BLEND_ALPHA) blending = BLEND_ADDITIVE; - else blending = BLEND_ALPHA; - } - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(DARKGRAY); - - BeginBlendMode(blending); - - // Draw active particles - for (int i = 0; i < MAX_PARTICLES; i++) - { - if (mouseTail[i].active) DrawTexturePro(smoke, (Rectangle){ 0, 0, smoke.width, smoke.height }, - (Rectangle){ mouseTail[i].position.x, mouseTail[i].position.y, smoke.width*mouseTail[i].size, smoke.height*mouseTail[i].size }, - (Vector2){ smoke.width*mouseTail[i].size/2, smoke.height*mouseTail[i].size/2 }, mouseTail[i].rotation, - Fade(mouseTail[i].color, mouseTail[i].alpha)); - } - - EndBlendMode(); - - DrawText("PRESS SPACE to CHANGE BLENDING MODE", 180, 20, 20, BLACK); - - if (blending == BLEND_ALPHA) DrawText("ALPHA BLENDING", 290, screenHeight - 40, 20, BLACK); - else DrawText("ADDITIVE BLENDING", 280, screenHeight - 40, 20, RAYWHITE); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(smoke); - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_raw_data.cs b/Examples/Examples/textures/textures_raw_data.cs deleted file mode 100644 index 2f68fed..0000000 --- a/Examples/Examples/textures/textures_raw_data.cs +++ /dev/null @@ -1,109 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Load textures from raw data - * - * NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM) - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - #include // Required for malloc() and free() - - public static int textures_raw_data() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture from raw data"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - - // Load RAW image data (512x512, 32bit RGBA, no file header) - Image fudesumiRaw = LoadImageRaw("resources/fudesumi.raw", 384, 512, UNCOMPRESSED_R8G8B8A8, 0); - Texture2D fudesumi = LoadTextureFromImage(fudesumiRaw); // Upload CPU (RAM) image to GPU (VRAM) - UnloadImage(fudesumiRaw); // Unload CPU (RAM) image data - - // Generate a checked texture by code (1024x1024 pixels) - int width = 1024; - int height = 1024; - - // Dynamic memory allocation to store pixels data (Color type) - Color *pixels = (Color *)malloc(width*height*sizeof(Color)); - - for (int y = 0; y < height; y++) - { - for (int x = 0; x < width; x++) - { - if (((x/32+y/32)/1)%2 == 0) pixels[y*height + x] = ORANGE; - else pixels[y*height + x] = GOLD; - } - } - - // Load pixels data into an image structure and create texture - Image checkedIm = LoadImageEx(pixels, width, height); - Texture2D checked = LoadTextureFromImage(checkedIm); - UnloadImage(checkedIm); // Unload CPU (RAM) image data - - // Dynamic memory must be freed after using it - free(pixels); // Unload CPU (RAM) pixels data - //--------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTexture(checked, screenWidth/2 - checked.width/2, screenHeight/2 - checked.height/2, Fade(WHITE, 0.5f)); - DrawTexture(fudesumi, 430, -30, WHITE); - - DrawText("CHECKED TEXTURE ", 84, 100, 30, BROWN); - DrawText("GENERATED by CODE", 72, 164, 30, BROWN); - DrawText("and RAW IMAGE LOADING", 46, 226, 30, BROWN); - - DrawText("(c) Fudesumi sprite by Eiden Marsal", 310, screenHeight - 20, 10, BROWN); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(fudesumi); // Texture unloading - UnloadTexture(checked); // Texture unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_rectangle.cs b/Examples/Examples/textures/textures_rectangle.cs deleted file mode 100644 index 2ebaeee..0000000 --- a/Examples/Examples/textures/textures_rectangle.cs +++ /dev/null @@ -1,113 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Texture loading and drawing a part defined by a rectangle - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2014 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - private const int MAX_FRAME_SPEED = 15; - private const int MIN_FRAME_SPEED = 1; - - public static int textures_rectangle() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [texture] example - texture rectangle"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - Texture2D scarfy = LoadTexture("resources/scarfy.png"); // Texture loading - - Vector2 position = { 350.0f, 280.0f }; - Rectangle frameRec = { 0.0f, 0.0f, (float)scarfy.width/6, (float)scarfy.height }; - int currentFrame = 0; - - int framesCounter = 0; - int framesSpeed = 8; // Number of spritesheet frames shown by second - - SetTargetFPS(60); // Set our game to run at 60 frames-per-second - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - framesCounter++; - - if (framesCounter >= (60/framesSpeed)) - { - framesCounter = 0; - currentFrame++; - - if (currentFrame > 5) currentFrame = 0; - - frameRec.x = (float)currentFrame*(float)scarfy.width/6; - } - - if (IsKeyPressed(KEY_RIGHT)) framesSpeed++; - else if (IsKeyPressed(KEY_LEFT)) framesSpeed--; - - if (framesSpeed > MAX_FRAME_SPEED) framesSpeed = MAX_FRAME_SPEED; - else if (framesSpeed < MIN_FRAME_SPEED) framesSpeed = MIN_FRAME_SPEED; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTexture(scarfy, 15, 40, WHITE); - DrawRectangleLines(15, 40, scarfy.width, scarfy.height, LIME); - DrawRectangleLines(15 + frameRec.x, 40 + frameRec.y, frameRec.width, frameRec.height, RED); - - DrawText("FRAME SPEED: ", 165, 210, 10, DARKGRAY); - DrawText(FormatText("%02i FPS", framesSpeed), 575, 210, 10, DARKGRAY); - DrawText("PRESS RIGHT/LEFT KEYS to CHANGE SPEED!", 290, 240, 10, DARKGRAY); - - for (int i = 0; i < MAX_FRAME_SPEED; i++) - { - if (i < framesSpeed) DrawRectangle(250 + 21*i, 205, 20, 20, RED); - DrawRectangleLines(250 + 21*i, 205, 20, 20, MAROON); - } - - DrawTextureRec(scarfy, frameRec, position, WHITE); // Draw part of the texture - - DrawText("(c) Scarfy sprite by Eiden Marsal", screenWidth - 200, screenHeight - 20, 10, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(scarfy); // Texture unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_srcrec_dstrec.cs b/Examples/Examples/textures/textures_srcrec_dstrec.cs deleted file mode 100644 index ac3d2bb..0000000 --- a/Examples/Examples/textures/textures_srcrec_dstrec.cs +++ /dev/null @@ -1,95 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Texture source and destination rectangles - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int textures_srcrec_dstrec() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] examples - texture source and destination rectangles"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - Texture2D scarfy = LoadTexture("resources/scarfy.png"); // Texture loading - - int frameWidth = scarfy.width/6; - int frameHeight = scarfy.height; - - // NOTE: Source rectangle (part of the texture to use for drawing) - Rectangle sourceRec = { 0, 0, frameWidth, frameHeight }; - - // NOTE: Destination rectangle (screen rectangle where drawing part of texture) - Rectangle destRec = { screenWidth/2, screenHeight/2, frameWidth*2, frameHeight*2 }; - - // NOTE: Origin of the texture (rotation/scale point), it's relative to destination rectangle size - Vector2 origin = { frameWidth, frameHeight }; - - int rotation = 0; - - SetTargetFPS(60); - //-------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - rotation++; - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - // NOTE: Using DrawTexturePro() we can easily rotate and scale the part of the texture we draw - // sourceRec defines the part of the texture we use for drawing - // destRec defines the rectangle where our texture part will fit (scaling it to fit) - // origin defines the point of the texture used as reference for rotation and scaling - // rotation defines the texture rotation (using origin as rotation point) - DrawTexturePro(scarfy, sourceRec, destRec, origin, rotation, WHITE); - - DrawLine(destRec.x, 0, destRec.x, screenHeight, GRAY); - DrawLine(0, destRec.y, screenWidth, destRec.y, GRAY); - - DrawText("(c) Scarfy sprite by Eiden Marsal", screenWidth - 200, screenHeight - 20, 10, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(scarfy); // Texture unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Examples/textures/textures_to_image.cs b/Examples/Examples/textures/textures_to_image.cs deleted file mode 100644 index 298e45b..0000000 --- a/Examples/Examples/textures/textures_to_image.cs +++ /dev/null @@ -1,82 +0,0 @@ - - -using Raylib; - -using static Raylib.Raylib; - - - -public partial class Examples - -{ - - /******************************************************************************************* - * - * raylib [textures] example - Retrieve image data from texture: GetTextureData() - * - * NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM) - * - * This example has been created using raylib 1.3 (www.raylib.com) - * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) - * - * Copyright (c) 2015 Ramon Santamaria (@raysan5) - * - ********************************************************************************************/ - - - - public static int textures_to_image() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture to image"); - - // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) - - Image image = LoadImage("resources/raylib_logo.png"); // Load image data into CPU memory (RAM) - Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (RAM -> VRAM) - UnloadImage(image); // Unload image data from CPU memory (RAM) - - image = GetTextureData(texture); // Retrieve image data from GPU memory (VRAM -> RAM) - UnloadTexture(texture); // Unload texture from GPU memory (VRAM) - - texture = LoadTextureFromImage(image); // Recreate texture from retrieved image data (RAM -> VRAM) - UnloadImage(image); // Unload retrieved image data from CPU memory (RAM) - //--------------------------------------------------------------------------------------- - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE); - - DrawText("this IS a texture loaded from an image!", 300, 370, 10, GRAY); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - - // De-Initialization - //-------------------------------------------------------------------------------------- - UnloadTexture(texture); // Texture unloading - - CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- - - return 0; - } - -} \ No newline at end of file diff --git a/Examples/Makefile b/Examples/Makefile new file mode 100644 index 0000000..285465f --- /dev/null +++ b/Examples/Makefile @@ -0,0 +1,477 @@ +#************************************************************************************************** +# +# raylib makefile for Desktop platforms, Raspberry Pi, Android and HTML5 +# +# Copyright (c) 2013-2018 Ramon Santamaria (@raysan5) +# +# This software is provided "as-is", without any express or implied warranty. In no event +# will the authors be held liable for any damages arising from the use of this software. +# +# Permission is granted to anyone to use this software for any purpose, including commercial +# applications, and to alter it and redistribute it freely, subject to the following restrictions: +# +# 1. The origin of this software must not be misrepresented; you must not claim that you +# wrote the original software. If you use this software in a product, an acknowledgment +# in the product documentation would be appreciated but is not required. +# +# 2. Altered source versions must be plainly marked as such, and must not be misrepresented +# as being the original software. +# +# 3. This notice may not be removed or altered from any source distribution. +# +#************************************************************************************************** + +.PHONY: all clean + +# Define required raylib variables +PROJECT_NAME ?= raylib_examples +RAYLIB_VERSION ?= 2.0.0 +RAYLIB_API_VERSION ?= 1 +RAYLIB_PATH ?= .. + +# Define default options + +# One of PLATFORM_DESKTOP, PLATFORM_RPI, PLATFORM_ANDROID, PLATFORM_WEB +PLATFORM ?= PLATFORM_DESKTOP + +# Locations of your newly installed library and associated headers. See ../src/Makefile +# On Linux, if you have installed raylib but cannot compile the examples, check that +# the *_INSTALL_PATH values here are the same as those in src/Makefile or point to known locations. +# To enable system-wide compile-time and runtime linking to libraylib.so, run ../src/$ sudo make install RAYLIB_LIBTYPE_SHARED. +# To enable compile-time linking to a special version of libraylib.so, change these variables here. +# To enable runtime linking to a special version of libraylib.so, see EXAMPLE_RUNTIME_PATH below. +# If there is a libraylib in both EXAMPLE_RUNTIME_PATH and RAYLIB_INSTALL_PATH, at runtime, +# the library at EXAMPLE_RUNTIME_PATH, if present, will take precedence over the one at RAYLIB_INSTALL_PATH. +# RAYLIB_INSTALL_PATH should be the desired full path to libraylib. No relative paths. +DESTDIR ?= /usr/local +RAYLIB_INSTALL_PATH ?= $(DESTDIR)/lib +# RAYLIB_H_INSTALL_PATH locates the installed raylib header and associated source files. +RAYLIB_H_INSTALL_PATH ?= $(DESTDIR)/include + +# Library type used for raylib: STATIC (.a) or SHARED (.so/.dll) +RAYLIB_LIBTYPE ?= STATIC + +# Build mode for project: DEBUG or RELEASE +RAYLIB_BUILD_MODE ?= RELEASE + +# Use external GLFW library instead of rglfw module +# TODO: Review usage on Linux. Target version of choice. Switch on -lglfw or -lglfw3 +USE_EXTERNAL_GLFW ?= FALSE + +# Use Wayland display server protocol on Linux desktop +# by default it uses X11 windowing system +USE_WAYLAND_DISPLAY ?= FALSE + +# NOTE: On PLATFORM_WEB OpenAL Soft backend is used by default (check raylib/src/Makefile) + +# Determine PLATFORM_OS in case PLATFORM_DESKTOP selected +ifeq ($(PLATFORM),PLATFORM_DESKTOP) + # No uname.exe on MinGW!, but OS=Windows_NT on Windows! + # ifeq ($(UNAME),Msys) -> Windows + ifeq ($(OS),Windows_NT) + PLATFORM_OS=WINDOWS + else + UNAMEOS=$(shell uname) + ifeq ($(UNAMEOS),Linux) + PLATFORM_OS=LINUX + endif + ifeq ($(UNAMEOS),FreeBSD) + PLATFORM_OS=BSD + endif + ifeq ($(UNAMEOS),OpenBSD) + PLATFORM_OS=BSD + endif + ifeq ($(UNAMEOS),NetBSD) + PLATFORM_OS=BSD + endif + ifeq ($(UNAMEOS),DragonFly) + PLATFORM_OS=BSD + endif + ifeq ($(UNAMEOS),Darwin) + PLATFORM_OS=OSX + endif + endif +endif +ifeq ($(PLATFORM),PLATFORM_RPI) + UNAMEOS=$(shell uname) + ifeq ($(UNAMEOS),Linux) + PLATFORM_OS=LINUX + endif +endif + +# RAYLIB_PATH adjustment for different platforms. +# If using GNU make, we can get the full path to the top of the tree. Windows? BSD? +# Required for ldconfig or other tools that do not perform path expansion. +ifeq ($(PLATFORM),PLATFORM_DESKTOP) + ifeq ($(PLATFORM_OS),LINUX) + RAYLIB_PREFIX ?= .. + RAYLIB_PATH = $(realpath $(RAYLIB_PREFIX)) + endif +endif +# Default path for raylib on Raspberry Pi, if installed in different path, update it! +# This is not currently used by src/Makefile. Not sure of its origin or usage. Refer to wiki. +# TODO: update install: target in src/Makefile for RPI, consider relation to LINUX. +ifeq ($(PLATFORM),PLATFORM_RPI) + RAYLIB_PATH ?= /home/pi/raylib +endif + +ifeq ($(PLATFORM),PLATFORM_WEB) + # Emscripten required variables + EMSDK_PATH = C:/emsdk + EMSCRIPTEN_VERSION = 1.38.8 + CLANG_VERSION = e1.38.8_64bit + PYTHON_VERSION = 2.7.13.1_64bit\python-2.7.13.amd64 + NODE_VERSION = 8.9.1_64bit + export PATH = $(EMSDK_PATH);$(EMSDK_PATH)\clang\$(CLANG_VERSION);$(EMSDK_PATH)\node\$(NODE_VERSION)\bin;$(EMSDK_PATH)\python\$(PYTHON_VERSION);$(EMSDK_PATH)\emscripten\$(EMSCRIPTEN_VERSION);C:\raylib\MinGW\bin:$$(PATH) + EMSCRIPTEN = $(EMSDK_PATH)\emscripten\$(EMSCRIPTEN_VERSION) +endif + +# Define raylib release directory for compiled library. +# RAYLIB_RELEASE_PATH points to provided binaries or your freshly built version. +ifeq ($(PLATFORM),PLATFORM_DESKTOP) + ifeq ($(PLATFORM_OS),WINDOWS) + RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/win32/mingw32 + endif + ifeq ($(PLATFORM_OS),LINUX) + RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/linux + endif + ifeq ($(PLATFORM_OS),OSX) + RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/osx + endif + ifeq ($(PLATFORM_OS),BSD) + RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/bsd + endif +endif +ifeq ($(PLATFORM),PLATFORM_RPI) + RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/rpi +endif +ifeq ($(PLATFORM),PLATFORM_WEB) + RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/html5 +endif + +# EXAMPLE_RUNTIME_PATH embeds a custom runtime location of libraylib.so or other desired libraries +# into each example binary compiled with RAYLIB_LIBTYPE=SHARED. It defaults to RAYLIB_RELEASE_PATH +# so that these examples link at runtime with your version of libraylib.so in ../release/libs/linux +# without formal installation from ../src/Makefile. It aids portability and is useful if you have +# multiple versions of raylib, have raylib installed to a non-standard location, or want to +# bundle libraylib.so with your game. Change it to your liking. +# Note: If, at runtime, there is a libraylib.so at both EXAMPLE_RUNTIME_PATH and RAYLIB_INSTALL_PATH, +# The library at EXAMPLE_RUNTIME_PATH, if present, will take precedence over RAYLIB_INSTALL_PATH, +# Implemented for LINUX below with CFLAGS += -Wl,-rpath,$(EXAMPLE_RUNTIME_PATH) +# To see the result, run readelf -d core/core_basic_window; looking at the RPATH or RUNPATH attribute. +# To see which libraries a built example is linking to, ldd core/core_basic_window; +# Look for libraylib.so.1 => $(RAYLIB_INSTALL_PATH)/libraylib.so.1 or similar listing. +EXAMPLE_RUNTIME_PATH ?= $(RAYLIB_RELEASE_PATH) + +# Define default C compiler: gcc +# NOTE: define g++ compiler if using C++ +# CC = gcc +CC = csc +# CC = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2017\Visual Studio Tools\Developer Command Prompt for VS 2017.bat + +# csc /t:exe /out:core_basic_window.exe /reference:C:\Users\Chris\Documents\projects\Raylib-cs\Bindings\bin\Debug\Bindings.DLL core_basic_window.cs + +# ifeq ($(PLATFORM),PLATFORM_DESKTOP) +# ifeq ($(PLATFORM_OS),OSX) +# # OSX default compiler +# CC = clang +# endif +# ifeq ($(PLATFORM_OS),BSD) +# # FreeBSD, OpenBSD, NetBSD, DragonFly default compiler +# CC = clang +# endif +# endif +# ifeq ($(PLATFORM),PLATFORM_RPI) +# ifeq ($(USE_RPI_CROSS_COMPILER),TRUE) +# # Define RPI cross-compiler +# #CC = armv6j-hardfloat-linux-gnueabi-gcc +# CC = $(RPI_TOOLCHAIN)/bin/arm-linux-gnueabihf-gcc +# endif +# endif +# ifeq ($(PLATFORM),PLATFORM_WEB) +# # WARNING: To compile to HTML5, code must be redesigned to use emscripten.h and emscripten_set_main_loop() +# # HTML5 emscripten compiler +# CC = emcc +# endif + +# Define default make program: Mingw32-make +MAKE = mingw32-make + +ifeq ($(PLATFORM),PLATFORM_DESKTOP) + ifeq ($(PLATFORM_OS),LINUX) + MAKE = make + endif +endif + +# Define compiler flags: +# -O1 defines optimization level +# -g enable debugging +# -s strip unnecessary data from build +# -Wall turns on most, but not all, compiler warnings +# -std=c99 defines C language mode (standard C from 1999 revision) +# -std=gnu99 defines C language mode (GNU C from 1999 revision) +# -Wno-missing-braces ignore invalid warning (GCC bug 53119) +# -D_DEFAULT_SOURCE use with -std=c99 on Linux and PLATFORM_WEB, required for timespec +# CFLAGS += -O1 -s -Wall -std=c99 -D_DEFAULT_SOURCE -Wno-missing-braces +CFLAGS += /reference:C:\Users\Chris\Documents\projects\Raylib-cs\Bindings\bin\Debug\Bindings.DLL + +# Additional flags for compiler (if desired) +#CFLAGS += -Wextra -Wmissing-prototypes -Wstrict-prototypes +# ifeq ($(PLATFORM),PLATFORM_DESKTOP) +# ifeq ($(PLATFORM_OS),WINDOWS) +# # resource file contains windows executable icon and properties +# # -Wl,--subsystem,windows hides the console window +# CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows +# endif +# ifeq ($(PLATFORM_OS),LINUX) +# ifeq ($(RAYLIB_BUILD_MODE),DEBUG) +# CFLAGS += -g +# #CC = clang +# endif +# ifeq ($(RAYLIB_LIBTYPE),STATIC) +# CFLAGS += -D_DEFAULT_SOURCE +# endif +# ifeq ($(RAYLIB_LIBTYPE),SHARED) +# # Explicitly enable runtime link to libraylib.so +# CFLAGS += -Wl,-rpath,$(EXAMPLE_RUNTIME_PATH) +# endif +# endif +# endif +# ifeq ($(PLATFORM),PLATFORM_RPI) +# CFLAGS += -std=gnu99 +# endif +# ifeq ($(PLATFORM),PLATFORM_WEB) +# # -Os # size optimization +# # -O2 # optimization level 2, if used, also set --memory-init-file 0 +# # --memory-init-file 0 # to avoid an external memory initialization code file (.mem) +# # -s ALLOW_MEMORY_GROWTH=1 # to allow memory resizing +# # -s TOTAL_MEMORY=16777216 # to specify heap memory size (default = 16MB) +# # -s USE_PTHREADS=1 # multithreading support +# # -s WASM=1 # support Web Assembly (https://github.com/kripken/emscripten/wiki/WebAssembly) +# # -s EMTERPRETIFY=1 # enable emscripten code interpreter (very slow) +# # -s EMTERPRETIFY_ASYNC=1 # support synchronous loops by emterpreter +# # --profiling # include information for code profiling +# # --preload-file resources # specify a resources folder for data compilation +# CFLAGS += -Os -s USE_GLFW=3 -s ASSERTIONS=1 -s WASM=1 -s EMTERPRETIFY=1 -s EMTERPRETIFY_ASYNC=1 + +# # NOTE: Simple raylib examples are compiled to be interpreter by emterpreter, that way, +# # we can compile same code for ALL platforms with no change required, but, working on bigger +# # projects, code needs to be refactored to avoid a blocking while() loop, moving Update and Draw +# # logic to a self contained function: UpdateDrawFrame(), check core_basic_window_web.c for reference. + +# # Define a custom shell .html and output extension +# CFLAGS += --shell-file $(RAYLIB_PATH)\templates\web_shell\shell.html +# EXT = .html +# endif + +# Define include paths for required headers. +# Precedence: immediately local, raysan5 provided sources +# NOTE: Several external required libraries (stb and others) +# INCLUDE_PATHS = -I. -I$(RAYLIB_PATH)/release/include -I$(RAYLIB_PATH)/src -I$(RAYLIB_PATH)/src/external + +# Define additional directories containing required header files +# ifeq ($(PLATFORM),PLATFORM_RPI) +# # RPI required libraries +# INCLUDE_PATHS += -I/opt/vc/include +# INCLUDE_PATHS += -I/opt/vc/include/interface/vmcs_host/linux +# INCLUDE_PATHS += -I/opt/vc/include/interface/vcos/pthreads +# endif +# ifeq ($(PLATFORM),PLATFORM_DESKTOP) +# ifeq ($(PLATFORM_OS),BSD) +# # Consider -L$(RAYLIB_H_INSTALL_PATH) +# INCLUDE_PATHS += -I/usr/local/include +# endif +# ifeq ($(PLATFORM_OS),LINUX) +# # Reset everything. +# # Precedence: immediately local, installed version, raysan5 provided libs -I$(RAYLIB_H_INSTALL_PATH) -I$(RAYLIB_PATH)/release/include +# INCLUDE_PATHS = -I$(RAYLIB_H_INSTALL_PATH) -isystem. -isystem$(RAYLIB_PATH)/src -isystem$(RAYLIB_PATH)/release/include -isystem$(RAYLIB_PATH)/src/external +# endif +# endif + +# Define library paths containing required libs. +# Precedence: immediately local, then raysan5 provided libs +# LDFLAGS = -L. -L$(RAYLIB_RELEASE_PATH) -L$(RAYLIB_PATH)/src + +# ifeq ($(PLATFORM),PLATFORM_DESKTOP) +# ifeq ($(PLATFORM_OS),BSD) +# # Consider -L$(RAYLIB_INSTALL_PATH) +# LDFLAGS += -L. -Lsrc -L/usr/local/lib +# endif +# ifeq ($(PLATFORM_OS),LINUX) +# # Reset everything. +# # Precedence: immediately local, installed version, raysan5 provided libs +# LDFLAGS = -L. -L$(RAYLIB_INSTALL_PATH) -L$(RAYLIB_RELEASE_PATH) -L$(RAYLIB_PATH)/src +# endif +# endif + +# ifeq ($(PLATFORM),PLATFORM_RPI) +# LDFLAGS += -L/opt/vc/lib +# endif + +# Define any libraries required on linking +# if you want to link libraries (libname.so or libname.a), use the -lname +# ifeq ($(PLATFORM),PLATFORM_DESKTOP) +# ifeq ($(PLATFORM_OS),WINDOWS) +# # Libraries for Windows desktop compilation +# LDLIBS = -lraylib -lopengl32 -lgdi32 +# # Required for physac examples +# LDLIBS += -static -lpthread +# endif +# ifeq ($(PLATFORM_OS),LINUX) +# # Libraries for Debian GNU/Linux desktop compiling +# # NOTE: Required packages: libegl1-mesa-dev +# LDLIBS = -lraylib -lGL -lm -lpthread -ldl -lrt +# # On X11 requires also below libraries +# LDLIBS += -lX11 +# # NOTE: It seems additional libraries are not required any more, latest GLFW just dlopen them +# #LDLIBS += -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor +# # On Wayland windowing system, additional libraries requires +# ifeq ($(USE_WAYLAND_DISPLAY),TRUE) +# LDLIBS += -lwayland-client -lwayland-cursor -lwayland-egl -lxkbcommon +# endif +# # Explicit link to libc +# ifeq ($(RAYLIB_LIBTYPE),SHARED) +# LDLIBS += -lc +# endif +# endif +# ifeq ($(PLATFORM_OS),OSX) +# # Libraries for OSX 10.9 desktop compiling +# # NOTE: Required packages: libopenal-dev libegl1-mesa-dev +# LDLIBS = -lraylib -framework OpenGL -framework OpenAL -framework Cocoa +# endif +# ifeq ($(PLATFORM_OS),BSD) +# # Libraries for FreeBSD, OpenBSD, NetBSD, DragonFly desktop compiling +# # NOTE: Required packages: mesa-libs +# LDLIBS = -lraylib -lGL -lpthread -lm +# # On XWindow requires also below libraries +# LDLIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor +# endif +# ifeq ($(USE_EXTERNAL_GLFW),TRUE) +# # NOTE: It could require additional packages installed: libglfw3-dev +# LDLIBS += -lglfw +# endif +# endif +# ifeq ($(PLATFORM),PLATFORM_RPI) +# # Libraries for Raspberry Pi compiling +# # NOTE: Required packages: libasound2-dev (ALSA) +# LDLIBS = -lraylib -lbrcmGLESv2 -lbrcmEGL -lpthread -lrt -lm -lbcm_host -ldl +# endif +# ifeq ($(PLATFORM),PLATFORM_WEB) +# # Libraries for web (HTML5) compiling +# LDLIBS = $(RAYLIB_RELEASE_PATH)/libraylib.bc +# endif + +# Define all object files required +EXAMPLES = \ + core/core_basic_window \ + core/core_input_keys \ + core/core_input_mouse \ + core/core_mouse_wheel \ + core/core_input_gamepad \ + core/core_random_values \ + core/core_color_select \ + core/core_drop_files \ + core/core_storage_values \ + core/core_gestures_detection \ + core/core_3d_mode \ + core/core_3d_picking \ + core/core_3d_camera_free \ + core/core_3d_camera_first_person \ + core/core_2d_camera \ + core/core_world_screen \ + core/core_vr_simulator \ + shapes/shapes_logo_raylib \ + shapes/shapes_basic_shapes \ + shapes/shapes_colors_palette \ + shapes/shapes_logo_raylib_anim \ + shapes/shapes_lines_bezier \ + textures/textures_logo_raylib \ + textures/textures_image_loading \ + textures/textures_rectangle \ + textures/textures_srcrec_dstrec \ + textures/textures_to_image \ + textures/textures_raw_data \ + textures/textures_particles_blending \ + textures/textures_image_processing \ + textures/textures_image_drawing \ + textures/textures_image_generation \ + textures/textures_image_text \ + text/text_sprite_fonts \ + text/text_bmfont_ttf \ + text/text_raylib_fonts \ + text/text_format_text \ + text/text_writing_anim \ + text/text_ttf_loading \ + text/text_bmfont_unordered \ + text/text_input_box \ + text/text_font_sdf \ + models/models_geometric_shapes \ + models/models_box_collisions \ + models/models_billboard \ + models/models_obj_loading \ + models/models_heightmap \ + models/models_cubicmap \ + models/models_mesh_picking \ + models/models_mesh_generation \ + models/models_material_pbr \ + models/models_skybox \ + models/models_yaw_pitch_roll \ + shaders/shaders_model_shader \ + shaders/shaders_shapes_textures \ + shaders/shaders_custom_uniform \ + shaders/shaders_postprocessing \ + audio/audio_sound_loading \ + audio/audio_music_stream \ + audio/audio_module_playing \ + audio/audio_raw_stream \ + physac/physics_demo \ + physac/physics_friction \ + physac/physics_movement \ + physac/physics_restitution \ + physac/physics_shatter \ + + +CURRENT_MAKEFILE = $(lastword $(MAKEFILE_LIST)) + +# Default target entry +all: $(EXAMPLES) + +# Generic compilation pattern +# NOTE: Examples must be ready for Android compilation! +%: %.cs +ifeq ($(PLATFORM),PLATFORM_ANDROID) + $(MAKE) -f Makefile.Android PROJECT_NAME=$@ PROJECT_SOURCE_FILES=$< +else + $(CC) /t:exe /out:$@$(EXT).exe $(CFLAGS) $< +# $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) +# $(CC) /t:exe /out:$@$(EXT).exe $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) +endif + +# fix dylib install path name for each executable (MAC) +fix_dylib: +ifeq ($(PLATFORM_OS),OSX) + find . -type f -perm +ugo+x -print0 | xargs -t -0 -R 1 -I file install_name_tool -change libglfw.3.0.dylib ../external/glfw3/lib/osx/libglfw.3.0.dylib file +endif + +# Clean everything +clean: +ifeq ($(PLATFORM),PLATFORM_DESKTOP) + ifeq ($(PLATFORM_OS),WINDOWS) + del *.o *.exe /s + endif + ifeq ($(PLATFORM_OS),LINUX) + find -type f -executable | xargs file -i | grep -E 'x-object|x-archive|x-sharedlib|x-executable' | rev | cut -d ':' -f 2- | rev | xargs rm -fv + endif + ifeq ($(PLATFORM_OS),OSX) + find . -type f -perm +ugo+x -delete + rm -f *.o + endif +endif +ifeq ($(PLATFORM),PLATFORM_RPI) + find . -type f -executable -delete + rm -fv *.o +endif +ifeq ($(PLATFORM),PLATFORM_WEB) + del *.o *.html *.js +endif + @echo Cleaning done diff --git a/Examples/Program.cs b/Examples/Program.cs deleted file mode 100644 index bdcfe27..0000000 --- a/Examples/Program.cs +++ /dev/null @@ -1,11 +0,0 @@ - -namespace ExamplesTest -{ - class Program - { - static void Main(string[] args) - { - Examples.core_basic_window(); - } - } -} diff --git a/Examples/audio/audio_module_playing.cs b/Examples/audio/audio_module_playing.cs new file mode 100644 index 0000000..f35fb95 --- /dev/null +++ b/Examples/audio/audio_module_playing.cs @@ -0,0 +1,7 @@ +using Raylib; +using static Raylib.Raylib; + +public partial class Examples +{ + /******************************************************************************************* * * raylib [audio] example - Module playing (streaming) * * NOTE: This example requires OpenAL Soft library installed * * This example has been created using raylib 1.5 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2016 Ramon Santamaria (@raysan5) * ********************************************************************************************/ public const #define MAX_CIRCLES 64 struct CircleWave { public Vector2 position; public float radius; public float alpha; public float speed; public Color color; public } CircleWave; public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)Flag.MSAA_4X_HINT); // NOTE: Try to enable MSAA 4X InitWindow(screenWidth, screenHeight, "raylib [audio] example - module playing (streaming)"); InitAudioDevice(); // Initialize audio device Color colors[14] = { ORANGE, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK, YELLOW, GREEN, SKYBLUE, PURPLE, BEIGE }; // Creates ome circles for visual effect CircleWave[] circles = new CircleWave[MAX_CIRCLES]; for (int i = MAX_CIRCLES - 1; i >= 0; i--) { circles[i].alpha = 0.0f; circles[i].radius = GetRandomValue(10, 40); circles[i].position.x = GetRandomValue(circles[i].radius, screenWidth - circles[i].radius); circles[i].position.y = GetRandomValue(circles[i].radius, screenHeight - circles[i].radius); circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f; circles[i].color = colors[GetRandomValue(0, 13)]; } IntPtr xm = LoadMusicStream("resources/mini1111.xm"); PlayMusicStream(xm); float timePlayed = 0.0f; bool pause = false; SetTargetFPS(60); // Set our game to run at 60 frames-per-second //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- UpdateMusicStream(xm); // Update music buffer with new stream data // Restart music playing (stop and play) if (IsKeyPressed((int)Key.SPACE)) { StopMusicStream(xm); PlayMusicStream(xm); } // Pause/Resume music playing if (IsKeyPressed((int)Key.P)) { pause = !pause; if (pause) PauseMusicStream(xm); else ResumeMusicStream(xm); } // Get timePlayed scaled to bar dimensions timePlayed = GetMusicTimePlayed(xm)/GetMusicTimeLength(xm)*(screenWidth - 40); // Color circles animation for (int i = MAX_CIRCLES - 1; (i >= 0) && !pause; i--) { circles[i].alpha += circles[i].speed; circles[i].radius += circles[i].speed*10.0f; if (circles[i].alpha > 1.0f) circles[i].speed *= -1; if (circles[i].alpha <= 0.0f) { circles[i].alpha = 0.0f; circles[i].radius = GetRandomValue(10, 40); circles[i].position.x = GetRandomValue(circles[i].radius, screenWidth - circles[i].radius); circles[i].position.y = GetRandomValue(circles[i].radius, screenHeight - circles[i].radius); circles[i].color = colors[GetRandomValue(0, 13)]; circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f; } } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); for (int i = MAX_CIRCLES - 1; i >= 0; i--) { DrawCircleV(circles[i].position, circles[i].radius, Fade(circles[i].color, circles[i].alpha)); } // Draw time bar DrawRectangle(20, screenHeight - 20 - 12, screenWidth - 40, 12, LIGHTGRAY); DrawRectangle(20, screenHeight - 20 - 12, (int)timePlayed, 12, MAROON); DrawRectangleLines(20, screenHeight - 20 - 12, screenWidth - 40, 12, GRAY); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- UnloadMusicStream(xm); // Unload music stream buffers from RAM CloseAudioDevice(); // Close audio device (music streaming is automatically stopped) CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } +} diff --git a/Examples/Examples/audio/audio_module_playing.png b/Examples/audio/audio_module_playing.png similarity index 100% rename from Examples/Examples/audio/audio_module_playing.png rename to Examples/audio/audio_module_playing.png diff --git a/Examples/audio/audio_music_stream.cs b/Examples/audio/audio_music_stream.cs new file mode 100644 index 0000000..701b006 --- /dev/null +++ b/Examples/audio/audio_music_stream.cs @@ -0,0 +1,7 @@ +using Raylib; +using static Raylib.Raylib; + +public partial class Examples +{ + /******************************************************************************************* * * raylib [audio] example - IntPtr playing (streaming) * * NOTE: This example requires OpenAL Soft library installed * * This example has been created using raylib 1.3 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2015 Ramon Santamaria (@raysan5) * ********************************************************************************************/ public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [audio] example - music playing (streaming)"); InitAudioDevice(); // Initialize audio device IntPtr music = LoadMusicStream("resources/guitar_noodling.ogg"); PlayMusicStream(music); float timePlayed = 0.0f; bool pause = false; SetTargetFPS(60); // Set our game to run at 60 frames-per-second //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- UpdateMusicStream(music); // Update music buffer with new stream data // Restart music playing (stop and play) if (IsKeyPressed((int)Key.SPACE)) { StopMusicStream(music); PlayMusicStream(music); } // Pause/Resume music playing if (IsKeyPressed((int)Key.P)) { pause = !pause; if (pause) PauseMusicStream(music); else ResumeMusicStream(music); } // Get timePlayed scaled to bar dimensions (400 pixels) timePlayed = GetMusicTimePlayed(music)/GetMusicTimeLength(music)*400; //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); DrawText("MUSIC SHOULD BE PLAYING!", 255, 150, 20, LIGHTGRAY); DrawRectangle(200, 200, 400, 12, LIGHTGRAY); DrawRectangle(200, 200, (int)timePlayed, 12, MAROON); DrawRectangleLines(200, 200, 400, 12, GRAY); DrawText("PRESS SPACE TO RESTART MUSIC", 215, 250, 20, LIGHTGRAY); DrawText("PRESS P TO PAUSE/RESUME MUSIC", 208, 280, 20, LIGHTGRAY); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- UnloadMusicStream(music); // Unload music stream buffers from RAM CloseAudioDevice(); // Close audio device (music streaming is automatically stopped) CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } +} diff --git a/Examples/Examples/audio/audio_music_stream.png b/Examples/audio/audio_music_stream.png similarity index 100% rename from Examples/Examples/audio/audio_music_stream.png rename to Examples/audio/audio_music_stream.png diff --git a/Examples/audio/audio_raw_stream.cs b/Examples/audio/audio_raw_stream.cs new file mode 100644 index 0000000..2f30dfe --- /dev/null +++ b/Examples/audio/audio_raw_stream.cs @@ -0,0 +1,7 @@ +using Raylib; +using static Raylib.Raylib; + +public partial class Examples +{ + /******************************************************************************************* * * raylib [audio] example - Raw audio streaming * * NOTE: This example requires OpenAL Soft library installed * * This example has been created using raylib 1.6 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2015 Ramon Santamaria (@raysan5) * ********************************************************************************************/ public const #define MAX_SAMPLES 22050 public const #define MAX_SAMPLES_PER_UPDATE 4096 public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [audio] example - raw audio streaming"); InitAudioDevice(); // Initialize audio device // Init raw audio stream (sample rate: 22050, sample size: 16bit-short, channels: 1-mono) AudioStream stream = InitAudioStream(22050, 16, 1); // Generate samples data from sine wave short *data = (short *)malloc(sizeof(short)*MAX_SAMPLES); // TODO: Review data generation, it seems data is discontinued for loop, // for that reason, there is a clip everytime audio stream is looped... for (int i = 0; i < MAX_SAMPLES; i++) { data[i] = (short)(sinf(((2*PI*(float)i)/2)*DEG2RAD)*32000); } PlayAudioStream(stream); // Start processing stream buffer (no data loaded currently) int totalSamples = MAX_SAMPLES; int samplesLeft = totalSamples; Vector2 position = { 0, 0 }; SetTargetFPS(30); // Set our game to run at 30 frames-per-second //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- // Refill audio stream if required // NOTE: Every update we check if stream data has been already consumed and we update // buffer with new data from the generated samples, we upload data at a rate (MAX_SAMPLES_PER_UPDATE), // but notice that at some point we update < MAX_SAMPLES_PER_UPDATE data... if (IsAudioBufferProcessed(stream)) { int numSamples = 0; if (samplesLeft >= MAX_SAMPLES_PER_UPDATE) numSamples = MAX_SAMPLES_PER_UPDATE; else numSamples = samplesLeft; UpdateAudioStream(stream, data + (totalSamples - samplesLeft), numSamples); samplesLeft -= numSamples; // Reset samples feeding (loop audio) if (samplesLeft <= 0) samplesLeft = totalSamples; } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); DrawText("SINE WAVE SHOULD BE PLAYING!", 240, 140, 20, LIGHTGRAY); // NOTE: Draw a part of the sine wave (only screen width, proportional values) for (int i = 0; i < GetScreenWidth(); i++) { position.x = i; position.y = 250 + 50*data[i]/32000; DrawPixelV(position, RED); } EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- free(data); // Unload sine wave data CloseAudioStream(stream); // Close raw audio stream and delete buffers from RAM CloseAudioDevice(); // Close audio device (music streaming is automatically stopped) CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } +} diff --git a/Examples/Examples/audio/audio_raw_stream.png b/Examples/audio/audio_raw_stream.png similarity index 100% rename from Examples/Examples/audio/audio_raw_stream.png rename to Examples/audio/audio_raw_stream.png diff --git a/Examples/audio/audio_sound_loading.cs b/Examples/audio/audio_sound_loading.cs new file mode 100644 index 0000000..ea71524 --- /dev/null +++ b/Examples/audio/audio_sound_loading.cs @@ -0,0 +1,7 @@ +using Raylib; +using static Raylib.Raylib; + +public partial class Examples +{ + /******************************************************************************************* * * raylib [audio] example - Sound loading and playing * * NOTE: This example requires OpenAL Soft library installed * * This example has been created using raylib 1.0 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2014 Ramon Santamaria (@raysan5) * ********************************************************************************************/ public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [audio] example - sound loading and playing"); InitAudioDevice(); // Initialize audio device Sound fxWav = LoadSound("resources/sound.wav"); // Load WAV audio file Sound fxOgg = LoadSound("resources/tanatana.ogg"); // Load OGG audio file SetTargetFPS(60); //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- if (IsKeyPressed((int)Key.SPACE)) PlaySound(fxWav); // Play WAV sound if (IsKeyPressed((int)Key.ENTER)) PlaySound(fxOgg); // Play OGG sound //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); DrawText("Press SPACE to PLAY the WAV sound!", 200, 180, 20, LIGHTGRAY); DrawText("Press ENTER to PLAY the OGG sound!", 200, 220, 20, LIGHTGRAY); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- UnloadSound(fxWav); // Unload sound data UnloadSound(fxOgg); // Unload sound data CloseAudioDevice(); // Close audio device CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } +} diff --git a/Examples/Examples/audio/audio_sound_loading.png b/Examples/audio/audio_sound_loading.png similarity index 100% rename from Examples/Examples/audio/audio_sound_loading.png rename to Examples/audio/audio_sound_loading.png diff --git a/Examples/Examples/audio/resources/applause.mp3 b/Examples/audio/resources/applause.mp3 similarity index 100% rename from Examples/Examples/audio/resources/applause.mp3 rename to Examples/audio/resources/applause.mp3 diff --git a/Examples/Examples/audio/resources/chiptun1.mod b/Examples/audio/resources/chiptun1.mod similarity index 100% rename from Examples/Examples/audio/resources/chiptun1.mod rename to Examples/audio/resources/chiptun1.mod diff --git a/Examples/Examples/audio/resources/coin.wav b/Examples/audio/resources/coin.wav similarity index 100% rename from Examples/Examples/audio/resources/coin.wav rename to Examples/audio/resources/coin.wav diff --git a/Examples/Examples/audio/resources/guitar_noodling.ogg b/Examples/audio/resources/guitar_noodling.ogg similarity index 100% rename from Examples/Examples/audio/resources/guitar_noodling.ogg rename to Examples/audio/resources/guitar_noodling.ogg diff --git a/Examples/Examples/audio/resources/mini1111.xm b/Examples/audio/resources/mini1111.xm similarity index 100% rename from Examples/Examples/audio/resources/mini1111.xm rename to Examples/audio/resources/mini1111.xm diff --git a/Examples/Examples/audio/resources/sound.wav b/Examples/audio/resources/sound.wav similarity index 100% rename from Examples/Examples/audio/resources/sound.wav rename to Examples/audio/resources/sound.wav diff --git a/Examples/Examples/audio/resources/spring.wav b/Examples/audio/resources/spring.wav similarity index 100% rename from Examples/Examples/audio/resources/spring.wav rename to Examples/audio/resources/spring.wav diff --git a/Examples/Examples/audio/resources/tanatana.flac b/Examples/audio/resources/tanatana.flac similarity index 100% rename from Examples/Examples/audio/resources/tanatana.flac rename to Examples/audio/resources/tanatana.flac diff --git a/Examples/Examples/audio/resources/tanatana.ogg b/Examples/audio/resources/tanatana.ogg similarity index 100% rename from Examples/Examples/audio/resources/tanatana.ogg rename to Examples/audio/resources/tanatana.ogg diff --git a/Examples/Examples/audio/resources/weird.wav b/Examples/audio/resources/weird.wav similarity index 100% rename from Examples/Examples/audio/resources/weird.wav rename to Examples/audio/resources/weird.wav diff --git a/Examples/bin/Debug/Bindings.dll b/Examples/bin/Debug/Bindings.dll deleted file mode 100644 index 2452d28cd3072e39e90feb752f0ed6489379bfc6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 57344 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≧z(uVF5mX+d6YAnO89ZqlBN8XVv=f zKdYueQO+9I83+^%X6f^)I8hAYM$G#}&1$n}RpCCD^9*qe5a)fO=Y8KMPnDp}q?W_n zQiGTGjC3gtoK`i8b+NI^Np<(KNb-GAFv=^j37qw?mKte{4s^4>P%=+Tb zTGUzmRjzZiR{Yy4@5z#l6<02jS_4)dttud{T=F$_2~S`Bm)aXF3Lc6H2Np73vhG~D zq**ptOsJBuG?S>_Pa_G6yT~w|w`nJ@0bbL2khj^@Cf{tH+HI@+qKS)wKqa|CDLX7> zhoyE+W5`x#C0e^?0f+AU z(Q|eOkffQls!bd|i9`WO+OsCmEVX1wh~Uqf_AI3$XY-j+?}4J2x*u9(m-PvwbLt92 zOfpKc@HIZ?3o&OI&Bc{D%SZ%&CTo?h1}K#(cTK)I69rZV25VY#i=kBaGpx1Nw@0a_^BfL1vE%X2{gB?E-z^BIs=dKG}&Tqqajrl!tjx@KBrGaa! zy^LS@^;?C)s+B!Fc=9~ZF|=y9cX)VYU03gDaa~t&&FE;?aPP>Tu2pM#_pDxB94i*r z^4QArM`Mq_V|VU>z%B3Qi*EMsLi%Th&gxD5v10d{?jEGgEvW^v&0XRZOZ}tK62&Ui zLJGz`61Yc`=L-Mj^lSRG&?wEg;lS-q@?giWchxn`qF`A77csy8?T5dT&h?CVAjy(# z7XKndca_p2@7VY?mEzW`GxM);3&K9`9iZSyzX}8nE?vUTG#=%gla(*%;hA;Tbw@ zfJ|Da*S^5s|B_P4cvezw|0}YefDYVE#0+em{~-Gf{Ie;kXw^;EEp=hM-AULarPaQ~ zm}daDxK_BTlJ^n9+cqW#?}XOL`3Ui7>2AZXYQ! zzFp;4aBsN+zg5W5!={3BcalndI=+@hN%tV>j&l-hRg=zbHhCXP@{m-Lx2iX}yjDL= z?z>Ib+eqUur8#OlG4my6tR|ID({a&syfFSJHT_9Fud_ItC<(7=A>%MoPojnY6;FEp He_#IrUTN$6 diff --git a/Examples/bin/Debug/Bindings.dll.config b/Examples/bin/Debug/Bindings.dll.config deleted file mode 100644 index 731f6de..0000000 --- a/Examples/bin/Debug/Bindings.dll.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Examples/bin/Debug/Examples.exe b/Examples/bin/Debug/Examples.exe deleted file mode 100644 index f0d88cb1460a45c16d7d8439d48ab282bf8fb14e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5120 zcmeHKOKcn06}>}BG9^c{l2ZZ<3@!&96nJK4`=9^ zp(GZCp`vLD?~+9WbW=0|8X!d$T?A;*<_9Awx=Dd7+Aa#TUKl9a8b}vj7)6`(+&3JO zlASbNbWxy>nEUR#zjxn#pL;p^^%p5jL=E^p`;6!<^xTFe{9>>McH4oUx6zx;A02#4 zx%|<=%#z`%MaRxNT0zw{%d$N+D^#assfMMdrqgP{&WU(yYs;aE>6uZY+zTOEc=wfm z2DAN*qO>{GMf3zHO#v0XD)C{3JH|u4-#n~}UH9os3)A)QR#!626mDDnPW3y66-tf3 z*f7x>jq6GEqxX*z4b&6;B#Hxq!^%el|m`lf;%cU(sYQTjFvgcsh1 zudWSO7hOmE9F%C~{SPNSFKKUGd(o-tIHJghny} zR}trqTSWKJUx()%Y0ojNyvq_PMB+#2JLb}K4>+Hdj`6vP6#54k-^Y9%Bc`3jm>Wze z<8vWu=E2{UUcw?ELRcclRo*im!(ZBhkMZDxF4_Zy$GioG@>-~gek%sefl0`u1feoQhrYgDC42~fb9yyJWYk0C=xywYN0Ot zT4;&y9-8k5M^C}Je}lOvCC*Xk4Q&bYC`=bsmVKE9!w)h3P>x>MZNaiazm}tyXe9Ix zjDA`1&T@AS~T({NAuRH2JDn@b;l^K zXJSo7!;~7c!qiqJ=GNv7lxH05hweSfNZQ4+W8{|}%PJH#t6bBWEm@vXK%_zUjI3c| zK{f8^s#YkP!i|enLFuyVi9)=h5wFApPZ*6_xs;==Fghagh7}CpA?N6dCQWLFg~Q@U zEur(Ot4775DSS%OHf@LEx(8U9GG%Ca%XU3OcLP%3#f0Sv$1bLYvux<%5w;&o;Z*tl zA%dqk%n%P2NFz9w@-@amu38Cvjn}r=rRnT*@U*I#5w1tP;0&i$d7}LzP7{{lRZv_B zaV@L4hJFoE!ub!D5zN5%Yr-Lo%E%Q4WpQ7hC7o%ZsSM*$6M-D{T>lP|Kiwm2+1nwCjqa6{l=#bX6DfPG^=J zd&N~Cw@G2SRwz_Y99GY?Cl%UOy|C(?*HyKrs~a`nQH2imWV`!&x&}_g`ueq8tS^`A ziD_rF{#b91CiK2VajI)TN5KK}-ToSpI~Cd=pBl}K1&`T@APlHUPQ|<7XWNb{GiA6% zQ!7v5;oHGlYL%l(=?3W{yGity*sJ%s=X9`y?;&c_hntyFYa46a*>o!X!E5GV`p*}h zTKhQJ|KSHWudvDF*@Zb5@99Ev$uZo8l&zNv!t&e&RP}tj+yy^-#B_Hd2-t$1eQsg( zRNsQU!c}s-n9J52_&@eP5P^`aZ&ji-6x=j}e!bIvC5=1q2%Y6N5JBX$s>Bz%k(5-f8&cQ@?5oE`r}*klb3GT^Y(Q z1*pKPhPQMKFDk#+s4DTg+LC{W8qjCJMP-TC)|79wAzy4MKtFBx7A~0rpFBwMyPkiH zrDvoJ*V6v45BY#A>b)`^oB;~>321W$@LRNwSCsRYv0Bb6q9Q?b7XK=g>U=41T$wWr z=t0xK_wkT zk7z{tJ6)NBcZU59c9}>Oztej=iMQTA<}%Ko{NlaA3#$cFUG@v$p(v6~R27zPbHy|ioy&~H2BNC# zX;w}%ZA%PA%fgLbIN#dR+A^qBs&N%2EO#hca;&qizJvtv0Z!7i|KaZtmYQt z%iU46pjpNus;VGy$@ySRRjbA(a>y2_RM+{$DKM&9$Yn#($#SAtL~fTUJFXRr(UZOf z&ndaygtcgYNq>5xQV(;xmBO_$2E`FKOYl?VW*lP~{}A%R{gPID1FI@p&Ccj5=HRmU zvRD?TYBC&(YVL%!i~_}pswE?#qsm1X7d6url|@M-Cm-WY;QGmRz7L+P1_1(tCxab2 KFSq-@0{#VCEW8T< diff --git a/Examples/bin/Debug/Examples.exe.config b/Examples/bin/Debug/Examples.exe.config deleted file mode 100644 index 731f6de..0000000 --- a/Examples/bin/Debug/Examples.exe.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Examples/bin/Debug/x64/raylib.dll b/Examples/bin/Debug/x64/raylib.dll deleted file mode 100644 index 85334a0dc63dd6cc1c764168436166644c7b3658..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3315200 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