- Timestamp:
- 08/21/14 04:02:01 (11 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 2 deleted
- 49 edited
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/io_event.cc
r304 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 6 7 #include "nv/io_event.hh" 8 9 #include <nv/types.hh> 7 #include "nv/core/io_event.hh" 10 8 11 9 using namespace nv; … … 44 42 } 45 43 44 /************************************************************************ 46 45 void nv::register_io_types( type_database* db ) 47 46 { … … 138 137 db->create_type<system_event>("system_event").fields( system_fields ); 139 138 } 139 ************************************************************************/ -
trunk/src/core/library.cc
r295 r319 1 // Copyright (C) 2012 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 #include "nv/co mmon.hh"5 #include "nv/ library.hh"4 #include "nv/core/common.hh" 5 #include "nv/core/library.hh" 6 6 7 7 #if NV_PLATFORM == NV_WINDOWS … … 30 30 #endif 31 31 32 #include "nv/ logging.hh"32 #include "nv/core/logging.hh" 33 33 34 34 using namespace nv; -
trunk/src/core/logger.cc
r295 r319 1 // Copyright (C) 2011 Kornel Kisielewicz1 // Copyright (C) 2011-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 4 5 #include "nv/ logger.hh"6 7 #include "nv/co mmon.hh"5 #include "nv/core/logger.hh" 6 7 #include "nv/core/common.hh" 8 8 #include <iostream> 9 9 #include <utility> … … 12 12 #include <ctime> 13 13 #include <cstdio> 14 #include <nv/exception.hh>14 #include "nv/core/exception.hh" 15 15 #if NV_PLATFORM == NV_WINDOWS 16 16 #define WIN32_LEAN_AND_MEAN -
trunk/src/core/profiler.cc
r205 r319 1 // Copyright (C) 2012-201 3 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 4 5 #include "nv/ profiler.hh"5 #include "nv/core/profiler.hh" 6 6 7 7 #include <iomanip> 8 8 #include <ios> 9 #include "nv/ time.hh"9 #include "nv/core/time.hh" 10 10 11 11 using namespace nv; -
trunk/src/core/random.cc
r308 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 6 7 #include "nv/ random.hh"8 #include "nv/ time.hh"7 #include "nv/core/random.hh" 8 #include "nv/core/time.hh" 9 9 10 10 using namespace nv; -
trunk/src/core/time.cc
r205 r319 1 // Copyright (C) 2011 Kornel Kisielewicz1 // Copyright (C) 2011-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 4 5 #include "nv/ time.hh"5 #include "nv/core/time.hh" 6 6 7 #include "nv/ logging.hh"7 #include "nv/core/logging.hh" 8 8 9 9 #if NV_COMPILER == NV_MSVC -
trunk/src/core/uid.cc
r266 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 6 7 #include "nv/ uid.hh"7 #include "nv/core/uid.hh" 8 8 9 9 using namespace nv; -
trunk/src/curses/curses_terminal.cc
r222 r319 1 // Copyright (C) 2013 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2013-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 7 7 #include "nv/curses/curses_terminal.hh" 8 8 9 #include "nv/ time.hh"9 #include "nv/core/time.hh" 10 10 #include "nv/lib/curses.hh" 11 11 -
trunk/src/engine/program_manager.cc
r317 r319 6 6 7 7 #include "nv/engine/program_manager.hh" 8 #include "nv/ range.hh"8 #include "nv/core/range.hh" 9 9 #include "nv/lua/lua_nova.hh" 10 10 -
trunk/src/engine/resource_system.cc
r316 r319 6 6 7 7 #include "nv/engine/resource_system.hh" 8 #include "nv/ range.hh"8 #include "nv/core/range.hh" 9 9 #include "nv/lua/lua_nova.hh" 10 10 … … 38 38 } 39 39 40 nv::resource_type_id nv::resource_system::register_resource_type( const string& name, resource_manager_base* manager)40 nv::resource_type_id nv::resource_system::register_resource_type( const string& /*name*/, resource_manager_base* /*manager*/ ) 41 41 { 42 42 return 0; 43 43 } 44 44 45 nv::resource_type_id nv::resource_system::get_resource_type_id( const string& name) const45 nv::resource_type_id nv::resource_system::get_resource_type_id( const string& /*name*/ ) const 46 46 { 47 47 return 0; 48 48 } 49 49 50 void nv::resource_system::initialize( lua::state* a_lua_state)50 void nv::resource_system::initialize( lua::state* /*a_lua_state*/ ) 51 51 { 52 52 -
trunk/src/fmod/fmod_audio.cc
r194 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 8 8 9 9 #include "nv/lib/fmod.hh" 10 #include "nv/ logging.hh"10 #include "nv/core/logging.hh" 11 11 12 12 using namespace nv; -
trunk/src/formats/md2_loader.cc
r287 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 8 8 9 9 #include <glm/gtc/constants.hpp> 10 #include "nv/ logging.hh"10 #include "nv/core/logging.hh" 11 11 #include <cstring> 12 12 -
trunk/src/formats/md3_loader.cc
r304 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 8 8 9 9 #include <glm/gtc/constants.hpp> 10 #include "nv/ logging.hh"10 #include "nv/core/logging.hh" 11 11 #include <cstring> 12 12 -
trunk/src/formats/md5_loader.cc
r291 r319 1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz 2 // http://chaosforge.org/ 3 // 1 // Copyright (C) 2012-2014 ChaosForge Ltd 4 2 // This file is part of NV Libraries. 5 3 // For conditions of distribution and use, see copyright notice in nv.hh … … 8 6 9 7 #include <glm/gtc/constants.hpp> 10 #include "nv/ logging.hh"8 #include "nv/core/logging.hh" 11 9 #include "nv/io/std_stream.hh" 12 10 #include <cstring> -
trunk/src/formats/nmd_loader.cc
r292 r319 1 // Copyright (C) 2014 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 7 7 #include "nv/formats/nmd_loader.hh" 8 8 #include "nv/io/std_stream.hh" 9 #include "nv/ string.hh"9 #include "nv/core/string.hh" 10 10 11 11 using namespace nv; -
trunk/src/formats/obj_loader.cc
r287 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/gfx/debug_draw.cc
r313 r319 1 // Copyright (C) 2014 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/gfx/image.cc
r228 r319 1 // Copyright (C) 2011 Kornel Kisielewicz1 // Copyright (C) 2011-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh -
trunk/src/gfx/keyframed_mesh.cc
r314 r319 1 // Copyright (C) 2011 Kornel Kisielewicz1 // Copyright (C) 2011-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh … … 11 11 12 12 13 #include "nv/ logging.hh"13 #include "nv/core/logging.hh" 14 14 15 15 using namespace nv; -
trunk/src/gfx/particle_engine.cc
r313 r319 1 // Copyright (C) 2014 ChaosForge Ltd 2 // This file is part of NV Libraries. 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 1 5 #include "nv/gfx/particle_engine.hh" 2 6 3 7 #include <nv/interface/device.hh> 4 #include <nv/ random.hh>8 #include <nv/core/random.hh> 5 9 #include <nv/lua/lua_glm.hh> 6 #include <nv/ logging.hh>10 #include <nv/core/logging.hh> 7 11 #include <cmath> 8 12 -
trunk/src/gfx/skeletal_mesh.cc
r313 r319 1 // Copyright (C) 2011 Kornel Kisielewicz1 // Copyright (C) 2011-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh -
trunk/src/gfx/texture_atlas.cc
r198 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 7 7 #include "nv/gfx/texture_atlas.hh" 8 8 9 #include "nv/ logging.hh"9 #include "nv/core/logging.hh" 10 10 #include <iostream> 11 11 -
trunk/src/gfx/texture_font.cc
r256 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/gl/gl_context.cc
r313 r319 1 // Copyright (C) 2012-201 3 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh -
trunk/src/gl/gl_device.cc
r316 r319 1 // Copyright (C) 2012-201 3 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh … … 6 6 7 7 #include "nv/gl/gl_window.hh" 8 #include "nv/ logging.hh"8 #include "nv/core/logging.hh" 9 9 #include "nv/lib/sdl.hh" 10 10 #include "nv/lib/sdl_image.hh" -
trunk/src/gl/gl_enum.cc
r316 r319 1 // Copyright (C) 2012-201 3 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh -
trunk/src/gl/gl_window.cc
r310 r319 1 // Copyright (C) 2012-201 3 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh … … 5 5 #include "nv/gl/gl_window.hh" 6 6 7 #include "nv/ logging.hh"7 #include "nv/core/logging.hh" 8 8 #include "nv/lib/gl.hh" 9 9 #include "nv/lib/sdl.hh" -
trunk/src/gui/gui_environment.cc
r318 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/gui/gui_renderer.cc
r318 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/gui/gui_style.cc
r268 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/io/c_file_system.cc
r128 r319 1 // Copyright (C) 2012-201 3 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh -
trunk/src/io/c_stream.cc
r279 r319 1 // Copyright (C) 2012-201 3 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh -
trunk/src/io/std_stream.cc
r198 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/lib/assimp.cc
r250 r319 23 23 #if defined( NV_ASSIMP_DYNAMIC ) 24 24 25 #include "nv/ library.hh"25 #include "nv/core/library.hh" 26 26 27 27 #define NV_ASSIMP_FUN( rtype, fname, fparams ) rtype (NV_ASSIMP_APIENTRY *fname) fparams = nullptr; -
trunk/src/lib/curses.cc
r218 r319 1 // Copyright (C) 2013 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2013-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_CURSES_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_CURSES_FUN( rtype, fname, fparams ) rtype (*fname) fparams = nullptr; -
trunk/src/lib/fmod.cc
r203 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_FMOD_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_FMOD_FUN( rtype, fname, fparams ) rtype (NV_FMOD_APIENTRY *fname) fparams = nullptr; -
trunk/src/lib/freetype2.cc
r167 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_FREETYPE_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_FREETYPE_FUN( rtype, fname, fparams ) rtype (*fname) fparams = nullptr; -
trunk/src/lib/gl.cc
r311 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 6 7 #include "nv/co mmon.hh"8 #include "nv/ range.hh"7 #include "nv/core/common.hh" 8 #include "nv/core/range.hh" 9 9 #include "nv/lib/gl.hh" 10 10 11 11 #if defined( NV_GL_DYNAMIC ) 12 12 13 #include "nv/ library.hh"13 #include "nv/core/library.hh" 14 14 15 15 #if defined( NV_SDL_GL ) -
trunk/src/lib/lua.cc
r198 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_LUA_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #if NV_LUA_VERSION == NV_LUA_52 -
trunk/src/lib/sdl.cc
r171 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_SDL_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_SDL_FUN( rtype, fname, fparams ) rtype (NV_SDL_APIENTRY *fname) fparams = nullptr; -
trunk/src/lib/sdl_image.cc
r168 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_SDL_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_SDL_FUN( rtype, fname, fparams ) rtype (NV_SDL_APIENTRY *fname) fparams = nullptr; -
trunk/src/lib/sdl_mixer.cc
r194 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_SDL_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_SDL_FUN( rtype, fname, fparams ) rtype (NV_SDL_APIENTRY *fname) fparams = nullptr; -
trunk/src/lua/lua_area.cc
r207 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 8 8 9 9 #include "nv/lua/lua_raw.hh" 10 #include "nv/ string.hh"11 #include "nv/ random.hh"10 #include "nv/core/string.hh" 11 #include "nv/core/random.hh" 12 12 13 13 const char* nv::lua::detail::AREA_METATABLE = "area"; -
trunk/src/lua/lua_aux.cc
r207 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #include <utility> 10 10 #include "nv/lua/lua_raw.hh" 11 #include "nv/ random.hh"11 #include "nv/core/random.hh" 12 12 13 13 static int nluaaux_table_copy( lua_State* L ) -
trunk/src/lua/lua_flags.cc
r215 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 8 8 9 9 #include "nv/lua/lua_raw.hh" 10 #include "nv/ string.hh"10 #include "nv/core/string.hh" 11 11 12 12 -
trunk/src/lua/lua_function.cc
r198 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/lua/lua_glm.cc
r207 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 8 8 9 9 #include "nv/lua/lua_raw.hh" 10 #include "nv/ string.hh"11 #include "nv/ random.hh"10 #include "nv/core/string.hh" 11 #include "nv/core/random.hh" 12 12 13 13 static size_t nlua_swizzel_lookup[256]; -
trunk/src/lua/lua_map_area.cc
r265 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 6 6 7 7 #include "nv/lua/lua_map_area.hh" 8 #include "nv/ flags.hh"8 #include "nv/core/flags.hh" 9 9 #include "nv/lua/lua_area.hh" 10 10 #include "nv/lua/lua_glm.hh" -
trunk/src/lua/lua_map_tile.cc
r228 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #include <numeric> 10 10 #include "nv/lua/lua_map_area.hh" 11 #include "nv/ flags.hh"12 #include "nv/ random.hh"11 #include "nv/core/flags.hh" 12 #include "nv/core/random.hh" 13 13 #include "nv/lua/lua_area.hh" 14 14 #include "nv/lua/lua_glm.hh" -
trunk/src/lua/lua_nova.cc
r316 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/lua/lua_path.cc
r204 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/lua/lua_raw.cc
r220 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 7 7 #include "nv/lua/lua_raw.hh" 8 8 9 #include "nv/ string.hh"9 #include "nv/core/string.hh" 10 10 11 11 std::string nlua_typecontent( lua_State* L, int idx ) -
trunk/src/lua/lua_state.cc
r305 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #include "nv/lua/lua_raw.hh" 10 10 #include "nv/lua/lua_nova.hh" 11 #include "nv/ logging.hh"12 #include "nv/ string.hh"11 #include "nv/core/logging.hh" 12 #include "nv/core/string.hh" 13 13 14 14 using namespace nv; -
trunk/src/lua/lua_values.cc
r265 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // -
trunk/src/rogue/fov_recursive_shadowcasting.cc
r276 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 7 7 #include "nv/rogue/fov_recursive_shadowcasting.hh" 8 8 9 #include <nv/math.hh>9 #include "nv/core/math.hh" 10 10 11 11 static int nv_rogue_rs_mult[4][8] = { -
trunk/src/sdl/sdl_audio.cc
r202 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #include "nv/lib/sdl.hh" 10 10 #include "nv/lib/sdl_mixer.hh" 11 #include "nv/ logging.hh"11 #include "nv/core/logging.hh" 12 12 13 13 using namespace nv;
Note: See TracChangeset
for help on using the changeset viewer.