mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Copyright update for Viv Grannell specifically (the author of this commit)
This commit is contained in:
parent
e51f4e089d
commit
d7f4cd2d8f
17 changed files with 134 additions and 31 deletions
10
src/am_map.c
10
src/am_map.c
|
|
@ -1,8 +1,10 @@
|
||||||
// SONIC ROBO BLAST 2
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright (C) 1993-1996 by id Software, Inc.
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
// Copyright (C) 1999-2020 by Sonic Team Junior.
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
|
// Copyright (C) 2000 by DooM Legacy Team.
|
||||||
|
// Copyright (C) 1996 by id Software, Inc.
|
||||||
//
|
//
|
||||||
// This program is free software distributed under the
|
// This program is free software distributed under the
|
||||||
// terms of the GNU General Public License, version 2.
|
// terms of the GNU General Public License, version 2.
|
||||||
|
|
|
||||||
10
src/am_map.h
10
src/am_map.h
|
|
@ -1,8 +1,10 @@
|
||||||
// SONIC ROBO BLAST 2
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright (C) 1993-1996 by id Software, Inc.
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
// Copyright (C) 1999-2020 by Sonic Team Junior.
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
|
// Copyright (C) 2000 by DooM Legacy Team.
|
||||||
|
// Copyright (C) 1996 by id Software, Inc.
|
||||||
//
|
//
|
||||||
// This program is free software distributed under the
|
// This program is free software distributed under the
|
||||||
// terms of the GNU General Public License, version 2.
|
// terms of the GNU General Public License, version 2.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,15 @@
|
||||||
/// \file
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
|
// Copyright (C) 2000 by DooM Legacy Team.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
/// \file filesrch.c
|
||||||
/// \brief Support to find files
|
/// \brief Support to find files
|
||||||
///
|
///
|
||||||
///
|
///
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,15 @@
|
||||||
/// \file
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
|
// Copyright (C) 2000 by DooM Legacy Team.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
/// \file filesrch.h
|
||||||
/// \brief Support to find files
|
/// \brief Support to find files
|
||||||
|
|
||||||
#ifndef __FILESRCH_H__
|
#ifndef __FILESRCH_H__
|
||||||
|
|
|
||||||
11
src/m_cond.c
11
src/m_cond.c
|
|
@ -1,15 +1,16 @@
|
||||||
// SONIC ROBO BLAST 2
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright (C) 2022-2023 by Vivian "toastergrl" Grannell.
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
// Copyright (C) 2012-2016 by Matthew "Kaito Sinclaire" Walsh.
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
// Copyright (C) 2012-2020 by Sonic Team Junior.
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
|
// Copyright (C) 2016 by Matthew "Kaito Sinclaire" Walsh.
|
||||||
//
|
//
|
||||||
// This program is free software distributed under the
|
// This program is free software distributed under the
|
||||||
// terms of the GNU General Public License, version 2.
|
// terms of the GNU General Public License, version 2.
|
||||||
// See the 'LICENSE' file for more details.
|
// See the 'LICENSE' file for more details.
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
/// \file m_cond.c
|
/// \file m_cond.c
|
||||||
/// \brief Unlockable condition system for SRB2 version 2.1
|
/// \brief Challenges internals
|
||||||
|
|
||||||
#include "m_cond.h"
|
#include "m_cond.h"
|
||||||
#include "m_random.h" // M_RandomKey
|
#include "m_random.h" // M_RandomKey
|
||||||
|
|
|
||||||
11
src/m_cond.h
11
src/m_cond.h
|
|
@ -1,15 +1,16 @@
|
||||||
// SONIC ROBO BLAST 2
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright (C) 2022-2023 by Vivian "toastergrl" Grannell.
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
// Copyright (C) 2012-2016 by Matthew "Kaito Sinclaire" Walsh.
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
// Copyright (C) 2012-2020 by Sonic Team Junior.
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
|
// Copyright (C) 2016 by Matthew "Kaito Sinclaire" Walsh.
|
||||||
//
|
//
|
||||||
// This program is free software distributed under the
|
// This program is free software distributed under the
|
||||||
// terms of the GNU General Public License, version 2.
|
// terms of the GNU General Public License, version 2.
|
||||||
// See the 'LICENSE' file for more details.
|
// See the 'LICENSE' file for more details.
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
/// \file m_cond.h
|
/// \file m_cond.h
|
||||||
/// \brief Unlockable condition system for SRB2 version 2.1
|
/// \brief Challenges internals
|
||||||
|
|
||||||
#ifndef __M_COND_H__
|
#ifndef __M_COND_H__
|
||||||
#define __M_COND_H__
|
#define __M_COND_H__
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,13 @@
|
||||||
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
/// \file menus/extras-addons.c
|
/// \file menus/extras-addons.c
|
||||||
/// \brief Addons menu!
|
/// \brief Addons menu!
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,14 @@
|
||||||
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
/// \file menus/extras-challenges.c
|
/// \file menus/extras-challenges.c
|
||||||
/// \brief Challenges.
|
/// \brief Challenges board
|
||||||
|
|
||||||
#include "../i_time.h"
|
#include "../i_time.h"
|
||||||
#include "../k_menu.h"
|
#include "../k_menu.h"
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,13 @@
|
||||||
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
/// \file menus/extras-challenges.c
|
/// \file menus/extras-challenges.c
|
||||||
/// \brief Statistics menu
|
/// \brief Statistics menu
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,12 @@
|
||||||
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
/// \file menus/extras-wrong.c
|
/// \file menus/extras-wrong.c
|
||||||
/// \brief Wrongwarp
|
/// \brief Wrongwarp
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,14 @@
|
||||||
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
/// \file menus/main-goner.cpp
|
/// \file menus/main-goner.cpp
|
||||||
/// \brief The Goner Setup.
|
/// \brief The Missing Setup.
|
||||||
|
|
||||||
#include "../k_menu.h"
|
#include "../k_menu.h"
|
||||||
#include "../m_cond.h"
|
#include "../m_cond.h"
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,15 @@
|
||||||
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
/// \file objects/audience.c
|
||||||
|
/// \brief Follower Audience
|
||||||
|
|
||||||
#include "../doomdef.h"
|
#include "../doomdef.h"
|
||||||
#include "../info.h"
|
#include "../info.h"
|
||||||
#include "../g_game.h"
|
#include "../g_game.h"
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,15 @@
|
||||||
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
//
|
||||||
|
// This program is free software distributed under the
|
||||||
|
// terms of the GNU General Public License, version 2.
|
||||||
|
// See the 'LICENSE' file for more details.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
/// \file objects/servant-hand.c
|
||||||
|
/// \brief Servant Hand direction pointer
|
||||||
|
|
||||||
#include "../doomdef.h"
|
#include "../doomdef.h"
|
||||||
#include "../p_local.h"
|
#include "../p_local.h"
|
||||||
#include "../p_mobj.h"
|
#include "../p_mobj.h"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// DR. ROBOTNIK'S RING RACERS
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright (C) 2022-2023 by Vivian "toastergrl" Grannell
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
// Copyright (C) 2022-2023 by Kart Krew
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
//
|
//
|
||||||
// This program is free software distributed under the
|
// This program is free software distributed under the
|
||||||
// terms of the GNU General Public License, version 2.
|
// terms of the GNU General Public License, version 2.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// DR. ROBOTNIK'S RING RACERS
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright (C) 2018-2023 by Vivian "toastergrl" Grannell
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
// Copyright (C) 2018-2023 by Kart Krew
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
//
|
//
|
||||||
// This program is free software distributed under the
|
// This program is free software distributed under the
|
||||||
// terms of the GNU General Public License, version 2.
|
// terms of the GNU General Public License, version 2.
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,14 @@
|
||||||
// SONIC ROBO BLAST 2
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright (C) 2004-2020 by Sonic Team Junior.
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
//
|
//
|
||||||
// This program is free software distributed under the
|
// This program is free software distributed under the
|
||||||
// terms of the GNU General Public License, version 2.
|
// terms of the GNU General Public License, version 2.
|
||||||
// See the 'LICENSE' file for more details.
|
// See the 'LICENSE' file for more details.
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
/// \file y_inter.c
|
/// \file y_inter.cpp
|
||||||
/// \brief Tally screens, or "Intermissions" as they were formally called in Doom
|
/// \brief Tally screens, or "Intermissions" as they were formally called in Doom
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
// SONIC ROBO BLAST 2
|
// DR. ROBOTNIK'S RING RACERS
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Copyright (C) 2004-2020 by Sonic Team Junior.
|
// Copyright (C) 2024 by Vivian "toastergrl" Grannell.
|
||||||
|
// Copyright (C) 2024 by Kart Krew.
|
||||||
|
// Copyright (C) 2020 by Sonic Team Junior.
|
||||||
//
|
//
|
||||||
// This program is free software distributed under the
|
// This program is free software distributed under the
|
||||||
// terms of the GNU General Public License, version 2.
|
// terms of the GNU General Public License, version 2.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue