/* Engine.h Written by Matthew Fisher Many objects are universal and don't need to change often. The source for all such files are included in this file. Often this would be compiled into a single *.lib or *.dll, but I prefer to keep all my source readily accessible. Another advantage of this is that it is simpler to compile a subset of the code that includes only desired functionality (and thus avoids as many external dependencies as possible.) */ /****************************/ /* Core */ /****************************/ //These are generic objects and functions //Forward declarations for several classes/structures #include "Engine\Core\ClassList.h" //All #includes that are generic or written by other people #include "Engine\Core\ExternalFiles.h" //The Vector class contains dynamic arrays of a template type. This is equivalent to the Standard Template //Library's vector class. #include "Engine\Core\Vector.h" //Collection of useful constants, macros, and functions #include "Engine\Core\Stdhdr.h" //Generic 32-bit RGBA color structure. This early include is needed by SpaceVector #include "Engine\Math\RGBColor.h" //SpaceVector, which defines 2D, 3D and 4D vectors and rectangles. This early include is needed by Grid #include "Engine\Math\SpaceVector.h" //a Grid is a 2D array #include "Engine\Core\Grid.h" #include "Engine\Core\MultiGrid.h" //Basic string class #include "Engine\Core\String.h" #include "Engine\Core\UnicodeString.h" //OutputDataStream and InputDataStream are binary equivalents of ofstream and ifstream, respectively #include "Engine\Core\OutputDataStream.h" #include "Engine\Core\InputDataStream.h" #include "Engine\Core\Compression.h" //definition of various key codes #include "Engine\Core\KeyDefs.h" /****************************/ /* Multithreading */ /****************************/ //Objects pretaining to creating applications that use multiple threads //A mutex is an object that grants a thread exclusive access to a given section of code #include "Engine\Multithreading\Mutex.h" //A thread is a single unit of code execution #include "Engine\Multithreading\Thread.h" #include "Engine\Multithreading\TaskList.h" #include "Engine\Multithreading\WorkerThread.h" #include "Engine\Multithreading\ThreadPool.h" /****************************/ /* Networking */ /****************************/ //Objects pretaining to sending data between programs or computers //A pipe is a connection between two programs, possibly on different computers #include "Engine\Networking\Pipe.h" /****************************/ /* Math */ /****************************/ //All mathematical structures and functions are here //standard geometric objects #include "Engine\Math\Line3D.h" #include "Engine\Math\LineSegment2D.h" #include "Engine\Math\LineSegment3D.h" #include "Engine\Math\Ray3D.h" #include "Engine\Math\Plane.h" #include "Engine\Math\Intersect.h" #include "Engine\Math\Distance.h" #include "Engine\Math\DirectedGraph.h" //fixed size square matrix classes #include "Engine\Math\Matrix4.h" //Dense matrix class #include "Engine\Math\DenseMatrix.h" //Sparse matrix class, used by LinearSolver #include "Engine\Math\SparseMatrix.h" //Linear optimizer. Uses (bi-)conjugate gradient descent or TAUCS's cholesky solver #include "Engine\Math\LinearSolver.h" #include "Engine\Math\RandomNumbers.h" #include "Engine\Math\PCA.h" #include "Engine\Math\KMeansClustering.h" #include "Engine\Math\MixtureOfGaussians.h" #include "Engine\Math\BipartiteMatcher.h" #include "Engine\Math\BayesNet.h" #include "Engine\Math\GraphicalModel.h" /****************************/ /* Graphics Objects */ /****************************/ //These are structures specific to geometry and computer graphics rendering //A bitmap class (a 2D array of RGBColor's) #include "Engine\Graphics Objects\Bitmap.h" //MatrixController manages the 3 transformations (world, view, projection) central to the graphics pipeline #include "Engine\Graphics Objects\MatrixController.h" //Camera represents a 3-D free floating camera. #include "Engine\Graphics Objects\Camera.h" //MeshVertex represents a single vertex in a mesh structure #include "Engine\Graphics Objects\MeshVertex.h" //General purpose nearest-neighbor structure #include "Engine\Graphics Objects\KDTreeN.h" //3D point nearest neighbor structure #include "Engine\Graphics Objects\KDTree3.h" //Ray and triangle mesh intersection structure #include "Engine\Graphics Objects\RayIntersector.h" #include "Engine\Graphics Objects\RayIntersectorBruteForce.h" #include "Engine\Graphics Objects\RayIntersectorKDTree.h" #include "Engine\Graphics Objects\MeshBVH.h" //Rendering functions for lines and polygons in software #include "Engine\Graphics Objects\PrimitiveRender.h" // Mesh intersection testing #include "Engine\Graphics Objects\MeshDistance.h" /****************************/ /* Machine Learning */ /****************************/ #include "Engine\MachineLearning\BinaryClassifier.h" #include "Engine\MachineLearning\BinaryClassifierBagged.h" #include "Engine\MachineLearning\BinaryClassifierAdaBoost.h" #include "Engine\MachineLearning\BinaryClassifierLogisticRegression.h" #include "Engine\MachineLearning\BinaryClassifierSVM.h" #include "Engine\MachineLearning\BinaryClassifierNaiveBayes.h" #include "Engine\MachineLearning\BinaryClassifierMulticlass.h" #include "Engine\MachineLearning\MulticlassClassifier.h" #include "Engine\MachineLearning\MulticlassClassifierAdaBoostM1.h" #include "Engine\MachineLearning\MulticlassClassifierPairwiseCoupling.h" #include "Engine\MachineLearning\MulticlassClassifierOneVsAll.h" #include "Engine\MachineLearning\MulticlassClassifierDecisionTree.h" #include "Engine\MachineLearning\MulticlassClassifierNearestNeighborBruteForce.h" #include "Engine\MachineLearning\MulticlassClassifierNearestNeighborANN.h" #include "Engine\MachineLearning\MulticlassClassifierGenerator.h" #include "Engine\MachineLearning\RegressionLearner.h" #include "Engine\MachineLearning\RegressionLearnerBagged.h" #include "Engine\MachineLearning\RegressionLearnerDecisionTree.h" #include "Engine\MachineLearning\RegressionLearnerNearestNeighbor.h" #include "Engine\MachineLearning\ClassifierDatasetTransformer.h" #include "Engine\MachineLearning\ClassifierDatasetTransformerPCA.h" /****************************/ /* Utility */ /****************************/ //These simplify access to existing classes //The frame timer reads the system time and maintains the frames per second counter. #include "Engine\Utility\FrameTimer.h" //AudioCapture captures the current line-out or line-in to an uncompressed audio stream #include "Engine\Utility\AudioCapture.h" //VideoCompressor takes a sequence of images and compressed them into a video file. #include "Engine\Utility\VideoCompressor.h" //A FileCollection stores a large number of files as a single file. It is similar to a tar file in functionality. #include "Engine\Utility\FileCollection.h" //A directory manages the list of files and subdirectories in a given folder #include "Engine\Utility\Directory.h" //the Parameter class loads a paramater file as a simple set of "Parameter=Option" lines #include "Engine\Utility\ParameterFile.h" //Profiler is used to record the percent of time spent in code #include "Engine\Utility\Profiler.h" //MenuInterface streamlines adding a menu to a window #include "Engine\Utility\MenuInterface.h" //The Console namespace controls all access to the console #include "Engine\Utility\Console.h" #include "Engine\Utility\ColorGenerator.h" #include "Engine\Utility\Stemmer.h" #include "Engine\Utility\Palette.h" /****************************/ /* Windows Controllers */ /****************************/ //These files handle the interaction between the application and Windows. This includes files that contain //WinMain and create the main application window. There is also a frame timer and a screen capture mechanism. //The input manager stores and controls access to keyboard and mouse data #include "Engine\Windows Controller\InputManager.h" //Creating a new window involves having a callback function, WndProc, that is called whenever Windows has //an event to send to your window/application. EventHandler contains the WndProc file as well as the global //array of keys that tells which keys are current pressed/depressed. #include "Engine\Windows Controller\EventHandler.h" //Window handles creating and managing the application's main window #include "Engine\Windows Controller\ApplicationWindow.h"