SuperTuxKart 1.5 upstream source (from official release tarball)

This commit is contained in:
Benjamin
2026-06-11 20:04:02 +02:00
commit 2957e51aaa
8551 changed files with 1801800 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
/** @file
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2012
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
@@ -0,0 +1,28 @@
/** @file
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2012
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <hash_map>
//using stdext::hash_map;
template<typename Key>
class hash;
template<typename Key>
class equal_to;
template<typename Key, typename Val, typename HashFcn, typename EqualKey, typename Alloc>
class hash_map;
template<typename Key, typename Val>
class hash_map<Key, Val, hash<Key>, equal_to<Val> > : public stdext::hash_map<Key, Val> {};
@@ -0,0 +1,20 @@
/** @file
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2010
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <iostream>
using std::istream;
using std::ostream;
using std::cerr;
using std::endl;
+20
View File
@@ -0,0 +1,20 @@
/** @file
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2010
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <list>
using std::list;
// Disable dll export that depends on the SGI STL implementation
#undef GHOST_EXTRA_TEMPLATE_DECLARATIONS
+17
View File
@@ -0,0 +1,17 @@
/** @file
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2012
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <utility>
using std::pair;
+19
View File
@@ -0,0 +1,19 @@
/** @file
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2010
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <set>
#include <functional>
using std::set;
using std::less;
+20
View File
@@ -0,0 +1,20 @@
/** @file
@brief Fake header to allow GHOST 4.09 use with MSVC 2005
@date 2010
@author
Ryan Pavlik
<rpavlik@iastate.edu> and <abiryan@ryand.net>
http://academic.cleardefinition.com/
Iowa State University Virtual Reality Applications Center
Human-Computer Interaction Graduate Program
*/
#pragma once
#include <vector>
using std::vector;
// Disable dll export that depends on the SGI STL implementation
#undef GHOST_EXTRA_TEMPLATE_DECLARATIONS