- changed license of portal.cpp to GPLv3

- list Eternity Engine as a source of some code in the main README.
This commit is contained in:
Christoph Oelckers 2019-08-21 21:31:12 +02:00
parent 13d031196b
commit b3deb30fa5
2 changed files with 28 additions and 38 deletions

View File

@ -11,6 +11,9 @@ The majority of original code uses a BSD-like lincese. See bsd.txt.
The OpenGL renderer is released under the LGPL v3, except some bits The OpenGL renderer is released under the LGPL v3, except some bits
of code that were inherited fro ZDoomGL. of code that were inherited fro ZDoomGL.
Some code was taken from the Eternity Engine.
Copyright (c) James Haley, Stephen McGranahan, et al.
This software is based in part on the work of the Independent JPEG Group. This software is based in part on the work of the Independent JPEG Group.
This software uses the 'zlib' general purpose compression library by This software uses the 'zlib' general purpose compression library by

View File

@ -1,41 +1,28 @@
/* //
** portals.cpp //-----------------------------------------------------------------------------
** Everything that has to do with portals (both of the line and sector variety) //
** // Copyright 2016 ZZYZX, Christoph Oelckers, et. al.
**--------------------------------------------------------------------------- //
** Copyright 2016 ZZYZX // This program is free software: you can redistribute it and/or modify
** Copyright 2016 Christoph Oelckers // it under the terms of the GNU General Public License as published by
** All rights reserved. // the Free Software Foundation, either version 3 of the License, or
** // (at your option) any later version.
** Redistribution and use in source and binary forms, with or without //
** modification, are permitted provided that the following conditions // This program is distributed in the hope that it will be useful,
** are met: // but WITHOUT ANY WARRANTY; without even the implied warranty of
** // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** 1. Redistributions of source code must retain the above copyright // GNU General Public License for more details.
** notice, this list of conditions and the following disclaimer. //
** 2. Redistributions in binary form must reproduce the above copyright // You should have received a copy of the GNU General Public License
** notice, this list of conditions and the following disclaimer in the // along with this program. If not, see http://www.gnu.org/licenses/
** documentation and/or other materials provided with the distribution. //
** 3. The name of the author may not be used to endorse or promote products //--------------------------------------------------------------------------
** derived from this software without specific prior written permission. //
** // DESCRIPTION:
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR // Everything that has to do with portals
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES // (both of the line and sector variety)
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. //
** IN NO EVENT SHALL THE AUTHOR 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.
**---------------------------------------------------------------------------
**
** There is no code here that is directly taken from Eternity
** although some similarities may be inevitable because it has to
** implement the same concepts.
*/
#include "p_local.h" #include "p_local.h"
#include "p_blockmap.h" #include "p_blockmap.h"