X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fvideo-driver.cpp;h=57231a6d2623bd342aa934df16b4a9ccbefcd7d7;hb=3394d6066c9092a5444c9273f52cea01e2eaf10f;hp=632f0dec46a8170ec7e4a56fcfc8dadefd157139;hpb=fb9011bf9160be890e0a6b98fcff9ed95ae0bd77;p=guile-irrlicht.git diff --git a/src/video-driver.cpp b/src/video-driver.cpp index 632f0de..57231a6 100644 --- a/src/video-driver.cpp +++ b/src/video-driver.cpp @@ -22,7 +22,9 @@ #include #include +#include "color.h" #include "device.h" +#include "rect.h" #include "texture.h" #include "video-driver.h" #include "wrapped.h" @@ -33,14 +35,51 @@ extern "C" { init_video_driver (void) { init_video_driver_type (); + scm_c_define_gsubr ("begin-scene", 1, 0, 1, (scm_t_subr)irr_video_beginScene); scm_c_define_gsubr ("get-texture", 2, 0, 0, (scm_t_subr)irr_video_getTexture); scm_c_define_gsubr ("get-video-driver", 1, 0, 0, (scm_t_subr)irr_getVideoDriver); + scm_c_export ("begin-scene", "get-texture", "get-video-driver", NULL); } DEFINE_WRAPPED_TYPE (irr::video::IVideoDriver*, "video-driver", init_video_driver_type, video_driver_p, wrap_video_driver, unwrap_video_driver); + SCM + irr_video_beginScene (SCM wrapped_video_driver, + SCM rest) + { + SCM back_buffer = scm_from_bool(1); + SCM z_buffer = scm_from_bool(1); + SCM color = scm_list_4 (scm_from_uint32 (255), + scm_from_uint32 (0), + scm_from_uint32 (0), + scm_from_uint32 (0)); + SCM video_data = scm_from_bool(0); + SCM source_rect = scm_from_bool(0); + + scm_c_bind_keyword_arguments ("begin-scene", rest, (scm_t_keyword_arguments_flags)0, + scm_from_utf8_keyword ("back-buffer"), &back_buffer, + scm_from_utf8_keyword ("z-buffer"), &z_buffer, + scm_from_utf8_keyword ("color"), &color, + scm_from_utf8_keyword ("video-data"), &video_data, + scm_from_utf8_keyword ("source-rect"), &source_rect, + SCM_UNDEFINED); + + irr::video::IVideoDriver* driver = unwrap_video_driver (wrapped_video_driver); + irr::core::rect* sourceRectAddress = 0; + if (!scm_is_false (source_rect)) + { + irr::core::rect sourceRect = scm_to_rect_s32 (source_rect); + sourceRectAddress = &sourceRect; + } + return scm_from_bool (driver->beginScene (scm_to_bool (back_buffer), + scm_to_bool (z_buffer), + scm_to_color (color), + irr::video::SExposedVideoData (), + sourceRectAddress)); + } + SCM irr_video_getTexture (SCM wrapped_video_driver, SCM filename)