Changeset 319 for trunk/src


Ignore:
Timestamp:
08/21/14 04:02:01 (11 years ago)
Author:
epyon
Message:
  • created core module and moved all free source files there
  • took the opportunity to update all copyright lines and minor cleanup
  • minor fixes
  • not all examples are up to date
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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    55// For conditions of distribution and use, see copyright notice in nv.hh
    66
    7 #include "nv/io_event.hh"
    8 
    9 #include <nv/types.hh>
     7#include "nv/core/io_event.hh"
    108
    119using namespace nv;
     
    4442}
    4543
     44/************************************************************************
    4645void nv::register_io_types( type_database* db )
    4746{
     
    138137        db->create_type<system_event>("system_event").fields( system_fields );
    139138}
     139************************************************************************/
  • trunk/src/core/library.cc

    r295 r319  
    1 // Copyright (C) 2012 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
    4 #include "nv/common.hh"
    5 #include "nv/library.hh"
     4#include "nv/core/common.hh"
     5#include "nv/core/library.hh"
    66
    77#if NV_PLATFORM == NV_WINDOWS
     
    3030#endif
    3131
    32 #include "nv/logging.hh"
     32#include "nv/core/logging.hh"
    3333
    3434using namespace nv;
  • trunk/src/core/logger.cc

    r295 r319  
    1 // Copyright (C) 2011 Kornel Kisielewicz
     1// Copyright (C) 2011-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
    44
    5 #include "nv/logger.hh"
    6 
    7 #include "nv/common.hh"
     5#include "nv/core/logger.hh"
     6
     7#include "nv/core/common.hh"
    88#include <iostream>
    99#include <utility>
     
    1212#include <ctime>
    1313#include <cstdio>
    14 #include <nv/exception.hh>
     14#include "nv/core/exception.hh"
    1515#if NV_PLATFORM == NV_WINDOWS
    1616#define WIN32_LEAN_AND_MEAN
  • trunk/src/core/profiler.cc

    r205 r319  
    1 // Copyright (C) 2012-2013 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
    44
    5 #include "nv/profiler.hh"
     5#include "nv/core/profiler.hh"
    66
    77#include <iomanip>
    88#include <ios>
    9 #include "nv/time.hh"
     9#include "nv/core/time.hh"
    1010
    1111using namespace nv;
  • trunk/src/core/random.cc

    r308 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    55// For conditions of distribution and use, see copyright notice in nv.hh
    66
    7 #include "nv/random.hh"
    8 #include "nv/time.hh"
     7#include "nv/core/random.hh"
     8#include "nv/core/time.hh"
    99
    1010using namespace nv;
  • trunk/src/core/time.cc

    r205 r319  
    1 // Copyright (C) 2011 Kornel Kisielewicz
     1// Copyright (C) 2011-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
    44
    5 #include "nv/time.hh"
     5#include "nv/core/time.hh"
    66
    7 #include "nv/logging.hh"
     7#include "nv/core/logging.hh"
    88
    99#if NV_COMPILER == NV_MSVC
  • trunk/src/core/uid.cc

    r266 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    55// For conditions of distribution and use, see copyright notice in nv.hh
    66
    7 #include "nv/uid.hh"
     7#include "nv/core/uid.hh"
    88
    99using namespace nv;
  • trunk/src/curses/curses_terminal.cc

    r222 r319  
    1 // Copyright (C) 2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2013-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    77#include "nv/curses/curses_terminal.hh"
    88
    9 #include "nv/time.hh"
     9#include "nv/core/time.hh"
    1010#include "nv/lib/curses.hh"
    1111
  • trunk/src/engine/program_manager.cc

    r317 r319  
    66
    77#include "nv/engine/program_manager.hh"
    8 #include "nv/range.hh"
     8#include "nv/core/range.hh"
    99#include "nv/lua/lua_nova.hh"
    1010
  • trunk/src/engine/resource_system.cc

    r316 r319  
    66
    77#include "nv/engine/resource_system.hh"
    8 #include "nv/range.hh"
     8#include "nv/core/range.hh"
    99#include "nv/lua/lua_nova.hh"
    1010
     
    3838}
    3939
    40 nv::resource_type_id nv::resource_system::register_resource_type( const string& name, resource_manager_base* manager )
     40nv::resource_type_id nv::resource_system::register_resource_type( const string& /*name*/, resource_manager_base* /*manager*/ )
    4141{
    4242        return 0;
    4343}
    4444
    45 nv::resource_type_id nv::resource_system::get_resource_type_id( const string& name ) const
     45nv::resource_type_id nv::resource_system::get_resource_type_id( const string& /*name*/ ) const
    4646{
    4747        return 0;
    4848}
    4949
    50 void nv::resource_system::initialize( lua::state* a_lua_state )
     50void nv::resource_system::initialize( lua::state* /*a_lua_state*/ )
    5151{
    5252
  • trunk/src/fmod/fmod_audio.cc

    r194 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    88
    99#include "nv/lib/fmod.hh"
    10 #include "nv/logging.hh"
     10#include "nv/core/logging.hh"
    1111
    1212using namespace nv;
  • trunk/src/formats/md2_loader.cc

    r287 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    88
    99#include <glm/gtc/constants.hpp>
    10 #include "nv/logging.hh"
     10#include "nv/core/logging.hh"
    1111#include <cstring>
    1212
  • trunk/src/formats/md3_loader.cc

    r304 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    88
    99#include <glm/gtc/constants.hpp>
    10 #include "nv/logging.hh"
     10#include "nv/core/logging.hh"
    1111#include <cstring>
    1212
  • 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
    42// This file is part of NV Libraries.
    53// For conditions of distribution and use, see copyright notice in nv.hh
     
    86
    97#include <glm/gtc/constants.hpp>
    10 #include "nv/logging.hh"
     8#include "nv/core/logging.hh"
    119#include "nv/io/std_stream.hh"
    1210#include <cstring>
  • trunk/src/formats/nmd_loader.cc

    r292 r319  
    1 // Copyright (C) 2014 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    77#include "nv/formats/nmd_loader.hh"
    88#include "nv/io/std_stream.hh"
    9 #include "nv/string.hh"
     9#include "nv/core/string.hh"
    1010
    1111using namespace nv;
  • trunk/src/formats/obj_loader.cc

    r287 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/gfx/debug_draw.cc

    r313 r319  
    1 // Copyright (C) 2014 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/gfx/image.cc

    r228 r319  
    1 // Copyright (C) 2011 Kornel Kisielewicz
     1// Copyright (C) 2011-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// 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 Kisielewicz
     1// Copyright (C) 2011-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
     
    1111
    1212
    13 #include "nv/logging.hh"
     13#include "nv/core/logging.hh"
    1414
    1515using 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
    15#include "nv/gfx/particle_engine.hh"
    26
    37#include <nv/interface/device.hh>
    4 #include <nv/random.hh>
     8#include <nv/core/random.hh>
    59#include <nv/lua/lua_glm.hh>
    6 #include <nv/logging.hh>
     10#include <nv/core/logging.hh>
    711#include <cmath>
    812
  • trunk/src/gfx/skeletal_mesh.cc

    r313 r319  
    1 // Copyright (C) 2011 Kornel Kisielewicz
     1// Copyright (C) 2011-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
  • trunk/src/gfx/texture_atlas.cc

    r198 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    77#include "nv/gfx/texture_atlas.hh"
    88
    9 #include "nv/logging.hh"
     9#include "nv/core/logging.hh"
    1010#include <iostream>
    1111
  • trunk/src/gfx/texture_font.cc

    r256 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/gl/gl_context.cc

    r313 r319  
    1 // Copyright (C) 2012-2013 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
  • trunk/src/gl/gl_device.cc

    r316 r319  
    1 // Copyright (C) 2012-2013 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
     
    66
    77#include "nv/gl/gl_window.hh"
    8 #include "nv/logging.hh"
     8#include "nv/core/logging.hh"
    99#include "nv/lib/sdl.hh"
    1010#include "nv/lib/sdl_image.hh"
  • trunk/src/gl/gl_enum.cc

    r316 r319  
    1 // Copyright (C) 2012-2013 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
  • trunk/src/gl/gl_window.cc

    r310 r319  
    1 // Copyright (C) 2012-2013 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
     
    55#include "nv/gl/gl_window.hh"
    66
    7 #include "nv/logging.hh"
     7#include "nv/core/logging.hh"
    88#include "nv/lib/gl.hh"
    99#include "nv/lib/sdl.hh"
  • trunk/src/gui/gui_environment.cc

    r318 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/gui/gui_renderer.cc

    r318 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/gui/gui_style.cc

    r268 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/io/c_file_system.cc

    r128 r319  
    1 // Copyright (C) 2012-2013 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
  • trunk/src/io/c_stream.cc

    r279 r319  
    1 // Copyright (C) 2012-2013 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
  • trunk/src/io/std_stream.cc

    r198 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/lib/assimp.cc

    r250 r319  
    2323#if defined( NV_ASSIMP_DYNAMIC )
    2424
    25 #include "nv/library.hh"
     25#include "nv/core/library.hh"
    2626
    2727#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 Kisielewicz
     1// Copyright (C) 2013-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_CURSES_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#define NV_CURSES_FUN( rtype, fname, fparams ) rtype (*fname) fparams = nullptr;
  • trunk/src/lib/fmod.cc

    r203 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_FMOD_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_FREETYPE_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#define NV_FREETYPE_FUN( rtype, fname, fparams ) rtype (*fname) fparams = nullptr;
  • trunk/src/lib/gl.cc

    r311 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    55// For conditions of distribution and use, see copyright notice in nv.hh
    66
    7 #include "nv/common.hh"
    8 #include "nv/range.hh"
     7#include "nv/core/common.hh"
     8#include "nv/core/range.hh"
    99#include "nv/lib/gl.hh"
    1010
    1111#if defined( NV_GL_DYNAMIC )
    1212
    13 #include "nv/library.hh"
     13#include "nv/core/library.hh"
    1414
    1515#if defined( NV_SDL_GL )
  • trunk/src/lib/lua.cc

    r198 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_LUA_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#if NV_LUA_VERSION == NV_LUA_52
  • trunk/src/lib/sdl.cc

    r171 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_SDL_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_SDL_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_SDL_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    88
    99#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"
    1212
    1313const char* nv::lua::detail::AREA_METATABLE = "area";
  • trunk/src/lua/lua_aux.cc

    r207 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#include <utility>
    1010#include "nv/lua/lua_raw.hh"
    11 #include "nv/random.hh"
     11#include "nv/core/random.hh"
    1212
    1313static int nluaaux_table_copy( lua_State* L )
  • trunk/src/lua/lua_flags.cc

    r215 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    88
    99#include "nv/lua/lua_raw.hh"
    10 #include "nv/string.hh"
     10#include "nv/core/string.hh"
    1111
    1212
  • trunk/src/lua/lua_function.cc

    r198 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/lua/lua_glm.cc

    r207 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    88
    99#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"
    1212
    1313static size_t nlua_swizzel_lookup[256];
  • trunk/src/lua/lua_map_area.cc

    r265 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    66
    77#include "nv/lua/lua_map_area.hh"
    8 #include "nv/flags.hh"
     8#include "nv/core/flags.hh"
    99#include "nv/lua/lua_area.hh"
    1010#include "nv/lua/lua_glm.hh"
  • trunk/src/lua/lua_map_tile.cc

    r228 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#include <numeric>
    1010#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"
    1313#include "nv/lua/lua_area.hh"
    1414#include "nv/lua/lua_glm.hh"
  • trunk/src/lua/lua_nova.cc

    r316 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/lua/lua_path.cc

    r204 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/lua/lua_raw.cc

    r220 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    77#include "nv/lua/lua_raw.hh"
    88
    9 #include "nv/string.hh"
     9#include "nv/core/string.hh"
    1010
    1111std::string nlua_typecontent( lua_State* L, int idx )
  • trunk/src/lua/lua_state.cc

    r305 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#include "nv/lua/lua_raw.hh"
    1010#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"
    1313
    1414using namespace nv;
  • trunk/src/lua/lua_values.cc

    r265 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
  • trunk/src/rogue/fov_recursive_shadowcasting.cc

    r276 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    77#include "nv/rogue/fov_recursive_shadowcasting.hh"
    88
    9 #include <nv/math.hh>
     9#include "nv/core/math.hh"
    1010
    1111static int nv_rogue_rs_mult[4][8] = {
  • trunk/src/sdl/sdl_audio.cc

    r202 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#include "nv/lib/sdl.hh"
    1010#include "nv/lib/sdl_mixer.hh"
    11 #include "nv/logging.hh"
     11#include "nv/core/logging.hh"
    1212
    1313using namespace nv;
Note: See TracChangeset for help on using the changeset viewer.