From 6be1a9a9e46e997fcabcca23b07464bbf440ac9d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 28 Jun 2020 09:03:31 +0200 Subject: [PATCH] - copyright --- source/games/duke/src/animatesprites_d.cpp | 1 + source/games/duke/src/animatesprites_r.cpp | 1 + source/games/duke/src/flags_d.cpp | 1 + source/games/duke/src/flags_r.cpp | 1 + source/games/duke/src/game_main.cpp | 71 +--------------------- source/games/duke/src/hudweapon_d.cpp | 1 + source/games/duke/src/hudweapon_r.cpp | 1 + source/games/duke/src/input.cpp | 1 + source/games/duke/src/interpolate.cpp | 1 + source/games/duke/src/player.cpp | 1 + source/games/duke/src/player_d.cpp | 1 + source/games/duke/src/player_r.cpp | 1 + source/games/duke/src/player_w.cpp | 1 + source/games/duke/src/premap.cpp | 1 + source/games/duke/src/premap_d.cpp | 1 + source/games/duke/src/premap_r.cpp | 1 + 16 files changed, 16 insertions(+), 70 deletions(-) diff --git a/source/games/duke/src/animatesprites_d.cpp b/source/games/duke/src/animatesprites_d.cpp index 1fd35813a..e2ed2aa2f 100644 --- a/source/games/duke/src/animatesprites_d.cpp +++ b/source/games/duke/src/animatesprites_d.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/animatesprites_r.cpp b/source/games/duke/src/animatesprites_r.cpp index 74406ab01..3b5766578 100644 --- a/source/games/duke/src/animatesprites_r.cpp +++ b/source/games/duke/src/animatesprites_r.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2017-2019 Nuke.YKT +Copyright (C) 2020 - Christoph Oelckers This file is part of Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/flags_d.cpp b/source/games/duke/src/flags_d.cpp index 7443949a4..39d0d95b1 100644 --- a/source/games/duke/src/flags_d.cpp +++ b/source/games/duke/src/flags_d.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/flags_r.cpp b/source/games/duke/src/flags_r.cpp index 52fc75e70..b216a017b 100644 --- a/source/games/duke/src/flags_r.cpp +++ b/source/games/duke/src/flags_r.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2017-2019 Nuke.YKT +Copyright (C) 2020 - Christoph Oelckers This file is part of Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/game_main.cpp b/source/games/duke/src/game_main.cpp index f162f545d..97ea6a36c 100644 --- a/source/games/duke/src/game_main.cpp +++ b/source/games/duke/src/game_main.cpp @@ -1,6 +1,7 @@ //------------------------------------------------------------------------- /* Copyright (C) 1996, 2003 - 3D Realms Entertainment +Copyright (C) 2020 - Christoph Oelckers This file is part of Duke Nukem 3D version 1.5 - Atomic Edition @@ -167,76 +168,6 @@ void genspriteremaps(void) } } -//========================================================================== -// -// Sets up the game fonts. -// -//========================================================================== - -void InitFonts() -{ - GlyphSet fontdata; - - // Small font - for (int i = 0; i < 95; i++) - { - auto tile = tileGetTexture(TILE_STARTALPHANUM + i); - if (tile && tile->GetTexelWidth() > 0 && tile->GetTexelHeight() > 0) - fontdata.Insert('!' + i, tile); - } - SmallFont = new ::FFont("SmallFont", nullptr, "defsmallfont", 0, 0, 0, -1, -1, false, false, false, &fontdata); - fontdata.Clear(); - - // Big font - - // This font is VERY messy... - fontdata.Insert('_', tileGetTexture(TILE_BIGALPHANUM - 11)); - fontdata.Insert('-', tileGetTexture(TILE_BIGALPHANUM - 11)); - for (int i = 0; i < 10; i++) fontdata.Insert('0' + i, tileGetTexture(TILE_BIGALPHANUM - 10 + i)); - for (int i = 0; i < 26; i++) fontdata.Insert('A' + i, tileGetTexture(TILE_BIGALPHANUM + i)); - fontdata.Insert('.', tileGetTexture(TILE_BIGPERIOD)); - fontdata.Insert(',', tileGetTexture(TILE_BIGCOMMA)); - fontdata.Insert('!', tileGetTexture(TILE_BIGX_)); - fontdata.Insert('?', tileGetTexture(TILE_BIGQ)); - fontdata.Insert(';', tileGetTexture(TILE_BIGSEMI)); - fontdata.Insert(':', tileGetTexture(TILE_BIGCOLIN)); - fontdata.Insert('\\', tileGetTexture(TILE_BIGALPHANUM + 68)); - fontdata.Insert('/', tileGetTexture(TILE_BIGALPHANUM + 68)); - fontdata.Insert('%', tileGetTexture(TILE_BIGALPHANUM + 69)); - fontdata.Insert('`', tileGetTexture(TILE_BIGAPPOS)); - fontdata.Insert('"', tileGetTexture(TILE_BIGAPPOS)); - fontdata.Insert('\'', tileGetTexture(TILE_BIGAPPOS)); - BigFont = new ::FFont("BigFont", nullptr, "defbigfont", 0, 0, 0, -1, -1, false, false, false, &fontdata); - fontdata.Clear(); - - // Tiny font - for (int i = 0; i < 95; i++) - { - auto tile = tileGetTexture(TILE_MINIFONT + i); - if (tile && tile->GetTexelWidth() > 0 && tile->GetTexelHeight() > 0) - fontdata.Insert('!' + i, tile); - } - fontdata.Insert(1, TexMan.FindGameTexture("TINYBLAK")); // this is only here to widen the color range of the font to produce a better translation. - SmallFont2 = new ::FFont("SmallFont2", nullptr, "defsmallfont2", 0, 0, 0, -1, -1, false, false, false, &fontdata); - fontdata.Clear(); - - // SBAR index font - for (int i = 0; i < 10; i++) fontdata.Insert('0' + i, tileGetTexture(TILE_THREEBYFIVE + i)); - fontdata.Insert(':', tileGetTexture(TILE_THREEBYFIVE + 10)); - fontdata.Insert('/', tileGetTexture(TILE_THREEBYFIVE + 11)); - fontdata.Insert('%', tileGetTexture(TILE_MINIFONT + '%' - '!')); - fontdata.Insert(1, TexMan.FindGameTexture("TINYBLAK")); // this is only here to widen the color range of the font to produce a better translation. - IndexFont = new ::FFont("IndexFont", nullptr, nullptr, 0, 0, 0, -1, -1, false, false, false, &fontdata); - - fontdata.Clear(); - - // digital font - for (int i = 0; i < 10; i++) fontdata.Insert('0' + i, tileGetTexture(TILE_DIGITALNUM + i)); - fontdata.Insert(1, TexMan.FindGameTexture("TINYBLAK")); // this is only here to widen the color range of the font to produce a better translation. - DigiFont = new ::FFont("DigiFont", nullptr, nullptr, 0, 0, 0, -1, -1, false, false, false, &fontdata); - -} - END_DUKE_NS diff --git a/source/games/duke/src/hudweapon_d.cpp b/source/games/duke/src/hudweapon_d.cpp index aac548bc7..791c00a47 100644 --- a/source/games/duke/src/hudweapon_d.cpp +++ b/source/games/duke/src/hudweapon_d.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/hudweapon_r.cpp b/source/games/duke/src/hudweapon_r.cpp index a63e93bfb..626d8f73a 100644 --- a/source/games/duke/src/hudweapon_r.cpp +++ b/source/games/duke/src/hudweapon_r.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2017-2019 Nuke.YKT +Copyright (C) 2020 - Christoph Oelckers This file is part of Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/input.cpp b/source/games/duke/src/input.cpp index 473a1c7e0..71c874538 100644 --- a/source/games/duke/src/input.cpp +++ b/source/games/duke/src/input.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/interpolate.cpp b/source/games/duke/src/interpolate.cpp index 60e7bff2d..eeed07798 100644 --- a/source/games/duke/src/interpolate.cpp +++ b/source/games/duke/src/interpolate.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/player.cpp b/source/games/duke/src/player.cpp index 353ebcd89..404cc2cde 100644 --- a/source/games/duke/src/player.cpp +++ b/source/games/duke/src/player.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/player_d.cpp b/source/games/duke/src/player_d.cpp index 271bea62b..a0bf52de4 100644 --- a/source/games/duke/src/player_d.cpp +++ b/source/games/duke/src/player_d.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/player_r.cpp b/source/games/duke/src/player_r.cpp index 062d81833..9e12bbcae 100644 --- a/source/games/duke/src/player_r.cpp +++ b/source/games/duke/src/player_r.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2017-2019 Nuke.YKT +Copyright (C) 2020 - Christoph Oelckers This file is part of Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/player_w.cpp b/source/games/duke/src/player_w.cpp index 7c1f29f02..7c0618573 100644 --- a/source/games/duke/src/player_w.cpp +++ b/source/games/duke/src/player_w.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/premap.cpp b/source/games/duke/src/premap.cpp index ed1412ac7..a70675647 100644 --- a/source/games/duke/src/premap.cpp +++ b/source/games/duke/src/premap.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2017-2019 Nuke.YKT +Copyright (C) 2020 - Christoph Oelckers This file is part of Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/premap_d.cpp b/source/games/duke/src/premap_d.cpp index 0373407c0..d49e37ede 100644 --- a/source/games/duke/src/premap_d.cpp +++ b/source/games/duke/src/premap_d.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements) +Copyright (C) 2020 - Christoph Oelckers This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition diff --git a/source/games/duke/src/premap_r.cpp b/source/games/duke/src/premap_r.cpp index 6d8613cea..c7296fbba 100644 --- a/source/games/duke/src/premap_r.cpp +++ b/source/games/duke/src/premap_r.cpp @@ -2,6 +2,7 @@ /* Copyright (C) 1996, 2003 - 3D Realms Entertainment Copyright (C) 2017-2019 Nuke.YKT +Copyright (C) 2020 - Christoph Oelckers This file is part of Duke Nukem 3D version 1.5 - Atomic Edition