From 3f59fc8b771625aca9c3aefe03cf1038d8461963 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Sun, 7 Jul 2019 22:00:20 -0400 Subject: Wolfenstein 3-D! This is a port of Wolf4SDL, which is derived from the original id software source release. The port runs on top of the SDL plugin runtime and is loaded as an overlay. Licensing of the game code is not an issue, as discussed below (essentially, the Debian project treats Wolf4SDL as GPLv2, with an email from John Carmack backing it up): http://forums.rockbox.org/index.php?topic=52872 Included is a copy of MAME's Yamaha OPL sound chip emulator (fmopl_gpl.c). This file was not part of the original Wolf4SDL source (which includes a non-GPL'd version), but was rather rebased from from a later MAME source which had been relicensed to GPLv2. Change-Id: I64c2ba035e0be7e2f49252f40640641416613439 --- apps/plugins/sdl/progs/wolf3d/wl_atmos.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 apps/plugins/sdl/progs/wolf3d/wl_atmos.h (limited to 'apps/plugins/sdl/progs/wolf3d/wl_atmos.h') diff --git a/apps/plugins/sdl/progs/wolf3d/wl_atmos.h b/apps/plugins/sdl/progs/wolf3d/wl_atmos.h new file mode 100644 index 0000000000..59ef74d3a2 --- /dev/null +++ b/apps/plugins/sdl/progs/wolf3d/wl_atmos.h @@ -0,0 +1,20 @@ +#ifndef _WL_ATMOS_H_ +#define _WL_ATMOS_H_ + +#if defined(USE_STARSKY) || defined(USE_RAIN) || defined(USE_SNOW) + void Init3DPoints(); +#endif + +#ifdef USE_STARSKY + void DrawStarSky(byte *vbuf, uint32_t vbufPitch); +#endif + +#ifdef USE_RAIN + void DrawRain(byte *vbuf, uint32_t vbufPitch); +#endif + +#ifdef USE_SNOW + void DrawSnow(byte *vbuf, uint32_t vbufPitch); +#endif + +#endif -- cgit v1.2.3