X-Git-Url: https://git.jsancho.org/?p=guile-irrlicht.git;a=blobdiff_plain;f=src%2Fdriver-types.cpp;fp=src%2Fdriver-types.cpp;h=0000000000000000000000000000000000000000;hp=fef8547b35c11e33e52cf59df7b72b4a14b36881;hb=d392bfc335713faab44275624d8fd78139880975;hpb=3bb58c2b45af12c0f9c9eac648e67ac6fa90e104 diff --git a/src/driver-types.cpp b/src/driver-types.cpp deleted file mode 100644 index fef8547..0000000 --- a/src/driver-types.cpp +++ /dev/null @@ -1,66 +0,0 @@ -/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine - - Copyright (C) 2020 Javier Sancho - - This file is part of guile-irrlicht. - - guile-irrlicht is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. - - guile-irrlicht is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with guile-irrlicht. If not, see - . -*/ - -#include -#include -#include "driver-types.h" - -using namespace irr; - -video::E_DRIVER_TYPE -scm_to_driver_type (SCM driver_type) -{ - char* type_name = scm_to_utf8_string (scm_symbol_to_string (driver_type)); - video::E_DRIVER_TYPE type; - - if (!strcmp (type_name, "null")) - { - type = video::EDT_NULL; - } - else if (!strcmp (type_name, "software")) - { - type = video::EDT_SOFTWARE; - } - else if (!strcmp (type_name, "burnings")) - { - type = video::EDT_BURNINGSVIDEO; - } - else if (!strcmp (type_name, "direct3d8")) - { - type = video::EDT_DIRECT3D8; - } - else if (!strcmp (type_name, "direct3d9")) - { - type = video::EDT_DIRECT3D9; - } - else if (!strcmp (type_name, "opengl")) - { - type = video::EDT_OPENGL; - } - else - { - scm_error (scm_arg_type_key, NULL, "Wrong driver type: ~S", - scm_list_1 (driver_type), scm_list_1 (driver_type)); - } - - free (type_name); - return type; -}