From 63b4aa35a8ffc4bd897fc18ce26fc44d3397bdb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Neum=C3=BCller?= Date: Tue, 25 Jun 2013 12:32:26 +0200 Subject: [PATCH] Put everything under BSD 2-Clause License. --- CMakelists.txt | 4 ++++ LICENSE-template.txt | 3 +++ LICENSE.txt | 23 ++++++++++++++++++++ README.md | 5 +++-- base.jd/mkzip.py | 6 ++++- src/CMakeLists.txt | 4 ++++ src/Logfile.cpp | 4 ++++ src/Logfile.hpp | 4 ++++ src/LuaUtils.cpp | 4 ++++ src/LuaUtils.hpp | 4 ++++ src/MapInfo.cpp | 4 ++++ src/MapInfo.hpp | 4 ++++ src/State.hpp | 4 ++++ src/Tilemap.cpp | 4 ++++ src/Tilemap.hpp | 4 ++++ src/TransformGroup.cpp | 4 ++++ src/TransformGroup.hpp | 4 ++++ src/WeakRef.hpp | 4 ++++ src/base64.cpp | 4 ++++ src/base64.hpp | 4 ++++ src/cmdline.hpp | 4 ++++ src/collision/Collisions.cpp | 4 ++++ src/collision/Collisions.hpp | 4 ++++ src/collision/RectCollideableGroup.cpp | 4 ++++ src/collision/RectCollideableGroup.hpp | 4 ++++ src/collision/TileCollideableGroup.cpp | 4 ++++ src/collision/TileCollideableGroup.hpp | 4 ++++ src/comp/PositionComponent.cpp | 4 ++++ src/comp/PositionComponent.hpp | 4 ++++ src/comp/RectCollisionComponent.cpp | 4 ++++ src/comp/RectCollisionComponent.hpp | 4 ++++ src/comp/TileCollisionComponent.cpp | 4 ++++ src/comp/TileCollisionComponent.hpp | 4 ++++ src/comp/TilePositionComponent.cpp | 4 ++++ src/comp/TilePositionComponent.hpp | 4 ++++ src/compsys/BasicMetaComponent.hpp | 4 ++++ src/compsys/Component.cpp | 4 ++++ src/compsys/Component.hpp | 4 ++++ src/compsys/ComponentRegistry.cpp | 4 ++++ src/compsys/ComponentRegistry.hpp | 4 ++++ src/compsys/Entity.cpp | 4 ++++ src/compsys/Entity.hpp | 4 ++++ src/compsys/MetaComponent.cpp | 4 ++++ src/compsys/MetaComponent.hpp | 4 ++++ src/createComponent.py | 7 ++++++ src/encoding.cpp | 4 ++++ src/encoding.hpp | 4 ++++ src/exceptions.hpp | 4 ++++ src/jdConfig.cpp | 4 ++++ src/jdConfig.hpp | 4 ++++ src/luaexport/Collisions.cpp | 4 ++++ src/luaexport/DrawServiceMeta.cpp | 4 ++++ src/luaexport/EntitySystem.cpp | 4 ++++ src/luaexport/EventDispatcherMeta.cpp | 4 ++++ src/luaexport/ExportThis.hpp | 4 ++++ src/luaexport/FileSystemMeta.cpp | 4 ++++ src/luaexport/Geometry.cpp | 4 ++++ src/luaexport/Logfile.cpp | 4 ++++ src/luaexport/LuaEventHelpers.hpp | 4 ++++ src/luaexport/LuaExportHelpers.cpp | 4 ++++ src/luaexport/LuaExportMacros.hpp | 4 ++++ src/luaexport/LuaExtra.cpp | 4 ++++ src/luaexport/LuaFunction.hpp | 4 ++++ src/luaexport/LuaPackage.cpp | 4 ++++ src/luaexport/MainloopMeta.cpp | 4 ++++ src/luaexport/RectCollisionComponentMeta.cpp | 4 ++++ src/luaexport/ServiceLocator.cpp | 4 ++++ src/luaexport/SfBaseTypes.hpp | 4 ++++ src/luaexport/SfGraphics.cpp | 4 ++++ src/luaexport/SfSystem.cpp | 4 ++++ src/luaexport/SfWindow.cpp | 4 ++++ src/luaexport/SoundManagerMeta.cpp | 4 ++++ src/luaexport/State.cpp | 4 ++++ src/luaexport/StateManagerMeta.cpp | 4 ++++ src/luaexport/TileCollisionComponentMeta.cpp | 4 ++++ src/luaexport/TilePositionComponentMeta.cpp | 4 ++++ src/luaexport/Tilemap.cpp | 4 ++++ src/luaexport/TimerMeta.cpp | 4 ++++ src/luaexport/container.hpp | 4 ++++ src/luaexport/luaIo.cpp | 4 ++++ src/luaexport/resources.hpp | 4 ++++ src/luaexport/sharedPtrConverter.hpp | 4 ++++ src/main.cpp | 9 ++++++++ src/ressys/AutoFont.hpp | 4 ++++ src/ressys/AutoResource.hpp | 4 ++++ src/ressys/AutoSoundBuffer.hpp | 4 ++++ src/ressys/AutoTexture.hpp | 4 ++++ src/ressys/ResourceLoaders.hpp | 4 ++++ src/ressys/ResourceManager.hpp | 4 ++++ src/ressys/ResourceManager.inl | 4 ++++ src/ressys/VFileFont.hpp | 4 ++++ src/ressys/VFileMusic.hpp | 4 ++++ src/ressys/resfwd.hpp | 4 ++++ src/ressys/resourceLoaders.cpp | 4 ++++ src/sfKeyCodes.hpp | 4 ++++ src/sfUtil.cpp | 4 ++++ src/sfUtil.hpp | 4 ++++ src/ssig.hpp | 4 ++++ src/ssig_template.hpp | 4 ++++ src/svc/Configuration.cpp | 4 ++++ src/svc/Configuration.hpp | 4 ++++ src/svc/DrawService.cpp | 4 ++++ src/svc/DrawService.hpp | 4 ++++ src/svc/EventDispatcher.cpp | 4 ++++ src/svc/EventDispatcher.hpp | 4 ++++ src/svc/FileSystem.cpp | 5 ++++- src/svc/FileSystem.hpp | 4 ++++ src/svc/LuaVm.cpp | 4 ++++ src/svc/LuaVm.hpp | 4 ++++ src/svc/Mainloop.cpp | 4 ++++ src/svc/Mainloop.hpp | 4 ++++ src/svc/ServiceLocator.cpp | 4 ++++ src/svc/ServiceLocator.hpp | 4 ++++ src/svc/SoundManager.cpp | 4 ++++ src/svc/SoundManager.hpp | 4 ++++ src/svc/StateManager.cpp | 4 ++++ src/svc/StateManager.hpp | 4 ++++ src/svc/Timer.cpp | 4 ++++ src/svc/Timer.hpp | 4 ++++ 119 files changed, 502 insertions(+), 4 deletions(-) create mode 100644 LICENSE-template.txt create mode 100644 LICENSE.txt diff --git a/CMakelists.txt b/CMakelists.txt index 072ed32..bf8b76f 100644 --- a/CMakelists.txt +++ b/CMakelists.txt @@ -1,3 +1,7 @@ +# Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +# This file is subject to the terms of the BSD 2-Clause License. +# See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + cmake_minimum_required(VERSION 2.6) project(JadeEngine) diff --git a/LICENSE-template.txt b/LICENSE-template.txt new file mode 100644 index 0000000..32fb4b8 --- /dev/null +++ b/LICENSE-template.txt @@ -0,0 +1,3 @@ +Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +This file is subject to the terms of the BSD 2-Clause License. +See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..706cef2 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,23 @@ +Jade Game Engine -- Copyright (c) 2012--2013, Christian Neumüller +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md index 80dfe7e..726dcdf 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ Title: Jade Engine README Author: Christian Neumüller - JadeEngine ========== @@ -73,4 +72,6 @@ two options: command line). -> (C) Christian Neumüller 2012 -- 2013 +> Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +> This file is subject to the terms of the BSD 2-Clause License. +> See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause. diff --git a/base.jd/mkzip.py b/base.jd/mkzip.py index f47e36e..cfc245e 100644 --- a/base.jd/mkzip.py +++ b/base.jd/mkzip.py @@ -1,6 +1,10 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +# This file is subject to the terms of the BSD 2-Clause License. +# See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + from zipfile import ZipFile, ZIP_DEFLATED from os import path import os @@ -24,4 +28,4 @@ def main(): zip_file.write(input) if __name__ == '__main__': - main() \ No newline at end of file + main() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5ef67d2..770e26c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,3 +1,7 @@ +# Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +# This file is subject to the terms of the BSD 2-Clause License. +# See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + set(SVC_HEADERS svc/Mainloop.hpp svc/StateManager.hpp diff --git a/src/Logfile.cpp b/src/Logfile.cpp index 825c4f8..3ee0a06 100644 --- a/src/Logfile.cpp +++ b/src/Logfile.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Logfile.hpp" #include "encoding.hpp" diff --git a/src/Logfile.hpp b/src/Logfile.hpp index 4024024..774a6bb 100644 --- a/src/Logfile.hpp +++ b/src/Logfile.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #pragma once #include diff --git a/src/LuaUtils.cpp b/src/LuaUtils.cpp index 5fc11ad..efdfa98 100644 --- a/src/LuaUtils.cpp +++ b/src/LuaUtils.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "luaUtils.hpp" #include "svc/FileSystem.hpp" diff --git a/src/LuaUtils.hpp b/src/LuaUtils.hpp index a1ebc63..2b22c93 100644 --- a/src/LuaUtils.hpp +++ b/src/LuaUtils.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef LUA_UTILS_HPP_INCLUDED #define LUA_UTILS_HPP_INCLUDED LUA_UTILS_HPP_INCLUDED diff --git a/src/MapInfo.cpp b/src/MapInfo.cpp index 78a98b3..ff16d55 100644 --- a/src/MapInfo.cpp +++ b/src/MapInfo.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "MapInfo.hpp" #include "base64.hpp" diff --git a/src/MapInfo.hpp b/src/MapInfo.hpp index 2d5ba21..747287a 100644 --- a/src/MapInfo.hpp +++ b/src/MapInfo.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef MAP_INFO_HPP_INCLUDED #define MAP_INFO_HPP_INCLUDED MAP_INFO_HPP_INCLUDED diff --git a/src/State.hpp b/src/State.hpp index 8296d79..c04a7e3 100644 --- a/src/State.hpp +++ b/src/State.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef STATE_HPP_INCLUDED #define STATE_HPP_INCLUDED STATE_HPP_INCLUDED diff --git a/src/Tilemap.cpp b/src/Tilemap.cpp index 00e5645..99cbf33 100644 --- a/src/Tilemap.cpp +++ b/src/Tilemap.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Tilemap.hpp" #include "sfUtil.hpp" diff --git a/src/Tilemap.hpp b/src/Tilemap.hpp index b579039..9a56d48 100644 --- a/src/Tilemap.hpp +++ b/src/Tilemap.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef TILEMAP_HPP_INCLUDED #define TILEMAP_HPP_INCLUDED TILEMAP_HPP_INCLUDED diff --git a/src/TransformGroup.cpp b/src/TransformGroup.cpp index 400767d..979b4a9 100644 --- a/src/TransformGroup.cpp +++ b/src/TransformGroup.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "TransformGroup.hpp" #include diff --git a/src/TransformGroup.hpp b/src/TransformGroup.hpp index 53561cb..e4f42c1 100644 --- a/src/TransformGroup.hpp +++ b/src/TransformGroup.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef TRANSFORM_GROUP_HPP_INCLUDED #define TRANSFORM_GROUP_HPP_INCLUDED TRANSFORM_GROUP_HPP_INCLUDED diff --git a/src/WeakRef.hpp b/src/WeakRef.hpp index 7ed01a1..9cd846e 100644 --- a/src/WeakRef.hpp +++ b/src/WeakRef.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef WEAK_REF_HPP_INCLUDED #define WEAK_REF_HPP_INCLUDED WEAK_REF_HPP_INCLUDED diff --git a/src/base64.cpp b/src/base64.cpp index 4aecea6..3171e2d 100644 --- a/src/base64.cpp +++ b/src/base64.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "base64.hpp" #include diff --git a/src/base64.hpp b/src/base64.hpp index ac29be6..bb79a71 100644 --- a/src/base64.hpp +++ b/src/base64.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef BASE64_HPP_INCLUDED #define BASE64_HPP_INCLUDED BASE64_HPP_INCLUDED diff --git a/src/cmdline.hpp b/src/cmdline.hpp index 401cd2d..369f0ce 100644 --- a/src/cmdline.hpp +++ b/src/cmdline.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef CMDLINE_HPP_INCLUDED #define CMDLINE_HPP_INCLUDED CMDLINE_HPP_INCLUDED diff --git a/src/collision/Collisions.cpp b/src/collision/Collisions.cpp index e66741d..fa9763f 100644 --- a/src/collision/Collisions.cpp +++ b/src/collision/Collisions.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Collisions.hpp" #include "Logfile.hpp" diff --git a/src/collision/Collisions.hpp b/src/collision/Collisions.hpp index aad91b6..90a9093 100644 --- a/src/collision/Collisions.hpp +++ b/src/collision/Collisions.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef COLLISIONS_HPP_INCLUDED #define COLLISIONS_HPP_INCLUDED COLLISIONS_HPP_INCLUDED diff --git a/src/collision/RectCollideableGroup.cpp b/src/collision/RectCollideableGroup.cpp index 5d0512d..9af449d 100644 --- a/src/collision/RectCollideableGroup.cpp +++ b/src/collision/RectCollideableGroup.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "RectCollideableGroup.hpp" #include "comp/PositionComponent.hpp" diff --git a/src/collision/RectCollideableGroup.hpp b/src/collision/RectCollideableGroup.hpp index 2581370..b2206e0 100644 --- a/src/collision/RectCollideableGroup.hpp +++ b/src/collision/RectCollideableGroup.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef RECT_COLLIDEABLE_GROUP_HPP_INCLUDED #define RECT_COLLIDEABLE_GROUP_HPP_INCLUDED RECT_COLLIDEABLE_GROUP_HPP_INCLUDED diff --git a/src/collision/TileCollideableGroup.cpp b/src/collision/TileCollideableGroup.cpp index fd6d9a6..3478ed9 100644 --- a/src/collision/TileCollideableGroup.cpp +++ b/src/collision/TileCollideableGroup.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "TileCollideableGroup.hpp" #include "comp/TileCollisionComponent.hpp" diff --git a/src/collision/TileCollideableGroup.hpp b/src/collision/TileCollideableGroup.hpp index 54a9d79..896073c 100644 --- a/src/collision/TileCollideableGroup.hpp +++ b/src/collision/TileCollideableGroup.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef TILE_COLLIDEABLE_GROUP_HPP_INCLUDED #define TILE_COLLIDEABLE_GROUP_HPP_INCLUDED TILE_COLLIDEABLE_GROUP_HPP_INCLUDED diff --git a/src/comp/PositionComponent.cpp b/src/comp/PositionComponent.cpp index 365dbbc..1b32e11 100644 --- a/src/comp/PositionComponent.cpp +++ b/src/comp/PositionComponent.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "PositionComponent.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/comp/PositionComponent.hpp b/src/comp/PositionComponent.hpp index a995b1e..a0cfab6 100644 --- a/src/comp/PositionComponent.hpp +++ b/src/comp/PositionComponent.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef POSITION_COMPONENT_HPP_INCLUDED #define POSITION_COMPONENT_HPP_INCLUDED POSITION_COMPONENT_HPP_INCLUDED diff --git a/src/comp/RectCollisionComponent.cpp b/src/comp/RectCollisionComponent.cpp index 1a25c91..c5cd4ee 100644 --- a/src/comp/RectCollisionComponent.cpp +++ b/src/comp/RectCollisionComponent.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "RectCollisionComponent.hpp" RectCollisionComponent::RectCollisionComponent() diff --git a/src/comp/RectCollisionComponent.hpp b/src/comp/RectCollisionComponent.hpp index 2a5c325..3d1f980 100644 --- a/src/comp/RectCollisionComponent.hpp +++ b/src/comp/RectCollisionComponent.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef RECTCOLLISIONCOMPONENT_HPP_INCLUDED #define RECTCOLLISIONCOMPONENT_HPP_INCLUDED RECTCOLLISIONCOMPONENT_HPP_INCLUDED diff --git a/src/comp/TileCollisionComponent.cpp b/src/comp/TileCollisionComponent.cpp index 8c1197a..9a5ad07 100644 --- a/src/comp/TileCollisionComponent.cpp +++ b/src/comp/TileCollisionComponent.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "TileCollisionComponent.hpp" #include "collision/TileCollideableGroup.hpp" diff --git a/src/comp/TileCollisionComponent.hpp b/src/comp/TileCollisionComponent.hpp index e98746a..ff567be 100644 --- a/src/comp/TileCollisionComponent.hpp +++ b/src/comp/TileCollisionComponent.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef TILE_COLLISION_COMPONENT_HPP_INCLUDED #define TILE_COLLISION_COMPONENT_HPP_INCLUDED TILE_COLLISION_COMPONENT_HPP_INCLUDED diff --git a/src/comp/TilePositionComponent.cpp b/src/comp/TilePositionComponent.cpp index bf724bc..00d2643 100644 --- a/src/comp/TilePositionComponent.cpp +++ b/src/comp/TilePositionComponent.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "TilePositionComponent.hpp" #include "compsys/Entity.hpp" diff --git a/src/comp/TilePositionComponent.hpp b/src/comp/TilePositionComponent.hpp index f6ca9a1..1a394b5 100644 --- a/src/comp/TilePositionComponent.hpp +++ b/src/comp/TilePositionComponent.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef TILEPOSITION_HPP_INCLUDED #define TILEPOSITION_HPP_INCLUDED TILEPOSITION_HPP_INCLUDED diff --git a/src/compsys/BasicMetaComponent.hpp b/src/compsys/BasicMetaComponent.hpp index 5b3c428..7d05fc7 100644 --- a/src/compsys/BasicMetaComponent.hpp +++ b/src/compsys/BasicMetaComponent.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef BASIC_META_COMPONENT_HPP_INCLUDED #define BASIC_META_COMPONENT_HPP_INCLUDED BASIC_META_COMPONENT_HPP_INCLUDED diff --git a/src/compsys/Component.cpp b/src/compsys/Component.cpp index 929b3e2..99eb122 100644 --- a/src/compsys/Component.cpp +++ b/src/compsys/Component.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Component.hpp" #include diff --git a/src/compsys/Component.hpp b/src/compsys/Component.hpp index c2203bd..75b317d 100644 --- a/src/compsys/Component.hpp +++ b/src/compsys/Component.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef COMPONENT_HPP_INCLUDED #define COMPONENT_HPP_INCLUDED COMPONENT_HPP_INCLUDED diff --git a/src/compsys/ComponentRegistry.cpp b/src/compsys/ComponentRegistry.cpp index a357b8d..005e95d 100644 --- a/src/compsys/ComponentRegistry.cpp +++ b/src/compsys/ComponentRegistry.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "ComponentRegistry.hpp" #include "compsys/MetaComponent.hpp" diff --git a/src/compsys/ComponentRegistry.hpp b/src/compsys/ComponentRegistry.hpp index 5109345..5b4e90b 100644 --- a/src/compsys/ComponentRegistry.hpp +++ b/src/compsys/ComponentRegistry.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef COMPONENT_REGISTRY_HPP_INCLUDED #define COMPONENT_REGISTRY_HPP_INCLUDED COMPONENT_REGISTRY_HPP_INCLUDED diff --git a/src/compsys/Entity.cpp b/src/compsys/Entity.cpp index 85e74ed..bc50af0 100644 --- a/src/compsys/Entity.cpp +++ b/src/compsys/Entity.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Entity.hpp" #include "Logfile.hpp" diff --git a/src/compsys/Entity.hpp b/src/compsys/Entity.hpp index b1b42dd..08be0e4 100644 --- a/src/compsys/Entity.hpp +++ b/src/compsys/Entity.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef ENTITY_HPP_INCLUDED #define ENTITY_HPP_INCLUDED ENTITY_HPP_INCLUDED diff --git a/src/compsys/MetaComponent.cpp b/src/compsys/MetaComponent.cpp index d1f8672..3bd572a 100644 --- a/src/compsys/MetaComponent.cpp +++ b/src/compsys/MetaComponent.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "compsys/MetaComponent.hpp" #include "ComponentRegistry.hpp" diff --git a/src/compsys/MetaComponent.hpp b/src/compsys/MetaComponent.hpp index 368078a..2ddc11f 100644 --- a/src/compsys/MetaComponent.hpp +++ b/src/compsys/MetaComponent.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef META_COMPONENT_HPP_INCLUDED #define META_COMPONENT_HPP_INCLUDED META_COMPONENT_HPP_INCLUDED diff --git a/src/createComponent.py b/src/createComponent.py index 8698595..6ccd46f 100644 --- a/src/createComponent.py +++ b/src/createComponent.py @@ -1,3 +1,10 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +# Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +# This file is subject to the terms of the BSD 2-Clause License. +# See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + import string import sys from os.path import exists diff --git a/src/encoding.cpp b/src/encoding.cpp index 025da01..a357a72 100644 --- a/src/encoding.cpp +++ b/src/encoding.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "encoding.hpp" #include diff --git a/src/encoding.hpp b/src/encoding.hpp index b74ef7f..3bb8b8d 100644 --- a/src/encoding.hpp +++ b/src/encoding.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef ENCODING_HPP_INCLUDED #define ENCODING_HPP_INCLUDED ENCODING_HPP_INCLUDED diff --git a/src/exceptions.hpp b/src/exceptions.hpp index a1a7473..5073537 100644 --- a/src/exceptions.hpp +++ b/src/exceptions.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef EXCEPTIONS_HPP_INCLUDED #define EXCEPTIONS_HPP_INCLUDED EXCEPTIONS_HPP_INCLUDED diff --git a/src/jdConfig.cpp b/src/jdConfig.cpp index 80d4842..7b89fed 100644 --- a/src/jdConfig.cpp +++ b/src/jdConfig.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "jdConfig.hpp" diff --git a/src/jdConfig.hpp b/src/jdConfig.hpp index 40f7634..972196e 100644 --- a/src/jdConfig.hpp +++ b/src/jdConfig.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef JDCONFIG_HPP_INCLUDED #define JDCONFIG_HPP_INCLUDED JDCONFIG_HPP_INCLUDED diff --git a/src/luaexport/Collisions.cpp b/src/luaexport/Collisions.cpp index 3369fc4..4869e95 100644 --- a/src/luaexport/Collisions.cpp +++ b/src/luaexport/Collisions.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "collision/Collisions.hpp" #include "collision/RectCollideableGroup.hpp" diff --git a/src/luaexport/DrawServiceMeta.cpp b/src/luaexport/DrawServiceMeta.cpp index 65dc7d4..ff5ca99 100644 --- a/src/luaexport/DrawServiceMeta.cpp +++ b/src/luaexport/DrawServiceMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "svc/DrawService.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/luaexport/EntitySystem.cpp b/src/luaexport/EntitySystem.cpp index 51b32d2..32e29ed 100644 --- a/src/luaexport/EntitySystem.cpp +++ b/src/luaexport/EntitySystem.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "compsys/Component.hpp" #include "compsys/ComponentRegistry.hpp" #include "compsys/Entity.hpp" diff --git a/src/luaexport/EventDispatcherMeta.cpp b/src/luaexport/EventDispatcherMeta.cpp index 9227438..76e49f5 100644 --- a/src/luaexport/EventDispatcherMeta.cpp +++ b/src/luaexport/EventDispatcherMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "svc/EventDispatcher.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/luaexport/ExportThis.hpp b/src/luaexport/ExportThis.hpp index c608de1..0d30a3f 100644 --- a/src/luaexport/ExportThis.hpp +++ b/src/luaexport/ExportThis.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifdef LUA_EXPORT_HELPERS_HPP_INCLUDED # error "Double inclusion of ExportThis.hpp is an error!" #endif diff --git a/src/luaexport/FileSystemMeta.cpp b/src/luaexport/FileSystemMeta.cpp index c7e21d5..f0973a4 100644 --- a/src/luaexport/FileSystemMeta.cpp +++ b/src/luaexport/FileSystemMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "svc/FileSystem.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/luaexport/Geometry.cpp b/src/luaexport/Geometry.cpp index 8a09611..a36da69 100644 --- a/src/luaexport/Geometry.cpp +++ b/src/luaexport/Geometry.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "luaexport/SfBaseTypes.hpp" #include "sfUtil.hpp" diff --git a/src/luaexport/Logfile.cpp b/src/luaexport/Logfile.cpp index 0e5d0ec..1391218 100644 --- a/src/luaexport/Logfile.cpp +++ b/src/luaexport/Logfile.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Logfile.hpp" char const libname[] = "Logfile"; diff --git a/src/luaexport/LuaEventHelpers.hpp b/src/luaexport/LuaEventHelpers.hpp index 177fb1d..0619f9b 100644 --- a/src/luaexport/LuaEventHelpers.hpp +++ b/src/luaexport/LuaEventHelpers.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef LUA_EVENT_HELPERS_HPP_INCLUDED #define LUA_EVENT_HELPERS_HPP_INCLUDED LUA_EVENT_HELPERS_HPP_INCLUDED diff --git a/src/luaexport/LuaExportHelpers.cpp b/src/luaexport/LuaExportHelpers.cpp index b06b635..a1e7cfe 100644 --- a/src/luaexport/LuaExportHelpers.cpp +++ b/src/luaexport/LuaExportHelpers.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "ExportThis.hpp" void exportEnum(int idx, ExportedEnumValue const* entries) diff --git a/src/luaexport/LuaExportMacros.hpp b/src/luaexport/LuaExportMacros.hpp index d930cd1..132566a 100644 --- a/src/luaexport/LuaExportMacros.hpp +++ b/src/luaexport/LuaExportMacros.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef LUA_EXPORT_MACROS_HPP_INCLUDED #define LUA_EXPORT_MACROS_HPP_INCLUDED LUA_EXPORT_MACROS_HPP_INCLUDED diff --git a/src/luaexport/LuaExtra.cpp b/src/luaexport/LuaExtra.cpp index 1a969b9..1b6bf43 100644 --- a/src/luaexport/LuaExtra.cpp +++ b/src/luaexport/LuaExtra.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "luaUtils.hpp" static char const libname[] = "LuaExtra"; diff --git a/src/luaexport/LuaFunction.hpp b/src/luaexport/LuaFunction.hpp index 2a9cef8..9f2c8b1 100644 --- a/src/luaexport/LuaFunction.hpp +++ b/src/luaexport/LuaFunction.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #if !BOOST_PP_IS_ITERATING #ifndef LUA_FUNCTION_HPP_INCLUDED diff --git a/src/luaexport/LuaPackage.cpp b/src/luaexport/LuaPackage.cpp index d89e274..607d913 100644 --- a/src/luaexport/LuaPackage.cpp +++ b/src/luaexport/LuaPackage.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Logfile.hpp" #include "luaUtils.hpp" #include "svc/FileSystem.hpp" diff --git a/src/luaexport/MainloopMeta.cpp b/src/luaexport/MainloopMeta.cpp index 9880ac7..8023452 100644 --- a/src/luaexport/MainloopMeta.cpp +++ b/src/luaexport/MainloopMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #define MAINLOOP_KEEP_CALLBACKS #include "svc/Mainloop.hpp" diff --git a/src/luaexport/RectCollisionComponentMeta.cpp b/src/luaexport/RectCollisionComponentMeta.cpp index 8345f1b..22832bf 100644 --- a/src/luaexport/RectCollisionComponentMeta.cpp +++ b/src/luaexport/RectCollisionComponentMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "comp/RectCollisionComponent.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/luaexport/ServiceLocator.cpp b/src/luaexport/ServiceLocator.cpp index afad1af..c15ea99 100644 --- a/src/luaexport/ServiceLocator.cpp +++ b/src/luaexport/ServiceLocator.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "compsys/Component.hpp" #include "compsys/ComponentRegistry.hpp" #include "compsys/MetaComponent.hpp" diff --git a/src/luaexport/SfBaseTypes.hpp b/src/luaexport/SfBaseTypes.hpp index 848b509..c9e316b 100644 --- a/src/luaexport/SfBaseTypes.hpp +++ b/src/luaexport/SfBaseTypes.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef SF_BASE_TYPES_HPP_INCLUDED #define SF_BASE_TYPES_HPP_INCLUDED SF_BASE_TYPES_HPP_INCLUDED diff --git a/src/luaexport/SfGraphics.cpp b/src/luaexport/SfGraphics.cpp index 5150f5a..19bc2e4 100644 --- a/src/luaexport/SfGraphics.cpp +++ b/src/luaexport/SfGraphics.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "resources.hpp" #include "ressys/AutoFont.hpp" #include "ressys/AutoTexture.hpp" diff --git a/src/luaexport/SfSystem.cpp b/src/luaexport/SfSystem.cpp index bd10704..b36a0ab 100644 --- a/src/luaexport/SfSystem.cpp +++ b/src/luaexport/SfSystem.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "luaexport/SfBaseTypes.hpp" #include diff --git a/src/luaexport/SfWindow.cpp b/src/luaexport/SfWindow.cpp index a30a721..7211f32 100644 --- a/src/luaexport/SfWindow.cpp +++ b/src/luaexport/SfWindow.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "SfBaseTypes.hpp" #include "sfUtil.hpp" #include "luaUtils.hpp" diff --git a/src/luaexport/SoundManagerMeta.cpp b/src/luaexport/SoundManagerMeta.cpp index 14f7c2b..837e872 100644 --- a/src/luaexport/SoundManagerMeta.cpp +++ b/src/luaexport/SoundManagerMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "svc/SoundManager.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/luaexport/State.cpp b/src/luaexport/State.cpp index b0afebd..aa0a493 100644 --- a/src/luaexport/State.cpp +++ b/src/luaexport/State.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "State.hpp" static char const libname[] = "State"; diff --git a/src/luaexport/StateManagerMeta.cpp b/src/luaexport/StateManagerMeta.cpp index b93078d..5013fc9 100644 --- a/src/luaexport/StateManagerMeta.cpp +++ b/src/luaexport/StateManagerMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "svc/StateManager.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/luaexport/TileCollisionComponentMeta.cpp b/src/luaexport/TileCollisionComponentMeta.cpp index 4623228..bdb3d92 100644 --- a/src/luaexport/TileCollisionComponentMeta.cpp +++ b/src/luaexport/TileCollisionComponentMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "comp/TileCollisionComponent.hpp" #include "collision/TileCollideableGroup.hpp" diff --git a/src/luaexport/TilePositionComponentMeta.cpp b/src/luaexport/TilePositionComponentMeta.cpp index dd00644..9ed189d 100644 --- a/src/luaexport/TilePositionComponentMeta.cpp +++ b/src/luaexport/TilePositionComponentMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "comp/TilePositionComponent.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/luaexport/Tilemap.cpp b/src/luaexport/Tilemap.cpp index a9666b4..8a60216 100644 --- a/src/luaexport/Tilemap.cpp +++ b/src/luaexport/Tilemap.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "container.hpp" #include "MapInfo.hpp" #include "SfBaseTypes.hpp" diff --git a/src/luaexport/TimerMeta.cpp b/src/luaexport/TimerMeta.cpp index ca6a537..d9e6aa4 100644 --- a/src/luaexport/TimerMeta.cpp +++ b/src/luaexport/TimerMeta.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "svc/Timer.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/luaexport/container.hpp b/src/luaexport/container.hpp index 78c7301..81bba19 100644 --- a/src/luaexport/container.hpp +++ b/src/luaexport/container.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef CONTAINER_HPP_INCLUDED #define CONTAINER_HPP_INCLUDED CONTAINER_HPP_INCLUDED diff --git a/src/luaexport/luaIo.cpp b/src/luaexport/luaIo.cpp index 3a7a5e5..fa86efa 100644 --- a/src/luaexport/luaIo.cpp +++ b/src/luaexport/luaIo.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "luaUtils.hpp" #include "svc/FileSystem.hpp" diff --git a/src/luaexport/resources.hpp b/src/luaexport/resources.hpp index c7665d4..85245b8 100644 --- a/src/luaexport/resources.hpp +++ b/src/luaexport/resources.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef RESOURCES_HPP_INCLUDED #define RESOURCES_HPP_INCLUDED RESOURCES_HPP_INCLUDED diff --git a/src/luaexport/sharedPtrConverter.hpp b/src/luaexport/sharedPtrConverter.hpp index 47b6622..8db001c 100644 --- a/src/luaexport/sharedPtrConverter.hpp +++ b/src/luaexport/sharedPtrConverter.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef SHAREDPTR_CONVERTER_HPP_INCLUDED #define SHAREDPTR_CONVERTER_HPP_INCLUDED SHAREDPTR_CONVERTER_HPP_INCLUDED diff --git a/src/main.cpp b/src/main.cpp index a043eb2..122cb3d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "cmdline.hpp" #include "Logfile.hpp" @@ -258,6 +262,10 @@ int main(int argc, char* argv[]) log().setMinLevel(loglevel::debug); log().open(logpath); + LOG_I( + "Jade Engine -- Copyright (c) Christian Neumüller 2012--2013\n" + "This program is subject to the terms of the BSD 2-Clause License.\n" + "See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause"); #ifndef NDEBUG LOG_I("This is a debug build."); #endif @@ -283,6 +291,7 @@ int main(int argc, char* argv[]) baselibpaths.push_back(programpath + "/../base.jd"); baselibpaths.push_back(programpath + "/../share/base.jd"); baselibpaths.push_back(basepath + "/base.jd"); + baselibpaths.push_back("./base.jd"); fs.mountFirstWorking(baselibpaths, "/", FileSystem::logWarnings|FileSystem::mountOptional); if (!fs.mount(game, "/", FileSystem::logWarnings|(gameSpecified ? diff --git a/src/ressys/AutoFont.hpp b/src/ressys/AutoFont.hpp index f8484ad..eecaaaf 100644 --- a/src/ressys/AutoFont.hpp +++ b/src/ressys/AutoFont.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef AUTO_FONT_HPP_INCLUDED #define AUTO_FONT_HPP_INCLUDED AUTO_FONT_HPP_INCLUDED diff --git a/src/ressys/AutoResource.hpp b/src/ressys/AutoResource.hpp index 11a423c..34205c5 100644 --- a/src/ressys/AutoResource.hpp +++ b/src/ressys/AutoResource.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef AUTO_RESOURCE_HPP_INCLUDED #define AUTO_RESOURCE_HPP_INCLUDED AUTO_RESOURCE_HPP_INCLUDED diff --git a/src/ressys/AutoSoundBuffer.hpp b/src/ressys/AutoSoundBuffer.hpp index 9cf15e2..e2e1ebe 100644 --- a/src/ressys/AutoSoundBuffer.hpp +++ b/src/ressys/AutoSoundBuffer.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef AUTO_SOUND_BUFFER_HPP_INCLUDED #define AUTO_SOUND_BUFFER_HPP_INCLUDED AUTO_SOUND_BUFFER_HPP_INCLUDED diff --git a/src/ressys/AutoTexture.hpp b/src/ressys/AutoTexture.hpp index c8d7ed3..cfa28b4 100644 --- a/src/ressys/AutoTexture.hpp +++ b/src/ressys/AutoTexture.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef AUTO_TEXTURE_HPP_INCLUDED #define AUTO_TEXTURE_HPP_INCLUDED AUTO_TEXTURE_HPP_INCLUDED diff --git a/src/ressys/ResourceLoaders.hpp b/src/ressys/ResourceLoaders.hpp index bb0b193..84c03c1 100644 --- a/src/ressys/ResourceLoaders.hpp +++ b/src/ressys/ResourceLoaders.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef RESOURCE_LOADERS_HPP_INCLUDED #define RESOURCE_LOADERS_HPP_INCLUDED RESOURCE_LOADERS_HPP_INCLUDED diff --git a/src/ressys/ResourceManager.hpp b/src/ressys/ResourceManager.hpp index 2da71f1..a898dde 100644 --- a/src/ressys/ResourceManager.hpp +++ b/src/ressys/ResourceManager.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef RESOURCE_MANAGER_HPP_INCLUDED #define RESOURCE_MANAGER_HPP_INCLUDED RESOURCE_MANAGER_HPP_INCLUDED diff --git a/src/ressys/ResourceManager.inl b/src/ressys/ResourceManager.inl index 3d67c2c..8c6c834 100644 --- a/src/ressys/ResourceManager.inl +++ b/src/ressys/ResourceManager.inl @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + /// \file ResourceManager.inl Implementation file for ResourceManager.hpp template diff --git a/src/ressys/VFileFont.hpp b/src/ressys/VFileFont.hpp index f8721f1..273ee57 100644 --- a/src/ressys/VFileFont.hpp +++ b/src/ressys/VFileFont.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef VFILE_FONT_HPP_INCLUDED #define VFILE_FONT_HPP_INCLUDED VFILE_FONT_HPP_INCLUDED diff --git a/src/ressys/VFileMusic.hpp b/src/ressys/VFileMusic.hpp index 164cac3..747255e 100644 --- a/src/ressys/VFileMusic.hpp +++ b/src/ressys/VFileMusic.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef VFILE_MUSIC_HPP_INCLUDED #define VFILE_MUSIC_HPP_INCLUDED VFILE_MUSIC_HPP_INCLUDED diff --git a/src/ressys/resfwd.hpp b/src/ressys/resfwd.hpp index 299edcf..e712d7d 100644 --- a/src/ressys/resfwd.hpp +++ b/src/ressys/resfwd.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef RESFWD_HPP_INCLUDED #define RESFWD_HPP_INCLUDED RESFWD_HPP_INCLUDED diff --git a/src/ressys/resourceLoaders.cpp b/src/ressys/resourceLoaders.cpp index e834d26..e929d83 100644 --- a/src/ressys/resourceLoaders.cpp +++ b/src/ressys/resourceLoaders.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "resourceLoaders.hpp" #include "exceptions.hpp" diff --git a/src/sfKeyCodes.hpp b/src/sfKeyCodes.hpp index 2ab0384..d9d7109 100644 --- a/src/sfKeyCodes.hpp +++ b/src/sfKeyCodes.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + // No include guards // // #define E(name, value) to something meaningful diff --git a/src/sfUtil.cpp b/src/sfUtil.cpp index e95643b..26a27c0 100644 --- a/src/sfUtil.cpp +++ b/src/sfUtil.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "sfUtil.hpp" #include diff --git a/src/sfUtil.hpp b/src/sfUtil.hpp index d3af7b9..4118e08 100644 --- a/src/sfUtil.hpp +++ b/src/sfUtil.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef SFUTIL_HPP_INCLUDED #define SFUTIL_HPP_INCLUDED SFUTIL_HPP_INCLUDED diff --git a/src/ssig.hpp b/src/ssig.hpp index c9e46b0..00877c9 100644 --- a/src/ssig.hpp +++ b/src/ssig.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef SSIG_HPP_INCLUDED #define SSIG_HPP_INCLUDED SSIG_HPP_INCLUDED diff --git a/src/ssig_template.hpp b/src/ssig_template.hpp index f569fef..e1a1ad8 100644 --- a/src/ssig_template.hpp +++ b/src/ssig_template.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #if !BOOST_PP_IS_ITERATING # error "Do not include this file! Include ssig.hpp instead." #endif diff --git a/src/svc/Configuration.cpp b/src/svc/Configuration.cpp index 7e11bd1..bae6c3e 100644 --- a/src/svc/Configuration.cpp +++ b/src/svc/Configuration.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Configuration.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/svc/Configuration.hpp b/src/svc/Configuration.hpp index 7d3660e..8b1531b 100644 --- a/src/svc/Configuration.hpp +++ b/src/svc/Configuration.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef CONFIGURATION_HPP_INCLUDED #define CONFIGURATION_HPP_INCLUDED CONFIGURATION_HPP_INCLUDED diff --git a/src/svc/DrawService.cpp b/src/svc/DrawService.cpp index 4b6fa10..af78226 100644 --- a/src/svc/DrawService.cpp +++ b/src/svc/DrawService.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "DrawService.hpp" #include diff --git a/src/svc/DrawService.hpp b/src/svc/DrawService.hpp index 073ab3e..3c18564 100644 --- a/src/svc/DrawService.hpp +++ b/src/svc/DrawService.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef DRAW_SERVICE_HPP_INCLUDED #define DRAW_SERVICE_HPP_INCLUDED DRAW_SERVICE_HPP_INCLUDED diff --git a/src/svc/EventDispatcher.cpp b/src/svc/EventDispatcher.cpp index 2e3e3c9..109d68f 100644 --- a/src/svc/EventDispatcher.cpp +++ b/src/svc/EventDispatcher.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "EventDispatcher.hpp" #include "Logfile.hpp" diff --git a/src/svc/EventDispatcher.hpp b/src/svc/EventDispatcher.hpp index 1d2f8d5..b83cd24 100644 --- a/src/svc/EventDispatcher.hpp +++ b/src/svc/EventDispatcher.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef EVENT_DISPATCHER_HPP_INCLUDED #define EVENT_DISPATCHER_HPP_INCLUDED EVENT_DISPATCHER_HPP_INCLUDED diff --git a/src/svc/FileSystem.cpp b/src/svc/FileSystem.cpp index e1e5e07..ebdde20 100644 --- a/src/svc/FileSystem.cpp +++ b/src/svc/FileSystem.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "FileSystem.hpp" #include "cmdline.hpp" @@ -282,4 +286,3 @@ bool FileSystem::mountFirstWorking( return false; throw Error(message, false); } - diff --git a/src/svc/FileSystem.hpp b/src/svc/FileSystem.hpp index ad18462..4fe478f 100644 --- a/src/svc/FileSystem.hpp +++ b/src/svc/FileSystem.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef FILESYSTEM_HPP_INCLUDED #define FILESYSTEM_HPP_INCLUDED FILESYSTEM_HPP_INCLUDED diff --git a/src/svc/LuaVm.cpp b/src/svc/LuaVm.cpp index dff6c66..1d4acbd 100644 --- a/src/svc/LuaVm.cpp +++ b/src/svc/LuaVm.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "LuaVm.hpp" #include "compsys/BasicMetaComponent.hpp" diff --git a/src/svc/LuaVm.hpp b/src/svc/LuaVm.hpp index 5655635..e31d410 100644 --- a/src/svc/LuaVm.hpp +++ b/src/svc/LuaVm.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef LUA_VM_HPP_INCLUDED #define LUA_VM_HPP_INCLUDED LUA_VM_HPP_INCLUDED diff --git a/src/svc/Mainloop.cpp b/src/svc/Mainloop.cpp index 681b420..3127e95 100644 --- a/src/svc/Mainloop.cpp +++ b/src/svc/Mainloop.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Mainloop.hpp" Mainloop::Mainloop(): diff --git a/src/svc/Mainloop.hpp b/src/svc/Mainloop.hpp index 7f84d87..bd98e6a 100644 --- a/src/svc/Mainloop.hpp +++ b/src/svc/Mainloop.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef MAINLOOP_HPP_INCLUDED #define MAINLOOP_HPP_INCLUDED MAINLOOP_HPP_INCLUDED diff --git a/src/svc/ServiceLocator.cpp b/src/svc/ServiceLocator.cpp index f911b0b..15cc711 100644 --- a/src/svc/ServiceLocator.cpp +++ b/src/svc/ServiceLocator.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "svc/ServiceLocator.hpp" #include "compsys/Component.hpp" diff --git a/src/svc/ServiceLocator.hpp b/src/svc/ServiceLocator.hpp index ce96e20..a4d8b27 100644 --- a/src/svc/ServiceLocator.hpp +++ b/src/svc/ServiceLocator.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef SERVICE_LOCATOR_HPP_INCLUDED #define SERVICE_LOCATOR_HPP_INCLUDED SERVICE_LOCATOR_HPP_INCLUDED diff --git a/src/svc/SoundManager.cpp b/src/svc/SoundManager.cpp index e73f17b..4f41fc8 100644 --- a/src/svc/SoundManager.cpp +++ b/src/svc/SoundManager.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "SoundManager.hpp" #include "Timer.hpp" #include "ServiceLocator.hpp" diff --git a/src/svc/SoundManager.hpp b/src/svc/SoundManager.hpp index 1728387..1037b1e 100644 --- a/src/svc/SoundManager.hpp +++ b/src/svc/SoundManager.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef SOUNDMANAGER_HPP_INCLUDED #define SOUNDMANAGER_HPP_INCLUDED SOUNDMANAGER_HPP_INCLUDED diff --git a/src/svc/StateManager.cpp b/src/svc/StateManager.cpp index ac20dfc..87977bd 100644 --- a/src/svc/StateManager.cpp +++ b/src/svc/StateManager.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "StateManager.hpp" #include "State.hpp" diff --git a/src/svc/StateManager.hpp b/src/svc/StateManager.hpp index 35a7369..a4c7dce 100644 --- a/src/svc/StateManager.hpp +++ b/src/svc/StateManager.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef STATE_MANAGER_HPP_INCLUDED #define STATE_MANAGER_HPP_INCLUDED STATE_MANAGER_HPP_INCLUDED diff --git a/src/svc/Timer.cpp b/src/svc/Timer.cpp index 831a9a2..d3e0c52 100644 --- a/src/svc/Timer.cpp +++ b/src/svc/Timer.cpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #include "Timer.hpp" #include "Logfile.hpp" diff --git a/src/svc/Timer.hpp b/src/svc/Timer.hpp index 15632ec..ddf3467 100644 --- a/src/svc/Timer.hpp +++ b/src/svc/Timer.hpp @@ -1,3 +1,7 @@ +// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013 +// This file is subject to the terms of the BSD 2-Clause License. +// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause + #ifndef TIMER_HPP_INCLUDED #define TIMER_HPP_INCLUDED TIMER_HPP_INCLUDED