hyperrogue/hyper.cpp

144 lines
3.7 KiB
C++
Raw Normal View History

2019-09-06 07:17:45 +00:00
// Hyperbolic Rogue
// Copyright (C) 2011-2019 Zeno Rogue
2019-09-06 07:17:45 +00:00
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
2019-09-06 07:17:45 +00:00
// 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.
2019-09-06 07:17:45 +00:00
// 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-09-06 07:17:45 +00:00
/** \file hyper.cpp
* \brief master file which includes everything
* You can either compile this file, or use mymake to compile all the *.cpp files separately.
*/
2019-09-06 07:17:45 +00:00
#include "hyper.h"
2019-09-06 07:17:45 +00:00
#include "classes.cpp"
#include "colors.cpp"
2019-10-21 20:34:20 +00:00
#include "glhr.cpp"
#include "shaders.cpp"
2019-10-21 22:37:57 +00:00
#include "raycaster.cpp"
#include "hprint.cpp"
#include "util.cpp"
#include "hyperpoint.cpp"
#include "patterns.cpp"
#include "fieldpattern.cpp"
#include "heptagon.cpp"
#include "binary-tiling.cpp"
#include "nonisotropic.cpp"
2019-11-08 14:01:03 +00:00
#include "asonov.cpp"
#include "kite.cpp"
2023-03-23 00:34:58 +00:00
#include "aperiodic-hat.cpp"
#include "archimedean.cpp"
2019-12-14 10:29:53 +00:00
#include "arbitrile.cpp"
#include "rulegen.cpp"
2022-07-11 15:32:27 +00:00
#include "rulegen3.cpp"
#include "euclid.cpp"
#include "sphere.cpp"
2020-05-15 09:46:26 +00:00
#include "fake.cpp"
#include "quotient.cpp"
#include "crystal.cpp"
#include "reg3.cpp"
#include "language.cpp"
#include "cell.cpp"
2019-11-22 15:37:43 +00:00
#include "locations.cpp"
#include "expansion.cpp"
#include "goldberg.cpp"
#include "irregular.cpp"
#include "pattern2.cpp"
#include "flags.cpp"
#include "yendor.cpp"
#include "complex.cpp"
#include "complex2.cpp"
#include "savemem.cpp"
#include "game.cpp"
#include "passable.cpp"
#include "checkmove.cpp"
#include "pcmove.cpp"
#include "environment.cpp"
#include "monstermove.cpp"
#include "mapeffects.cpp"
#include "attack.cpp"
#include "items.cpp"
#include "orbgen.cpp"
#include "monstergen.cpp"
#include "landlock.cpp"
#include "landgen.cpp"
2020-02-26 00:31:02 +00:00
#include "wfcgen.cpp"
#include "orbs.cpp"
#include "inventory.cpp"
#include "system.cpp"
#include "debug.cpp"
#include "geometry.cpp"
2023-01-26 23:27:10 +00:00
#include "embeddings.cpp"
#include "geometry2.cpp"
#include "polygons.cpp"
#include "3d-models.cpp"
#include "floorshapes.cpp"
#include "usershapes.cpp"
#include "drawing.cpp"
#include "mapeditor.cpp"
#include "netgen.cpp"
#include "nofont.cpp"
#include "basegraph.cpp"
#include "screenshot.cpp"
#include "renderbuffer.cpp"
#include "help.cpp"
#include "legacy.cpp"
#include "config.cpp"
#include "scores.cpp"
#include "dialogs.cpp"
#include "menus.cpp"
#include "geom-exp.cpp"
#include "quit.cpp"
#include "multi.cpp"
#include "shmup.cpp"
#include "racing.cpp"
#include "models.cpp"
#include "history.cpp"
#include "rug.cpp"
#include "control.cpp"
#include "hud.cpp"
2019-10-25 10:44:41 +00:00
#include "radar.cpp"
#include "hypgraph.cpp"
#include "textures.cpp"
#include "graph.cpp"
2019-10-25 10:44:41 +00:00
#include "celldrawer.cpp"
#include "sky.cpp"
#include "blizzard.cpp"
#include "sound.cpp"
#include "achievement.cpp"
#include "barriers.cpp"
#include "surface.cpp"
#include "tour.cpp"
#include "commandline.cpp"
#include "bigstuff.cpp"
#include "multigame.cpp"
2019-10-10 11:08:06 +00:00
#include "inforder.cpp"
2020-11-19 17:20:06 +00:00
#include "vr.cpp"
2021-09-16 19:30:26 +00:00
#include "intra.cpp"
2023-10-26 10:26:13 +00:00
#include "crossbow.cpp"
#if CAP_ROGUEVIZ
#include "rogueviz/rogueviz-all.cpp"
#endif
#if CAP_DAILY
#include "private/daily.cpp"
#else
2023-12-27 15:27:05 +00:00
namespace hr { namespace daily { bool on; int historical; } }
#endif
2020-04-06 06:37:22 +00:00
#include "mobile.cpp"
#include "hyper-main.cpp"