2019-11-20 16:21:32 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
|
|
Copyright (C) 2019 sirlemonhead, Nuke.YKT
|
|
|
|
This file is part of PCExhumed.
|
|
|
|
PCExhumed is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
#ifndef __light_h__
|
|
|
|
#define __light_h__
|
|
|
|
|
2019-10-27 13:53:20 +00:00
|
|
|
#include "compat.h"
|
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
void MyLoadPalette();
|
|
|
|
int LoadPaletteLookups();
|
|
|
|
void WaitVBL();
|
|
|
|
void SetGreenPal();
|
|
|
|
void RestoreGreenPal();
|
|
|
|
void FixPalette();
|
|
|
|
void FadeToWhite();
|
2019-10-27 13:53:20 +00:00
|
|
|
int HavePLURemap();
|
|
|
|
uint8_t RemapPLU(uint8_t pal);
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
extern void DoOverscanSet(short someval);
|
2019-10-12 21:09:55 +00:00
|
|
|
void SetOverscan(int id);
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-10-12 21:09:55 +00:00
|
|
|
//extern unsigned char kenpal[];
|
2019-08-26 03:59:14 +00:00
|
|
|
extern short overscanindex;
|
|
|
|
|
|
|
|
extern char *origpalookup[];
|
|
|
|
|
|
|
|
extern short nPalDiff;
|
|
|
|
|
|
|
|
#endif
|