From 861568b146f9acef28790d108b863696892eb817 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Sat, 30 May 2015 13:40:00 +0000 Subject: [PATCH] misc: some cleanup in files, including UTF-8 BOM. --- doc/tutorial/01_triangle.cpp | 2 +- doc/tutorial/02_cube.cpp | 2 +- doc/tutorial/03_noise.cpp | 2 +- doc/tutorial/04_texture.cpp | 2 +- doc/tutorial/05_easymesh.cpp | 2 +- doc/tutorial/07_input.cpp | 2 +- doc/tutorial/08_fbo.cpp | 2 +- doc/tutorial/11_fractal.cpp | 2 +- doc/tutorial/12_voronoi.cpp | 2 +- doc/tutorial/13_shader_builder.cpp | 2 +- doc/tutorial/14_lol_lua.cpp | 2 +- src/base/assert.cpp | 2 +- src/base/log.cpp | 2 +- src/base/string.cpp | 2 +- src/camera.cpp | 2 +- src/dict.cpp | 2 +- src/easymesh/easymeshlua.cpp | 6 +-- src/easymesh/easymeshlua.h | 6 +-- src/eglapp.cpp | 2 +- src/engine/entity.cpp | 2 +- src/engine/entity.h | 80 ++++++++++++++--------------- src/engine/ticker.cpp | 2 +- src/gpu/renderer.cpp | 2 +- src/gpu/shader.cpp | 2 +- src/gpu/vertexbuffer.cpp | 2 +- src/image/codec/android-image.cpp | 2 +- src/image/codec/gdiplus-image.cpp | 2 +- src/image/codec/imlib2-image.cpp | 2 +- src/image/codec/ios-image.cpp | 2 +- src/image/codec/sdl-image.cpp | 2 +- src/image/image.cpp | 2 +- src/image/pixel.cpp | 2 +- src/input/controller.cpp | 2 +- src/input/keys.h | 2 +- src/lol/algorithm/aabb_tree.h | 4 +- src/lol/algorithm/portal.h | 4 +- src/lol/algorithm/sort.h | 4 +- src/lol/base/all.h | 2 +- src/lol/base/array.h | 4 +- src/lol/base/assert.h | 2 +- src/lol/base/avl_tree.h | 4 +- src/lol/base/enum.h | 2 +- src/lol/base/features.h | 2 +- src/lol/base/log.h | 2 +- src/lol/base/map.h | 2 +- src/lol/base/string.h | 4 +- src/lol/image/all.h | 14 ++--- src/lol/image/color.h | 14 ++--- src/lol/image/image.h | 14 ++--- src/lol/image/movie.h | 14 ++--- src/lol/image/pixel.h | 14 ++--- src/lol/math/bigint.h | 2 +- src/lol/math/geometry.h | 4 +- src/lol/math/matrix.h | 2 +- src/lol/math/noise/simplex.h | 4 +- src/lol/math/transform.h | 2 +- src/lol/math/vector.h | 2 +- src/lol/sys/thread.h | 4 +- src/lol/sys/threadtypes.h | 6 +-- src/lolimgui.cpp | 2 +- src/lolimgui.h | 6 +-- src/lolua/baselua.cpp | 2 +- src/lolua/baselua.h | 8 +-- src/math/constants.cpp | 2 +- src/math/transform.cpp | 2 +- src/math/vector.cpp | 2 +- src/mesh/mesh.cpp | 2 +- src/platform/android/androidapp.cpp | 2 +- src/platform/sdl/sdlapp.cpp | 2 +- src/platform/sdl/sdlinput.cpp | 2 +- src/sample.cpp | 2 +- src/scene.h | 15 +++--- src/sys/hacks.cpp | 2 +- src/sys/init.cpp | 2 +- src/sys/thread.cpp | 2 +- src/sys/threadtypes.cpp | 2 +- src/t/base/array.cpp | 2 +- src/t/base/avl_tree.cpp | 2 +- src/t/base/enum.cpp | 2 +- src/t/base/map.cpp | 2 +- src/t/base/string.cpp | 2 +- src/t/base/types.cpp | 2 +- src/t/entity/camera.cpp | 2 +- src/t/image/color.cpp | 2 +- src/t/image/image.cpp | 2 +- src/t/math/array2d.cpp | 2 +- src/t/math/array3d.cpp | 2 +- src/t/math/arraynd.cpp | 2 +- src/t/math/bigint.cpp | 2 +- src/t/math/box.cpp | 2 +- src/t/math/cmplx.cpp | 2 +- src/t/math/half.cpp | 2 +- src/t/math/interp.cpp | 2 +- src/t/math/matrix.cpp | 2 +- src/t/math/noise/simplex.cpp | 2 +- src/t/math/polynomial.cpp | 2 +- src/t/math/quat.cpp | 2 +- src/t/math/rand.cpp | 2 +- src/t/math/real.cpp | 2 +- src/t/math/rotation.cpp | 2 +- src/t/math/trig.cpp | 2 +- src/t/math/vector.cpp | 2 +- src/t/sys/thread.cpp | 2 +- src/t/test-common.cpp | 2 +- src/text.cpp | 2 +- src/utils.h | 4 +- 106 files changed, 209 insertions(+), 196 deletions(-) diff --git a/doc/tutorial/01_triangle.cpp b/doc/tutorial/01_triangle.cpp index 5854df1a..a03f8929 100644 --- a/doc/tutorial/01_triangle.cpp +++ b/doc/tutorial/01_triangle.cpp @@ -3,7 +3,7 @@ // // Copyright © 2012—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/02_cube.cpp b/doc/tutorial/02_cube.cpp index b5463b9c..bb06270d 100644 --- a/doc/tutorial/02_cube.cpp +++ b/doc/tutorial/02_cube.cpp @@ -3,7 +3,7 @@ // // Copyright © 2011—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/03_noise.cpp b/doc/tutorial/03_noise.cpp index e6fa51db..ae058d09 100644 --- a/doc/tutorial/03_noise.cpp +++ b/doc/tutorial/03_noise.cpp @@ -3,7 +3,7 @@ // // Copyright © 2012—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/04_texture.cpp b/doc/tutorial/04_texture.cpp index 0d420762..af859502 100644 --- a/doc/tutorial/04_texture.cpp +++ b/doc/tutorial/04_texture.cpp @@ -3,7 +3,7 @@ // // Copyright © 2012—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/05_easymesh.cpp b/doc/tutorial/05_easymesh.cpp index 096ecd9f..19547318 100644 --- a/doc/tutorial/05_easymesh.cpp +++ b/doc/tutorial/05_easymesh.cpp @@ -4,7 +4,7 @@ // Copyright © 2011—2015 Sam Hocevar // © 2012—2013 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/07_input.cpp b/doc/tutorial/07_input.cpp index 1db60d66..2f8c8c05 100644 --- a/doc/tutorial/07_input.cpp +++ b/doc/tutorial/07_input.cpp @@ -3,7 +3,7 @@ // // Copyright © 2011—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/08_fbo.cpp b/doc/tutorial/08_fbo.cpp index 44db85d4..00dbdf48 100644 --- a/doc/tutorial/08_fbo.cpp +++ b/doc/tutorial/08_fbo.cpp @@ -3,7 +3,7 @@ // // Copyright © 2012—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/11_fractal.cpp b/doc/tutorial/11_fractal.cpp index b1991694..fe0dffd8 100644 --- a/doc/tutorial/11_fractal.cpp +++ b/doc/tutorial/11_fractal.cpp @@ -3,7 +3,7 @@ // // Copyright © 2011—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/12_voronoi.cpp b/doc/tutorial/12_voronoi.cpp index 4a1db570..4eb29365 100644 --- a/doc/tutorial/12_voronoi.cpp +++ b/doc/tutorial/12_voronoi.cpp @@ -3,7 +3,7 @@ // // Copyright © 2011—2015 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/13_shader_builder.cpp b/doc/tutorial/13_shader_builder.cpp index 766e7456..3fb3108d 100644 --- a/doc/tutorial/13_shader_builder.cpp +++ b/doc/tutorial/13_shader_builder.cpp @@ -3,7 +3,7 @@ // // Copyright © 2012—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/doc/tutorial/14_lol_lua.cpp b/doc/tutorial/14_lol_lua.cpp index 405dbb08..926bfad6 100644 --- a/doc/tutorial/14_lol_lua.cpp +++ b/doc/tutorial/14_lol_lua.cpp @@ -3,7 +3,7 @@ // // Copyright © 2014—2015 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/base/assert.cpp b/src/base/assert.cpp index 0fd4eeee..c1eba8ae 100644 --- a/src/base/assert.cpp +++ b/src/base/assert.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/base/log.cpp b/src/base/log.cpp index b61f2d5f..0816cdff 100644 --- a/src/base/log.cpp +++ b/src/base/log.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/base/string.cpp b/src/base/string.cpp index 0dc3a031..1ff24664 100644 --- a/src/base/string.cpp +++ b/src/base/string.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/camera.cpp b/src/camera.cpp index 3c8a5293..36dc0017 100644 --- a/src/camera.cpp +++ b/src/camera.cpp @@ -4,7 +4,7 @@ // Copyright © 2010—2015 Sam Hocevar // © 2009—2013 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/dict.cpp b/src/dict.cpp index fad8f672..4edd070b 100644 --- a/src/dict.cpp +++ b/src/dict.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/easymesh/easymeshlua.cpp b/src/easymesh/easymeshlua.cpp index 765f5a36..ebe7180e 100644 --- a/src/easymesh/easymeshlua.cpp +++ b/src/easymesh/easymeshlua.cpp @@ -1,9 +1,9 @@ // -// MY CLASS TYPE +// Lol Engine — EasyMesh Lua loader // -// Copyright © 2009-2015 Benjamin "Touky" Huet +// Copyright © 2009—2015 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/easymesh/easymeshlua.h b/src/easymesh/easymeshlua.h index e03c1827..2903e23c 100644 --- a/src/easymesh/easymeshlua.h +++ b/src/easymesh/easymeshlua.h @@ -1,9 +1,9 @@ // -// MY CLASS TYPE +// Lol Engine — EasyMesh Lua loader // -// Copyright 2009-2015 Benjamin "Touky" Huet +// Copyright © 2009—2015 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/eglapp.cpp b/src/eglapp.cpp index 1e94cecb..2f62be01 100644 --- a/src/eglapp.cpp +++ b/src/eglapp.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/engine/entity.cpp b/src/engine/entity.cpp index 3c2ec430..3117460e 100644 --- a/src/engine/entity.cpp +++ b/src/engine/entity.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/engine/entity.h b/src/engine/entity.h index 71b337d9..8f2ad402 100644 --- a/src/engine/entity.h +++ b/src/engine/entity.h @@ -1,18 +1,20 @@ // -// Lol Engine +// Lol Engine // -// Copyright: (c) 2010-2013 Sam Hocevar -// This program is free software; you can redistribute it and/or -// modify it under the terms of the Do What The Fuck You Want To -// Public License, Version 2, as published by Sam Hocevar. See -// http://www.wtfpl.net/ for more details. +// Copyright © 2010—2015 Sam Hocevar +// +// Lol Engine is free software. It comes without any warranty, to +// the extent permitted by applicable law. You can redistribute it +// and/or modify it under the terms of the Do What the Fuck You Want +// to Public License, Version 2, as published by the WTFPL Task Force. +// See http://www.wtfpl.net/ for more details. // #pragma once // // The Entity class -// --------------- +// ---------------- // Entities are objects that can be ticked by the game loop and/or the render // loop. Entities are implemented as one or several linked lists. See the // Ticker class for the ticking logic and the linked list implementation. @@ -65,27 +67,27 @@ protected: enum { - GAMEGROUP_BEGIN = 0, //Must be the first element - - GAMEGROUP_INPUT, //Input should be polled before everything else - GAMEGROUP_IMGUI, //Debug update needs to be called before the rest for init purposes - GAMEGROUP_APP, //Main application update - GAMEGROUP_ENTITY, //Default entity update - //------------------//Split entity update: - GAMEGROUP_PLAYER, //Player updates before AI to ensure player actions is prevalent - GAMEGROUP_AI, //AI update - GAMEGROUP_OTHER_0, //Other misc updates here - GAMEGROUP_OTHER_1, //Same ------------------ - GAMEGROUP_OTHER_2, //Same ------------------ - GAMEGROUP_OTHER_3, //Same ------------------ - //------------------//Primitives updates - GAMEGROUP_MESH, //Update Mesh/Animation to ensure correct sync with PLY/AI - GAMEGROUP_FX, //Update FX/other to ensure correct sync with WorldPos and Meshes - GAMEGROUP_LIGHT, //Update after FX because it could some - GAMEGROUP_CAMERA, //Update camera at the end of the frame, once everything is settled - GAMEGROUP_STATS, //Stats updates - - GAMEGROUP_END //Must be the last element + GAMEGROUP_BEGIN = 0, // must be the first element + + GAMEGROUP_INPUT, // input should be polled before everything else + GAMEGROUP_IMGUI, // debug update needs to be called before the rest for init purposes + GAMEGROUP_APP, // main application update + GAMEGROUP_ENTITY, // default entity update + // ----------------- // split entity update: + GAMEGROUP_PLAYER, // player updates before AI to ensure player actions is prevalent + GAMEGROUP_AI, // AI update + GAMEGROUP_OTHER_0, // other misc updates here + GAMEGROUP_OTHER_1, // (same) + GAMEGROUP_OTHER_2, // (same) + GAMEGROUP_OTHER_3, // (same) + // ----------------- // primitives updates + GAMEGROUP_MESH, // update Mesh/Animation to ensure correct sync with PLY/AI + GAMEGROUP_FX, // update FX/other to ensure correct sync with WorldPos and Meshes + GAMEGROUP_LIGHT, // update after FX because it could some + GAMEGROUP_CAMERA, // update camera at the end of the frame, once everything is settled + GAMEGROUP_STATS, // stats update + + GAMEGROUP_END // must be the last element } m_gamegroup; @@ -93,28 +95,26 @@ protected: { DRAWGROUP_BEGIN = GAMEGROUP_END, - DRAWGROUP_CAMERA, //Update camera first for rendering - DRAWGROUP_TEXTURE, //Texture + DRAWGROUP_CAMERA, // update camera first for rendering + DRAWGROUP_TEXTURE, // texture DRAWGROUP_LIGHT, // - DRAWGROUP_WORLD, //Other misc updates here + DRAWGROUP_WORLD, // other misc updates here DRAWGROUP_ENTITY, // DRAWGROUP_FX, // - DRAWGROUP_OTHER_0, //Other misc updates here - DRAWGROUP_OTHER_1, //Same ------------------ - DRAWGROUP_OTHER_2, //Same ------------------ - DRAWGROUP_OTHER_3, //Same ------------------ - DRAWGROUP_APP, //Main application Draw + DRAWGROUP_OTHER_0, // other misc updates here + DRAWGROUP_OTHER_1, // (same) + DRAWGROUP_OTHER_2, // (same) + DRAWGROUP_OTHER_3, // (same) + DRAWGROUP_APP, // main application Draw DRAWGROUP_HUD, DRAWGROUP_IMGUI, DRAWGROUP_CAPTURE, - DRAWGROUP_END, //Must be the next-to-last element - DRAWGROUP_NONE //This group is for non draw-ticked + DRAWGROUP_END, // must be the next-to-last element + DRAWGROUP_NONE, // this group is for non draw-ticked } m_drawgroup; - //static int const GAMEGROUP_BEGIN = 0; - //static int const DRAWGROUP_BEGIN = GAMEGROUP_END; static int const ALLGROUP_END = DRAWGROUP_END; /* The initialisation state */ diff --git a/src/engine/ticker.cpp b/src/engine/ticker.cpp index e95587de..c79690ea 100644 --- a/src/engine/ticker.cpp +++ b/src/engine/ticker.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/gpu/renderer.cpp b/src/gpu/renderer.cpp index 7db3f865..d9186de9 100644 --- a/src/gpu/renderer.cpp +++ b/src/gpu/renderer.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/gpu/shader.cpp b/src/gpu/shader.cpp index fae8f209..32c8e820 100644 --- a/src/gpu/shader.cpp +++ b/src/gpu/shader.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/gpu/vertexbuffer.cpp b/src/gpu/vertexbuffer.cpp index 5bf8eb67..5c711f4f 100644 --- a/src/gpu/vertexbuffer.cpp +++ b/src/gpu/vertexbuffer.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/image/codec/android-image.cpp b/src/image/codec/android-image.cpp index 54ed24a6..3de43606 100644 --- a/src/image/codec/android-image.cpp +++ b/src/image/codec/android-image.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/image/codec/gdiplus-image.cpp b/src/image/codec/gdiplus-image.cpp index b4b2e103..847e3ef4 100644 --- a/src/image/codec/gdiplus-image.cpp +++ b/src/image/codec/gdiplus-image.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/image/codec/imlib2-image.cpp b/src/image/codec/imlib2-image.cpp index cd887c91..6b493d95 100644 --- a/src/image/codec/imlib2-image.cpp +++ b/src/image/codec/imlib2-image.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/image/codec/ios-image.cpp b/src/image/codec/ios-image.cpp index a68ed51c..51962450 100644 --- a/src/image/codec/ios-image.cpp +++ b/src/image/codec/ios-image.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/image/codec/sdl-image.cpp b/src/image/codec/sdl-image.cpp index f06c4780..1df3a120 100644 --- a/src/image/codec/sdl-image.cpp +++ b/src/image/codec/sdl-image.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/image/image.cpp b/src/image/image.cpp index 9c45a7a6..9933147d 100644 --- a/src/image/image.cpp +++ b/src/image/image.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/image/pixel.cpp b/src/image/pixel.cpp index dc6aae44..591ade7b 100644 --- a/src/image/pixel.cpp +++ b/src/image/pixel.cpp @@ -3,7 +3,7 @@ // // Copyright © 2004—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/input/controller.cpp b/src/input/controller.cpp index 40dfd708..a36c3df3 100644 --- a/src/input/controller.cpp +++ b/src/input/controller.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Benjamin Litzelmann // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/input/keys.h b/src/input/keys.h index 30a25cd1..de452b38 100644 --- a/src/input/keys.h +++ b/src/input/keys.h @@ -4,7 +4,7 @@ // Copyright © 2010—2013 Benjamin Litzelmann // © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/algorithm/aabb_tree.h b/src/lol/algorithm/aabb_tree.h index d37607ee..05981a08 100644 --- a/src/lol/algorithm/aabb_tree.h +++ b/src/lol/algorithm/aabb_tree.h @@ -2,9 +2,9 @@ // Lol Engine // // Copyright © 2010—2015 Sam Hocevar -// © 2013—2015 Benjamin "Touky" Huet +// © 2013—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/algorithm/portal.h b/src/lol/algorithm/portal.h index 2a5ee717..3d239db4 100644 --- a/src/lol/algorithm/portal.h +++ b/src/lol/algorithm/portal.h @@ -2,9 +2,9 @@ // Lol Engine // // Copyright © 2010—2015 Sam Hocevar -// © 2013—2015 Benjamin "Touky" Huet +// © 2013—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/algorithm/sort.h b/src/lol/algorithm/sort.h index ee8a10a1..7ad36082 100644 --- a/src/lol/algorithm/sort.h +++ b/src/lol/algorithm/sort.h @@ -2,9 +2,9 @@ // Lol Engine // // Copyright © 2010—2015 Sam Hocevar -// © 2013—2015 Benjamin "Touky" Huet +// © 2013—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/all.h b/src/lol/base/all.h index 6ac38670..9500f552 100644 --- a/src/lol/base/all.h +++ b/src/lol/base/all.h @@ -3,7 +3,7 @@ // // Copyright © 2010—2013 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/array.h b/src/lol/base/array.h index 64e406fe..441281b0 100644 --- a/src/lol/base/array.h +++ b/src/lol/base/array.h @@ -2,9 +2,9 @@ // Lol Engine // // Copyright © 2010—2015 Sam Hocevar -// © 2013—2015 Benjamin "Touky" Huet +// © 2013—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/assert.h b/src/lol/base/assert.h index bad9d901..330923f3 100644 --- a/src/lol/base/assert.h +++ b/src/lol/base/assert.h @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/avl_tree.h b/src/lol/base/avl_tree.h index 7dd79569..0a70f9f4 100644 --- a/src/lol/base/avl_tree.h +++ b/src/lol/base/avl_tree.h @@ -2,10 +2,10 @@ // Lol Engine // // Copyright © 2010-2015 Sam Hocevar -// © 2013-2015 Benjamin "Touky" Huet +// © 2013-2015 Benjamin “Touky” Huet // © 2013-2015 Guillaume Bittoun // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/enum.h b/src/lol/base/enum.h index 4a79564e..425b57b7 100644 --- a/src/lol/base/enum.h +++ b/src/lol/base/enum.h @@ -4,7 +4,7 @@ // Copyright © 2010-2015 Sam Hocevar // © 2013-2015 Guillaume Bittoun // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/features.h b/src/lol/base/features.h index 05d096a5..65f5859e 100644 --- a/src/lol/base/features.h +++ b/src/lol/base/features.h @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/log.h b/src/lol/base/log.h index 3ee813a8..071db123 100644 --- a/src/lol/base/log.h +++ b/src/lol/base/log.h @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/map.h b/src/lol/base/map.h index 2a901da1..65e605b3 100644 --- a/src/lol/base/map.h +++ b/src/lol/base/map.h @@ -4,7 +4,7 @@ // Copyright © 2010-2015 Sam Hocevar // © 2013-2015 Guillaume Bittoun // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/base/string.h b/src/lol/base/string.h index b635893d..696c0b5b 100644 --- a/src/lol/base/string.h +++ b/src/lol/base/string.h @@ -2,9 +2,9 @@ // Lol Engine // // Copyright © 2010—2015 Sam Hocevar -// © 2013—2015 Benjamin "Touky" Huet +// © 2013—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/image/all.h b/src/lol/image/all.h index c0ea7071..e704eb30 100644 --- a/src/lol/image/all.h +++ b/src/lol/image/all.h @@ -1,11 +1,13 @@ // -// Lol Engine +// Lol Engine // -// Copyright: (c) 2010-2013 Sam Hocevar -// This program is free software; you can redistribute it and/or -// modify it under the terms of the Do What The Fuck You Want To -// Public License, Version 2, as published by Sam Hocevar. See -// http://www.wtfpl.net/ for more details. +// Copyright © 2010—2015 Sam Hocevar +// +// Lol Engine is free software. It comes without any warranty, to +// the extent permitted by applicable law. You can redistribute it +// and/or modify it under the terms of the Do What the Fuck You Want +// to Public License, Version 2, as published by the WTFPL Task Force. +// See http://www.wtfpl.net/ for more details. // #pragma once diff --git a/src/lol/image/color.h b/src/lol/image/color.h index 224b31ec..40d7b7ff 100644 --- a/src/lol/image/color.h +++ b/src/lol/image/color.h @@ -1,11 +1,13 @@ // -// Lol Engine +// Lol Engine // -// Copyright: (c) 2010-2014 Sam Hocevar -// This program is free software; you can redistribute it and/or -// modify it under the terms of the Do What The Fuck You Want To -// Public License, Version 2, as published by Sam Hocevar. See -// http://www.wtfpl.net/ for more details. +// Copyright © 2010—2015 Sam Hocevar +// +// Lol Engine is free software. It comes without any warranty, to +// the extent permitted by applicable law. You can redistribute it +// and/or modify it under the terms of the Do What the Fuck You Want +// to Public License, Version 2, as published by the WTFPL Task Force. +// See http://www.wtfpl.net/ for more details. // #pragma once diff --git a/src/lol/image/image.h b/src/lol/image/image.h index 3ff38724..24d06d07 100644 --- a/src/lol/image/image.h +++ b/src/lol/image/image.h @@ -1,11 +1,13 @@ // -// Lol Engine +// Lol Engine // -// Copyright: (c) 2010-2014 Sam Hocevar -// This program is free software; you can redistribute it and/or -// modify it under the terms of the Do What The Fuck You Want To -// Public License, Version 2, as published by Sam Hocevar. See -// http://www.wtfpl.net/ for more details. +// Copyright © 2010—2015 Sam Hocevar +// +// Lol Engine is free software. It comes without any warranty, to +// the extent permitted by applicable law. You can redistribute it +// and/or modify it under the terms of the Do What the Fuck You Want +// to Public License, Version 2, as published by the WTFPL Task Force. +// See http://www.wtfpl.net/ for more details. // #pragma once diff --git a/src/lol/image/movie.h b/src/lol/image/movie.h index 957ca408..b0b948b2 100644 --- a/src/lol/image/movie.h +++ b/src/lol/image/movie.h @@ -1,11 +1,13 @@ // -// Lol Engine +// Lol Engine // -// Copyright: (c) 2010-2014 Sam Hocevar -// This program is free software; you can redistribute it and/or -// modify it under the terms of the Do What The Fuck You Want To -// Public License, Version 2, as published by Sam Hocevar. See -// http://www.wtfpl.net/ for more details. +// Copyright © 2010—2015 Sam Hocevar +// +// Lol Engine is free software. It comes without any warranty, to +// the extent permitted by applicable law. You can redistribute it +// and/or modify it under the terms of the Do What the Fuck You Want +// to Public License, Version 2, as published by the WTFPL Task Force. +// See http://www.wtfpl.net/ for more details. // #pragma once diff --git a/src/lol/image/pixel.h b/src/lol/image/pixel.h index 8097ce34..9ee21f35 100644 --- a/src/lol/image/pixel.h +++ b/src/lol/image/pixel.h @@ -1,11 +1,13 @@ // -// Lol Engine +// Lol Engine // -// Copyright: © 2004—2015 Sam Hocevar -// This program is free software; you can redistribute it and/or -// modify it under the terms of the Do What The Fuck You Want To -// Public License, Version 2, as published by Sam Hocevar. See -// http://www.wtfpl.net/ for more details. +// Copyright © 2004—2015 Sam Hocevar +// +// Lol Engine is free software. It comes without any warranty, to +// the extent permitted by applicable law. You can redistribute it +// and/or modify it under the terms of the Do What the Fuck You Want +// to Public License, Version 2, as published by the WTFPL Task Force. +// See http://www.wtfpl.net/ for more details. // #pragma once diff --git a/src/lol/math/bigint.h b/src/lol/math/bigint.h index 95f61619..38c87ef4 100644 --- a/src/lol/math/bigint.h +++ b/src/lol/math/bigint.h @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/math/geometry.h b/src/lol/math/geometry.h index dc1c6d5b..7f2374f2 100644 --- a/src/lol/math/geometry.h +++ b/src/lol/math/geometry.h @@ -2,9 +2,9 @@ // Lol Engine // // Copyright © 2010—2015 Sam Hocevar -// © 2010—2015 Benjamin "Touky" Huet +// © 2010—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/math/matrix.h b/src/lol/math/matrix.h index 19b79e14..7dfbc0ad 100644 --- a/src/lol/math/matrix.h +++ b/src/lol/math/matrix.h @@ -3,7 +3,7 @@ // // Copyright © 2010-2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/math/noise/simplex.h b/src/lol/math/noise/simplex.h index 41777044..035a9f81 100644 --- a/src/lol/math/noise/simplex.h +++ b/src/lol/math/noise/simplex.h @@ -2,10 +2,10 @@ // Lol Engine // // Copyright © 2010—2014 Sam Hocevar -// © 2013—2014 Benjamin "Touky" Huet +// © 2013—2014 Benjamin “Touky” Huet // © 2013—2014 Guillaume Bittoun // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/math/transform.h b/src/lol/math/transform.h index 95b500de..5071a20f 100644 --- a/src/lol/math/transform.h +++ b/src/lol/math/transform.h @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/math/vector.h b/src/lol/math/vector.h index 11a18d38..5079f05c 100644 --- a/src/lol/math/vector.h +++ b/src/lol/math/vector.h @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/sys/thread.h b/src/lol/sys/thread.h index a6742040..a47661db 100644 --- a/src/lol/sys/thread.h +++ b/src/lol/sys/thread.h @@ -2,9 +2,9 @@ // Lol Engine // // Copyright © 2010—2015 Sam Hocevar -// © 2013—2015 Benjamin "Touky" Huet +// © 2013—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lol/sys/threadtypes.h b/src/lol/sys/threadtypes.h index 57af6632..b7ebba71 100644 --- a/src/lol/sys/threadtypes.h +++ b/src/lol/sys/threadtypes.h @@ -1,10 +1,10 @@ // // Lol Engine // -// Copyright 20102015 Sam Hocevar -// 20132015 Benjamin "Touky" Huet +// Copyright © 2010—2015 Sam Hocevar +// © 2013—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lolimgui.cpp b/src/lolimgui.cpp index ab64e3c8..23291642 100644 --- a/src/lolimgui.cpp +++ b/src/lolimgui.cpp @@ -3,7 +3,7 @@ // // Copyright © 2009—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lolimgui.h b/src/lolimgui.h index fd7b96b1..e1415090 100644 --- a/src/lolimgui.h +++ b/src/lolimgui.h @@ -1,9 +1,9 @@ // -// imGui integration in lolengine +// Lol Engine — imGui integration // -// Copyright 2009-2015 Benjamin "Touky" Huet +// Copyright © 2009—2015 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lolua/baselua.cpp b/src/lolua/baselua.cpp index 7a7ca602..908a1092 100644 --- a/src/lolua/baselua.cpp +++ b/src/lolua/baselua.cpp @@ -4,7 +4,7 @@ // Copyright © 2009—2015 Sam Hocevar // © 2009—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/lolua/baselua.h b/src/lolua/baselua.h index a1273237..1ba7210d 100644 --- a/src/lolua/baselua.h +++ b/src/lolua/baselua.h @@ -1,10 +1,10 @@ // -// Base Lua class for Lua script loading +// Lol Engine — base class for Lua script loading // -// Copyright: (c) 2009-2015 Sam Hocevar -// 2009-2015 Benjamin "Touky" Huet +// Copyright © 2009—2015 Sam Hocevar +// © 2009—2015 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/math/constants.cpp b/src/math/constants.cpp index 8cc5e14b..5dc606fa 100644 --- a/src/math/constants.cpp +++ b/src/math/constants.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/math/transform.cpp b/src/math/transform.cpp index f4a2ce78..1c56456d 100644 --- a/src/math/transform.cpp +++ b/src/math/transform.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/math/vector.cpp b/src/math/vector.cpp index 39c2c6db..580355b4 100644 --- a/src/math/vector.cpp +++ b/src/math/vector.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/mesh/mesh.cpp b/src/mesh/mesh.cpp index 9de826d7..f1f488fc 100644 --- a/src/mesh/mesh.cpp +++ b/src/mesh/mesh.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/platform/android/androidapp.cpp b/src/platform/android/androidapp.cpp index 69491928..312858ca 100644 --- a/src/platform/android/androidapp.cpp +++ b/src/platform/android/androidapp.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/platform/sdl/sdlapp.cpp b/src/platform/sdl/sdlapp.cpp index 3450db72..b082f0d6 100644 --- a/src/platform/sdl/sdlapp.cpp +++ b/src/platform/sdl/sdlapp.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/platform/sdl/sdlinput.cpp b/src/platform/sdl/sdlinput.cpp index 78da6eb8..7497df41 100644 --- a/src/platform/sdl/sdlinput.cpp +++ b/src/platform/sdl/sdlinput.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/sample.cpp b/src/sample.cpp index a533b08b..4ec87ff0 100644 --- a/src/sample.cpp +++ b/src/sample.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/scene.h b/src/scene.h index 5c24af8c..fc107a0d 100644 --- a/src/scene.h +++ b/src/scene.h @@ -1,11 +1,14 @@ // -// Lol Engine +// Lol Engine // -// Copyright: (c) 2010-2013 Sam Hocevar -// This program is free software; you can redistribute it and/or -// modify it under the terms of the Do What The Fuck You Want To -// Public License, Version 2, as published by Sam Hocevar. See -// http://www.wtfpl.net/ for more details. +// Copyright © 2010—2015 Sam Hocevar +// © 2014—2015 Benjamin “Touky” Huet +// +// Lol Engine is free software. It comes without any warranty, to +// the extent permitted by applicable law. You can redistribute it +// and/or modify it under the terms of the Do What the Fuck You Want +// to Public License, Version 2, as published by the WTFPL Task Force. +// See http://www.wtfpl.net/ for more details. // #pragma once diff --git a/src/sys/hacks.cpp b/src/sys/hacks.cpp index 88499cb6..a005b566 100644 --- a/src/sys/hacks.cpp +++ b/src/sys/hacks.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/sys/init.cpp b/src/sys/init.cpp index 5d117802..adfd8b57 100644 --- a/src/sys/init.cpp +++ b/src/sys/init.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/sys/thread.cpp b/src/sys/thread.cpp index 3b6e8a64..e9853aa2 100644 --- a/src/sys/thread.cpp +++ b/src/sys/thread.cpp @@ -4,7 +4,7 @@ // Copyright © 2010—2015 Sam Hocevar // © 2014—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/sys/threadtypes.cpp b/src/sys/threadtypes.cpp index cf9ea5d2..320b5557 100644 --- a/src/sys/threadtypes.cpp +++ b/src/sys/threadtypes.cpp @@ -4,7 +4,7 @@ // Copyright © 2010—2015 Sam Hocevar // © 2014—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/base/array.cpp b/src/t/base/array.cpp index 82e54e57..2f2aa741 100644 --- a/src/t/base/array.cpp +++ b/src/t/base/array.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/base/avl_tree.cpp b/src/t/base/avl_tree.cpp index 15eed7f9..1ad2c8d7 100644 --- a/src/t/base/avl_tree.cpp +++ b/src/t/base/avl_tree.cpp @@ -5,7 +5,7 @@ // © 2013—2015 Benjamin “Touky” Huet // © 2013—2015 Guillaume Bittoun // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/base/enum.cpp b/src/t/base/enum.cpp index a1386c31..5bf1cc5c 100644 --- a/src/t/base/enum.cpp +++ b/src/t/base/enum.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/base/map.cpp b/src/t/base/map.cpp index 27753488..f850ecc0 100644 --- a/src/t/base/map.cpp +++ b/src/t/base/map.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/base/string.cpp b/src/t/base/string.cpp index cb4740f2..8bffa40f 100644 --- a/src/t/base/string.cpp +++ b/src/t/base/string.cpp @@ -4,7 +4,7 @@ // Copyright © 2010—2015 Sam Hocevar // © 2014—2015 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/base/types.cpp b/src/t/base/types.cpp index 7eea8717..1842cb1c 100644 --- a/src/t/base/types.cpp +++ b/src/t/base/types.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/entity/camera.cpp b/src/t/entity/camera.cpp index cbb11b57..20a7fcb4 100644 --- a/src/t/entity/camera.cpp +++ b/src/t/entity/camera.cpp @@ -4,7 +4,7 @@ // Copyright © 2010—2014 Sam Hocevar // © 2013 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/image/color.cpp b/src/t/image/color.cpp index 05215bb5..12f27559 100644 --- a/src/t/image/color.cpp +++ b/src/t/image/color.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/image/image.cpp b/src/t/image/image.cpp index d76f6edb..718b8279 100644 --- a/src/t/image/image.cpp +++ b/src/t/image/image.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/array2d.cpp b/src/t/math/array2d.cpp index 4863112c..f3b5de03 100644 --- a/src/t/math/array2d.cpp +++ b/src/t/math/array2d.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/array3d.cpp b/src/t/math/array3d.cpp index cd9d6abe..31310c11 100644 --- a/src/t/math/array3d.cpp +++ b/src/t/math/array3d.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/arraynd.cpp b/src/t/math/arraynd.cpp index 7547abd5..b18e9bbd 100644 --- a/src/t/math/arraynd.cpp +++ b/src/t/math/arraynd.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/bigint.cpp b/src/t/math/bigint.cpp index 55e6462a..1d9360ac 100644 --- a/src/t/math/bigint.cpp +++ b/src/t/math/bigint.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/box.cpp b/src/t/math/box.cpp index 59ea66b6..8d9ad061 100644 --- a/src/t/math/box.cpp +++ b/src/t/math/box.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/cmplx.cpp b/src/t/math/cmplx.cpp index c9df8981..bfb2c74a 100644 --- a/src/t/math/cmplx.cpp +++ b/src/t/math/cmplx.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/half.cpp b/src/t/math/half.cpp index 17568e64..d1b6195d 100644 --- a/src/t/math/half.cpp +++ b/src/t/math/half.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/interp.cpp b/src/t/math/interp.cpp index 6b36bda8..e9979082 100644 --- a/src/t/math/interp.cpp +++ b/src/t/math/interp.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/matrix.cpp b/src/t/math/matrix.cpp index 6659b621..909764b6 100644 --- a/src/t/math/matrix.cpp +++ b/src/t/math/matrix.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/noise/simplex.cpp b/src/t/math/noise/simplex.cpp index 1ef5a3dc..c5593d44 100644 --- a/src/t/math/noise/simplex.cpp +++ b/src/t/math/noise/simplex.cpp @@ -5,7 +5,7 @@ // © 2013—2014 Benjamin “Touky” Huet // © 2013—2014 Guillaume Bittoun // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/polynomial.cpp b/src/t/math/polynomial.cpp index da98b1b0..c8a8680a 100644 --- a/src/t/math/polynomial.cpp +++ b/src/t/math/polynomial.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/quat.cpp b/src/t/math/quat.cpp index 5b32390f..699a3200 100644 --- a/src/t/math/quat.cpp +++ b/src/t/math/quat.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/rand.cpp b/src/t/math/rand.cpp index 5f1a0bea..d1c88f30 100644 --- a/src/t/math/rand.cpp +++ b/src/t/math/rand.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/real.cpp b/src/t/math/real.cpp index ebb9e9c8..1cc80b84 100644 --- a/src/t/math/real.cpp +++ b/src/t/math/real.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/rotation.cpp b/src/t/math/rotation.cpp index d92ac532..90cdbeb4 100644 --- a/src/t/math/rotation.cpp +++ b/src/t/math/rotation.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/trig.cpp b/src/t/math/trig.cpp index 07ae2de8..f66fabc1 100644 --- a/src/t/math/trig.cpp +++ b/src/t/math/trig.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/math/vector.cpp b/src/t/math/vector.cpp index a41f50a2..809d3af5 100644 --- a/src/t/math/vector.cpp +++ b/src/t/math/vector.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/sys/thread.cpp b/src/t/sys/thread.cpp index 75328336..47019d34 100644 --- a/src/t/sys/thread.cpp +++ b/src/t/sys/thread.cpp @@ -4,7 +4,7 @@ // Copyright © 2010—2015 Sam Hocevar // © 2014—2015 Benjamin “Touky” Huet // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/t/test-common.cpp b/src/t/test-common.cpp index bb28fccf..152b7eb1 100644 --- a/src/t/test-common.cpp +++ b/src/t/test-common.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2014 Sam Hocevar // -// This program is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/text.cpp b/src/text.cpp index aa1e6670..bc77234e 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -3,7 +3,7 @@ // // Copyright © 2010—2015 Sam Hocevar // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force. diff --git a/src/utils.h b/src/utils.h index 0e9a2afb..3faf9d84 100644 --- a/src/utils.h +++ b/src/utils.h @@ -2,9 +2,9 @@ // Lol Engine // // Copyright © 2010—2015 Sam Hocevar -// © 2012—2015 Benjamin "Touky" Huet +// © 2012—2015 Benjamin “Touky” Huet // -// This library is free software. It comes without any warranty, to +// Lol Engine is free software. It comes without any warranty, to // the extent permitted by applicable law. You can redistribute it // and/or modify it under the terms of the Do What the Fuck You Want // to Public License, Version 2, as published by the WTFPL Task Force.