├── .clang-format ├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── assets └── objdiff.png ├── config ├── EUROPEGERMILESTONE │ ├── config.yml │ ├── splits.txt │ └── symbols.txt ├── GOWE69 │ ├── build.sha1 │ ├── config.example.yml │ ├── config.yml │ ├── ldscript.ld │ ├── splits.txt │ └── symbols.txt └── SLES-53558-A124 │ ├── build.sha1 │ ├── config.yml │ └── symbols.txt ├── config_temp ├── splits.txt └── symbols.txt ├── configure.py ├── docs ├── comment_section.md ├── common_bss.md ├── dependencies.md ├── getting_started.md ├── github_actions.md ├── images │ ├── github_actions_secrets.png │ ├── github_build_repo_create.png │ ├── github_build_repo_packages.png │ ├── github_package_settings.png │ └── github_package_settings_access.png ├── splits.md └── symbols.md ├── include ├── COPYING.NEWLIB ├── OdemuExi2 │ └── odemuexi │ │ └── DebuggerDriver.h ├── Runtime.PPCEABI.H │ ├── NMWException.h │ └── __va_arg.h ├── SN_PS.h ├── TRK_MINNOW_DOLPHIN │ ├── MetroTRK │ │ └── Portable │ │ │ ├── dispatch.h │ │ │ ├── main_TRK.h │ │ │ ├── mainloop.h │ │ │ ├── mem_TRK.h │ │ │ ├── msg.h │ │ │ ├── msgbuf.h │ │ │ ├── msghndlr.h │ │ │ ├── mutex_TRK.h │ │ │ ├── notify.h │ │ │ ├── nubevent.h │ │ │ ├── nubinit.h │ │ │ ├── serpoll.h │ │ │ └── support.h │ ├── Os │ │ └── dolphin │ │ │ ├── dolphin_trk.h │ │ │ ├── dolphin_trk_glue.h │ │ │ ├── targcont.h │ │ │ └── usr_put.h │ └── ppc │ │ └── Generic │ │ ├── flush_cache.h │ │ ├── mpc_7xx_603e.h │ │ └── targimpl.h ├── _G_config.h ├── __mem.h ├── __ppc_eabi_linker.h ├── _ansi.h ├── _syslist.h ├── ansidecl.h ├── ar.h ├── asm_types.h ├── assert.h ├── cstddef ├── cstdlib ├── ctype.h ├── dirent.h ├── dol2asm.h ├── dolphin.h ├── errno.h ├── exception ├── fastmath.h ├── fcntl.h ├── float.h ├── grp.h ├── ieeefp.h ├── include_asm.h ├── iso646.h ├── itcl.h ├── labels.inc ├── libsn.h ├── limits.h ├── locale.h ├── machine │ ├── fastmath.h │ ├── ieeefp.h │ ├── setjmp-dj.h │ ├── setjmp.h │ ├── time.h │ └── types.h ├── macro.inc ├── malloc.h ├── math.h ├── new ├── new.h ├── paths.h ├── ppc-asm.h ├── process.h ├── proto.h ├── pwd.h ├── reent.h ├── regdef.h ├── setjmp.h ├── signal.h ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── string.h ├── sys │ ├── _types.h │ ├── config.h │ ├── dirent.h │ ├── errno.h │ ├── fcntl.h │ ├── file.h │ ├── param.h │ ├── reent.h │ ├── resource.h │ ├── signal.h │ ├── stat-dj.h │ ├── stat.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── types.h │ ├── unistd.h │ ├── utime.h │ └── wait.h ├── syslimits.h ├── termios.h ├── time.h ├── typeinfo ├── unctrl.h ├── unistd.h ├── utime.h ├── utmp.h ├── va-mips.h ├── va-ppc.h ├── varargs.h ├── version.h └── wchar.h ├── orig ├── EUROPEGERMILESTONE │ └── .gitkeep └── GOWE69 │ └── .gitkeep ├── requirements.txt ├── src ├── LibSN │ ├── FSasync.c │ ├── crt0.s │ ├── cvtll.c │ ├── debug.c │ ├── dummy.c │ ├── fileserver.c │ ├── inituser.c │ ├── ppcdown.c │ ├── prof.c │ ├── proview.c │ ├── sndvd.c │ ├── tealeaf.c │ └── tors.c ├── Packages │ └── xenonsdk │ │ └── 2.0.2135.2 │ │ └── installed │ │ └── include │ │ └── xbox │ │ ├── .rights │ │ ├── algorithm │ │ ├── assert.h │ │ ├── basetsd.h │ │ ├── bitset │ │ ├── cassert │ │ ├── cctype │ │ ├── cerrno │ │ ├── cfloat │ │ ├── cguid.h │ │ ├── ciso646 │ │ ├── climits │ │ ├── clocale │ │ ├── cmath │ │ ├── complex │ │ ├── conio.h │ │ ├── crtdbg.h │ │ ├── crtdefs.h │ │ ├── crtwrn.h │ │ ├── csetjmp │ │ ├── csignal │ │ ├── cstdarg │ │ ├── cstddef │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── cstring │ │ ├── ctime │ │ ├── ctype.h │ │ ├── cwchar │ │ ├── cwctype │ │ ├── d3d9.h │ │ ├── d3d9caps.h │ │ ├── d3d9fftypes.h │ │ ├── d3d9gpu.h │ │ ├── d3d9types.h │ │ ├── d3d9xps.h │ │ ├── d3dx9.h │ │ ├── d3dx9anim.h │ │ ├── d3dx9core.h │ │ ├── d3dx9effect.h │ │ ├── d3dx9math.h │ │ ├── d3dx9math.inl │ │ ├── d3dx9mesh.h │ │ ├── d3dx9shader.h │ │ ├── d3dx9shape.h │ │ ├── d3dx9tex.h │ │ ├── d3dx9xof.h │ │ ├── deque │ │ ├── direct.h │ │ ├── dos.h │ │ ├── dxerr9.h │ │ ├── dxfile.h │ │ ├── eh.h │ │ ├── errno.h │ │ ├── exception │ │ ├── excpt.h │ │ ├── fcntl.h │ │ ├── float.h │ │ ├── fpieee.h │ │ ├── fstream │ │ ├── functional │ │ ├── fxl.h │ │ ├── fxl.inl │ │ ├── guiddef.h │ │ ├── hash_map │ │ ├── hash_set │ │ ├── io.h │ │ ├── io.inl │ │ ├── iomanip │ │ ├── ios │ │ ├── iosfwd │ │ ├── iostream │ │ ├── iso646.h │ │ ├── istream │ │ ├── iterator │ │ ├── limits │ │ ├── limits.h │ │ ├── list │ │ ├── locale │ │ ├── locale.h │ │ ├── malloc.h │ │ ├── map │ │ ├── math.h │ │ ├── mbctype.h │ │ ├── mbstring.h │ │ ├── memory │ │ ├── memory.h │ │ ├── minmax.h │ │ ├── new │ │ ├── new.h │ │ ├── numeric │ │ ├── omp.h │ │ ├── ostream │ │ ├── pix.h │ │ ├── pmcpb.h │ │ ├── pmcpbsetup.h │ │ ├── poppack.h │ │ ├── ppcintrinsics.h │ │ ├── process.h │ │ ├── pshpack1.h │ │ ├── pshpack2.h │ │ ├── pshpack4.h │ │ ├── pshpack8.h │ │ ├── queue │ │ ├── rmxfguid.h │ │ ├── rmxftmpl.h │ │ ├── rtcapi.h │ │ ├── safecrt.h │ │ ├── sal.h │ │ ├── search.h │ │ ├── set │ │ ├── setjmp.h │ │ ├── setjmpex.h │ │ ├── share.h │ │ ├── signal.h │ │ ├── sstream │ │ ├── stack │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdexcept │ │ ├── stdexcpt.h │ │ ├── stdio.h │ │ ├── stdio.inl │ │ ├── stdlib.h │ │ ├── stl.h │ │ ├── streambuf │ │ ├── string │ │ ├── string.h │ │ ├── strstream │ │ ├── swprintf.inl │ │ ├── sys │ │ ├── .rights │ │ ├── locking.h │ │ ├── stat.h │ │ ├── stat.inl │ │ ├── timeb.h │ │ ├── timeb.inl │ │ ├── types.h │ │ ├── utime.h │ │ ├── utime.inl │ │ └── wstat.inl │ │ ├── tchar.h │ │ ├── time.h │ │ ├── time.inl │ │ ├── tracerecording.h │ │ ├── typeinfo │ │ ├── typeinfo.h │ │ ├── use_ansi.h │ │ ├── utility │ │ ├── vadefs.h │ │ ├── valarray │ │ ├── varargs.h │ │ ├── vector │ │ ├── vectorintrinsics.h │ │ ├── warning.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── winbase.h │ │ ├── windef.h │ │ ├── winerror.h │ │ ├── winnt.h │ │ ├── winsockx.h │ │ ├── wio.inl │ │ ├── wtime.inl │ │ ├── x3daudio.h │ │ ├── xact.h │ │ ├── xact2wb.h │ │ ├── xam.h │ │ ├── xauddefs.h │ │ ├── xaudfx.h │ │ ├── xaudio.h │ │ ├── xbcrash.h │ │ ├── xbdm.h │ │ ├── xbox.h │ │ ├── xboxmath.h │ │ ├── xcam.h │ │ ├── xcomplex │ │ ├── xconfig.h │ │ ├── xcontent.h │ │ ├── xdebug │ │ ├── xdk.h │ │ ├── xgraphics.h │ │ ├── xhash │ │ ├── xhv.h │ │ ├── xiosbase │ │ ├── xlocale │ │ ├── xlocinfo │ │ ├── xlocinfo.h │ │ ├── xlocmes │ │ ├── xlocmon │ │ ├── xlocnum │ │ ├── xloctime │ │ ├── xmadecoder.h │ │ ├── xmath.h │ │ ├── xmconvert.inl │ │ ├── xmedia.h │ │ ├── xmemory │ │ ├── xmmatrix.inl │ │ ├── xmmisc.inl │ │ ├── xmp.h │ │ ├── xmvector.inl │ │ ├── xobjbase.h │ │ ├── xonline.h │ │ ├── xstddef │ │ ├── xstring │ │ ├── xtitleidbegin.h │ │ ├── xtitleidend.h │ │ ├── xtl.h │ │ ├── xtree │ │ ├── xui.h │ │ ├── xuianimate.h │ │ ├── xuiapp.h │ │ ├── xuiapp.inl │ │ ├── xuiaudition.h │ │ ├── xuibase.h │ │ ├── xuielement.h │ │ ├── xuierror.h │ │ ├── xuimemory.h │ │ ├── xuimessage.h │ │ ├── xuirender.h │ │ ├── xuiresource.h │ │ ├── xutility │ │ ├── ymath.h │ │ └── yvals.h ├── Speed │ ├── GameCube │ │ ├── Libs │ │ │ └── stl │ │ │ │ └── STLport-4.5 │ │ │ │ └── stlport │ │ │ │ ├── algorithm │ │ │ │ ├── bitset │ │ │ │ ├── cassert │ │ │ │ ├── cctype │ │ │ │ ├── cerrno │ │ │ │ ├── cfloat │ │ │ │ ├── climits │ │ │ │ ├── clocale │ │ │ │ ├── cmath │ │ │ │ ├── complex │ │ │ │ ├── config │ │ │ │ ├── _epilog.h │ │ │ │ ├── _msvc_warnings_off.h │ │ │ │ ├── _prolog.h │ │ │ │ ├── stl_confix.h │ │ │ │ ├── stl_gcc.h │ │ │ │ ├── stl_mycomp.h │ │ │ │ ├── stl_wince.h │ │ │ │ ├── stlcomp.h │ │ │ │ └── vc_select_lib.h │ │ │ │ ├── csetjmp │ │ │ │ ├── csignal │ │ │ │ ├── cstdarg │ │ │ │ ├── cstddef │ │ │ │ ├── cstdio │ │ │ │ ├── cstdlib │ │ │ │ ├── cstring │ │ │ │ ├── ctime │ │ │ │ ├── ctype.h │ │ │ │ ├── cwchar │ │ │ │ ├── cwctype │ │ │ │ ├── deque │ │ │ │ ├── exception │ │ │ │ ├── exception.h │ │ │ │ ├── export │ │ │ │ ├── fstream │ │ │ │ ├── fstream.h │ │ │ │ ├── functional │ │ │ │ ├── hash_map │ │ │ │ ├── hash_set │ │ │ │ ├── iomanip │ │ │ │ ├── iomanip.h │ │ │ │ ├── ios │ │ │ │ ├── ios.h │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── iostream.h │ │ │ │ ├── istream │ │ │ │ ├── istream.h │ │ │ │ ├── iterator │ │ │ │ ├── limits │ │ │ │ ├── list │ │ │ │ ├── locale │ │ │ │ ├── locale.h │ │ │ │ ├── map │ │ │ │ ├── math.h │ │ │ │ ├── mem.h │ │ │ │ ├── memory │ │ │ │ ├── mmemory.h │ │ │ │ ├── new │ │ │ │ ├── new.h │ │ │ │ ├── numeric │ │ │ │ ├── old_hp │ │ │ │ ├── algo.h │ │ │ │ ├── algobase.h │ │ │ │ ├── alloc.h │ │ │ │ ├── bvector.h │ │ │ │ ├── defalloc.h │ │ │ │ ├── deque.h │ │ │ │ ├── export │ │ │ │ ├── function.h │ │ │ │ ├── hash_map.h │ │ │ │ ├── hash_set.h │ │ │ │ ├── hashtable.h │ │ │ │ ├── heap.h │ │ │ │ ├── iterator.h │ │ │ │ ├── list.h │ │ │ │ ├── map.h │ │ │ │ ├── multimap.h │ │ │ │ ├── multiset.h │ │ │ │ ├── numeric.h │ │ │ │ ├── pair.h │ │ │ │ ├── pthread_alloc.h │ │ │ │ ├── queue.h │ │ │ │ ├── rope.h │ │ │ │ ├── set.h │ │ │ │ ├── slist.h │ │ │ │ ├── stack.h │ │ │ │ ├── tempbuf.h │ │ │ │ ├── tree.h │ │ │ │ └── vector.h │ │ │ │ ├── ostream │ │ │ │ ├── ostream.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pthread_alloc │ │ │ │ ├── queue │ │ │ │ ├── rlocks.h │ │ │ │ ├── rope │ │ │ │ ├── set │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── slist │ │ │ │ ├── sstream │ │ │ │ ├── stack │ │ │ │ ├── stdarg.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdexcept │ │ │ │ ├── stdio.h │ │ │ │ ├── stdio_streambuf │ │ │ │ ├── stdiostream.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── stl │ │ │ │ ├── _abbrevs.h │ │ │ │ ├── _algo.c │ │ │ │ ├── _algo.h │ │ │ │ ├── _algobase.c │ │ │ │ ├── _algobase.h │ │ │ │ ├── _alloc.c │ │ │ │ ├── _alloc.h │ │ │ │ ├── _auto_ptr.h │ │ │ │ ├── _bitset.c │ │ │ │ ├── _bitset.h │ │ │ │ ├── _bvector.h │ │ │ │ ├── _check_config.h │ │ │ │ ├── _cmath.h │ │ │ │ ├── _codecvt.h │ │ │ │ ├── _collate.h │ │ │ │ ├── _complex.c │ │ │ │ ├── _complex.h │ │ │ │ ├── _config.h │ │ │ │ ├── _config_compat.h │ │ │ │ ├── _config_compat_post.h │ │ │ │ ├── _construct.h │ │ │ │ ├── _ctraits_fns.h │ │ │ │ ├── _ctype.h │ │ │ │ ├── _cwchar.h │ │ │ │ ├── _deque.c │ │ │ │ ├── _deque.h │ │ │ │ ├── _epilog.h │ │ │ │ ├── _exception.h │ │ │ │ ├── _fstream.c │ │ │ │ ├── _fstream.h │ │ │ │ ├── _function.h │ │ │ │ ├── _function_base.h │ │ │ │ ├── _hash_fun.h │ │ │ │ ├── _hash_map.h │ │ │ │ ├── _hash_set.h │ │ │ │ ├── _hashtable.c │ │ │ │ ├── _hashtable.h │ │ │ │ ├── _heap.c │ │ │ │ ├── _heap.h │ │ │ │ ├── _ios.c │ │ │ │ ├── _ios.h │ │ │ │ ├── _ios_base.h │ │ │ │ ├── _iosfwd.h │ │ │ │ ├── _istream.c │ │ │ │ ├── _istream.h │ │ │ │ ├── _istreambuf_iterator.h │ │ │ │ ├── _iterator.h │ │ │ │ ├── _iterator_base.h │ │ │ │ ├── _iterator_old.h │ │ │ │ ├── _limits.c │ │ │ │ ├── _limits.h │ │ │ │ ├── _list.c │ │ │ │ ├── _list.h │ │ │ │ ├── _locale.h │ │ │ │ ├── _map.h │ │ │ │ ├── _messages_facets.h │ │ │ │ ├── _monetary.c │ │ │ │ ├── _monetary.h │ │ │ │ ├── _null_stream.h │ │ │ │ ├── _num_get.c │ │ │ │ ├── _num_get.h │ │ │ │ ├── _num_put.c │ │ │ │ ├── _num_put.h │ │ │ │ ├── _numeric.c │ │ │ │ ├── _numeric.h │ │ │ │ ├── _numpunct.h │ │ │ │ ├── _ostream.c │ │ │ │ ├── _ostream.h │ │ │ │ ├── _ostreambuf_iterator.h │ │ │ │ ├── _pair.h │ │ │ │ ├── _prolog.h │ │ │ │ ├── _pthread_alloc.c │ │ │ │ ├── _pthread_alloc.h │ │ │ │ ├── _ptrs_specialize.h │ │ │ │ ├── _queue.h │ │ │ │ ├── _range_errors.h │ │ │ │ ├── _raw_storage_iter.h │ │ │ │ ├── _relops.h │ │ │ │ ├── _relops_cont.h │ │ │ │ ├── _relops_template.h │ │ │ │ ├── _rope.c │ │ │ │ ├── _rope.h │ │ │ │ ├── _set.h │ │ │ │ ├── _set_operators.h │ │ │ │ ├── _site_config.h │ │ │ │ ├── _slist.c │ │ │ │ ├── _slist.h │ │ │ │ ├── _slist_base.c │ │ │ │ ├── _slist_base.h │ │ │ │ ├── _sparc_atomic.h │ │ │ │ ├── _sstream.c │ │ │ │ ├── _sstream.h │ │ │ │ ├── _stack.h │ │ │ │ ├── _stdio_file.h │ │ │ │ ├── _stream_iterator.h │ │ │ │ ├── _streambuf.c │ │ │ │ ├── _streambuf.h │ │ │ │ ├── _streambuf_iterator.h │ │ │ │ ├── _string.c │ │ │ │ ├── _string.h │ │ │ │ ├── _string_fwd.c │ │ │ │ ├── _string_fwd.h │ │ │ │ ├── _string_hash.h │ │ │ │ ├── _string_io.c │ │ │ │ ├── _string_io.h │ │ │ │ ├── _strstream.h │ │ │ │ ├── _tempbuf.c │ │ │ │ ├── _tempbuf.h │ │ │ │ ├── _threads.c │ │ │ │ ├── _threads.h │ │ │ │ ├── _time_facets.c │ │ │ │ ├── _time_facets.h │ │ │ │ ├── _tree.c │ │ │ │ ├── _tree.h │ │ │ │ ├── _uninitialized.h │ │ │ │ ├── _valarray.c │ │ │ │ ├── _valarray.h │ │ │ │ ├── _vector.c │ │ │ │ ├── _vector.h │ │ │ │ ├── c_locale.h │ │ │ │ ├── char_traits.h │ │ │ │ ├── concept_checks.h │ │ │ │ ├── debug │ │ │ │ │ ├── _debug.c │ │ │ │ │ ├── _debug.h │ │ │ │ │ ├── _deque.h │ │ │ │ │ ├── _hashtable.h │ │ │ │ │ ├── _iterator.h │ │ │ │ │ ├── _list.h │ │ │ │ │ ├── _slist.h │ │ │ │ │ ├── _string.h │ │ │ │ │ ├── _tree.h │ │ │ │ │ └── _vector.h │ │ │ │ ├── msl_string.h │ │ │ │ ├── type_traits.h │ │ │ │ └── wrappers │ │ │ │ │ ├── _deque.h │ │ │ │ │ ├── _hash_map.h │ │ │ │ │ ├── _hash_set.h │ │ │ │ │ ├── _list.h │ │ │ │ │ ├── _map.h │ │ │ │ │ ├── _mmap.h │ │ │ │ │ ├── _set.h │ │ │ │ │ ├── _slist.h │ │ │ │ │ └── _vector.h │ │ │ │ ├── stl_user_config.h │ │ │ │ ├── streambuf │ │ │ │ ├── streambuf.h │ │ │ │ ├── string │ │ │ │ ├── string.h │ │ │ │ ├── strstream │ │ │ │ ├── strstream.h │ │ │ │ ├── time.h │ │ │ │ ├── typeinfo │ │ │ │ ├── typeinfo.h │ │ │ │ ├── using │ │ │ │ ├── cstring │ │ │ │ ├── export │ │ │ │ ├── fstream │ │ │ │ ├── h │ │ │ │ │ ├── fstream.h │ │ │ │ │ ├── iomanip.h │ │ │ │ │ ├── iostream.h │ │ │ │ │ ├── ostream.h │ │ │ │ │ ├── streambuf.h │ │ │ │ │ └── strstream.h │ │ │ │ ├── iomanip │ │ │ │ ├── ios │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── istream │ │ │ │ ├── locale │ │ │ │ ├── ostream │ │ │ │ ├── sstream │ │ │ │ ├── streambuf │ │ │ │ └── strstream │ │ │ │ ├── utility │ │ │ │ ├── valarray │ │ │ │ ├── vector │ │ │ │ ├── wchar.h │ │ │ │ ├── wctype.h │ │ │ │ └── wrap_std │ │ │ │ ├── complex │ │ │ │ ├── export │ │ │ │ ├── fstream │ │ │ │ ├── h │ │ │ │ ├── fstream.h │ │ │ │ ├── iostream.h │ │ │ │ ├── streambuf.h │ │ │ │ └── strstream.h │ │ │ │ ├── iomanip │ │ │ │ ├── ios │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── istream │ │ │ │ ├── locale │ │ │ │ ├── ostream │ │ │ │ ├── sstream │ │ │ │ ├── streambuf │ │ │ │ └── strstream │ │ ├── Src │ │ │ ├── DemoDisc_G.cpp │ │ │ ├── Ecstasy │ │ │ │ ├── DmaE.hpp │ │ │ │ ├── Ecstasy.hpp │ │ │ │ ├── EcstasyE.cpp │ │ │ │ ├── EcstasyE.hpp │ │ │ │ ├── EcstasyEx.cpp │ │ │ │ ├── EcstasyEx.hpp │ │ │ │ ├── TextureInfoPlat.cpp │ │ │ │ ├── TextureInfoPlat.hpp │ │ │ │ ├── eEnvEffectsE.cpp │ │ │ │ ├── eEnvMapE.cpp │ │ │ │ ├── eLightE.cpp │ │ │ │ ├── eLightPlat.hpp │ │ │ │ ├── eMathE.cpp │ │ │ │ ├── eMatrixE.cpp │ │ │ │ ├── ePShader.cpp │ │ │ │ ├── eSolidPlat.cpp │ │ │ │ ├── eSprites.cpp │ │ │ │ ├── eStrip.cpp │ │ │ │ ├── eVShader.cpp │ │ │ │ ├── eViewPlat.cpp │ │ │ │ ├── eViewPlat.hpp │ │ │ │ ├── eVisualTreatment.cpp │ │ │ │ ├── xSprites.cpp │ │ │ │ └── xSprites.hpp │ │ │ ├── JoyE.cpp │ │ │ ├── Logitech │ │ │ │ ├── Condition.cpp │ │ │ │ ├── Constant.cpp │ │ │ │ ├── Force.cpp │ │ │ │ ├── LGWheels.cpp │ │ │ │ ├── Periodic.cpp │ │ │ │ ├── Ramp.cpp │ │ │ │ └── Wheels.cpp │ │ │ ├── MemoryCard │ │ │ │ └── MemoryCardImp.cpp │ │ │ ├── Movie_GC.cpp │ │ │ ├── Platform_G.cpp │ │ │ ├── Render │ │ │ │ ├── AcidFX_G.cpp │ │ │ │ ├── Screenshot.cpp │ │ │ │ ├── SunE.cpp │ │ │ │ └── bba_com.cpp │ │ │ └── xSparks.cpp │ │ └── bWare │ │ │ └── GameCube │ │ │ ├── bWare │ │ │ └── GameCube │ │ │ │ └── SN │ │ │ │ └── include │ │ │ │ └── new │ │ │ └── dolphinsdk │ │ │ ├── include │ │ │ └── dolphin │ │ │ │ ├── CARDPriv.h │ │ │ │ ├── DVDPriv.h │ │ │ │ ├── GBAPriv.h │ │ │ │ ├── OSRtcPriv.h │ │ │ │ ├── PPCArch.h │ │ │ │ ├── __ppc_eabi_init.h │ │ │ │ ├── __start.h │ │ │ │ ├── ai.h │ │ │ │ ├── ar.h │ │ │ │ ├── arq.h │ │ │ │ ├── card.h │ │ │ │ ├── db.h │ │ │ │ ├── demo.h │ │ │ │ ├── demo │ │ │ │ ├── DEMOInit.h │ │ │ │ ├── DEMOPad.h │ │ │ │ ├── DEMOPuts.h │ │ │ │ ├── DEMOStats.h │ │ │ │ └── DEMOWin.h │ │ │ │ ├── demoPriv.h │ │ │ │ ├── dsp.h │ │ │ │ ├── dtk.h │ │ │ │ ├── dvd.h │ │ │ │ ├── exi.h │ │ │ │ ├── gba.h │ │ │ │ ├── gx.h │ │ │ │ ├── gx │ │ │ │ ├── GXBump.h │ │ │ │ ├── GXCommandList.h │ │ │ │ ├── GXCull.h │ │ │ │ ├── GXDispList.h │ │ │ │ ├── GXDraw.h │ │ │ │ ├── GXEnum.h │ │ │ │ ├── GXExtra.h │ │ │ │ ├── GXFifo.h │ │ │ │ ├── GXFrameBuffer.h │ │ │ │ ├── GXGeometry.h │ │ │ │ ├── GXGet.h │ │ │ │ ├── GXLighting.h │ │ │ │ ├── GXManage.h │ │ │ │ ├── GXPerf.h │ │ │ │ ├── GXPixel.h │ │ │ │ ├── GXPriv.h │ │ │ │ ├── GXStruct.h │ │ │ │ ├── GXTev.h │ │ │ │ ├── GXTexture.h │ │ │ │ ├── GXTransform.h │ │ │ │ ├── GXVerify.h │ │ │ │ └── GXVert.h │ │ │ │ ├── hw_regs.h │ │ │ │ ├── math.h │ │ │ │ ├── mtx.h │ │ │ │ ├── mtx │ │ │ │ └── GeoTypes.h │ │ │ │ ├── mtx44_ext.h │ │ │ │ ├── os.h │ │ │ │ ├── os │ │ │ │ ├── OSAlarm.h │ │ │ │ ├── OSAlloc.h │ │ │ │ ├── OSArena.h │ │ │ │ ├── OSBootInfo.h │ │ │ │ ├── OSCache.h │ │ │ │ ├── OSContext.h │ │ │ │ ├── OSError.h │ │ │ │ ├── OSException.h │ │ │ │ ├── OSExpansion.h │ │ │ │ ├── OSFastCast.h │ │ │ │ ├── OSFont.h │ │ │ │ ├── OSIC.h │ │ │ │ ├── OSInterrupt.h │ │ │ │ ├── OSMemory.h │ │ │ │ ├── OSMessage.h │ │ │ │ ├── OSModule.h │ │ │ │ ├── OSMutex.h │ │ │ │ ├── OSPriv.h │ │ │ │ ├── OSReset.h │ │ │ │ ├── OSResetSW.h │ │ │ │ ├── OSSerial.h │ │ │ │ └── OSThread.h │ │ │ │ ├── pad.h │ │ │ │ ├── sipriv.h │ │ │ │ ├── thp.h │ │ │ │ ├── thp │ │ │ │ ├── THPAudio.h │ │ │ │ ├── THPAudioDecode.h │ │ │ │ ├── THPBuffer.h │ │ │ │ ├── THPDraw.h │ │ │ │ ├── THPFile.h │ │ │ │ ├── THPInfo.h │ │ │ │ ├── THPPlayer.h │ │ │ │ ├── THPRead.h │ │ │ │ └── THPVideoDecode.h │ │ │ │ ├── types.h │ │ │ │ ├── vi.h │ │ │ │ ├── vifuncs.h │ │ │ │ └── vitypes.h │ │ │ └── src │ │ │ └── os │ │ │ └── __ppc_eabi_init.cpp │ ├── Indep │ │ ├── Libs │ │ │ ├── Support │ │ │ │ ├── Miscellaneous │ │ │ │ │ ├── CARP.h │ │ │ │ │ ├── Carp.cpp │ │ │ │ │ ├── SAP.h │ │ │ │ │ ├── StringHash.cpp │ │ │ │ │ └── StringHash.h │ │ │ │ ├── Utility │ │ │ │ │ ├── UBezierLite.cpp │ │ │ │ │ ├── UBezierLite.hpp │ │ │ │ │ ├── UBitPack.cpp │ │ │ │ │ ├── UBitPack.hpp │ │ │ │ │ ├── UCOM.h │ │ │ │ │ ├── UCollections.h │ │ │ │ │ ├── UCrc.h │ │ │ │ │ ├── UEALibs.cpp │ │ │ │ │ ├── UEALibs.hpp │ │ │ │ │ ├── UGroup.cpp │ │ │ │ │ ├── UGroup.hpp │ │ │ │ │ ├── UListable.h │ │ │ │ │ ├── UMath.cpp │ │ │ │ │ ├── UMath.h │ │ │ │ │ ├── UQueue.h │ │ │ │ │ ├── USpline.h │ │ │ │ │ ├── UStandard.h │ │ │ │ │ ├── UTLAllocator.h │ │ │ │ │ ├── UTLVector.h │ │ │ │ │ ├── UTypes.h │ │ │ │ │ ├── UVector.h │ │ │ │ │ ├── UVectorMath.cpp │ │ │ │ │ └── UVectorMath.h │ │ │ │ └── stlgc │ │ │ │ │ └── stl │ │ │ │ │ └── _alloc.h │ │ │ └── realcore │ │ │ │ └── include │ │ │ │ └── common │ │ │ │ └── realcore │ │ │ │ └── system.h │ │ ├── SourceLists │ │ │ ├── zAI.cpp │ │ │ ├── zAnim.cpp │ │ │ ├── zAttribSys.cpp │ │ │ ├── zBWare.cpp │ │ │ ├── zCamera.cpp │ │ │ ├── zComms.cpp │ │ │ ├── zDebug.cpp │ │ │ ├── zDynamics.cpp │ │ │ ├── zEAXSound.cpp │ │ │ ├── zEAXSound2.cpp │ │ │ ├── zEagl4Anim.cpp │ │ │ ├── zEcstasy.cpp │ │ │ ├── zFEng.cpp │ │ │ ├── zFe.cpp │ │ │ ├── zFe2.cpp │ │ │ ├── zFeOverlay.cpp │ │ │ ├── zFoundation.cpp │ │ │ ├── zGameModes.cpp │ │ │ ├── zGameplay.cpp │ │ │ ├── zLua.cpp │ │ │ ├── zMain.cpp │ │ │ ├── zMisc.cpp │ │ │ ├── zMiscSmall.cpp │ │ │ ├── zMission.cpp │ │ │ ├── zOnline.cpp │ │ │ ├── zPhysics.cpp │ │ │ ├── zPhysicsBehaviors.cpp │ │ │ ├── zPlatform.cpp │ │ │ ├── zRender.cpp │ │ │ ├── zSim.cpp │ │ │ ├── zSpeech.cpp │ │ │ ├── zTrack.cpp │ │ │ ├── zWorld.cpp │ │ │ └── zWorld2.cpp │ │ ├── Src │ │ │ ├── AI │ │ │ │ ├── AIAction.h │ │ │ │ ├── AIAvoidable.h │ │ │ │ ├── AIDebug.h │ │ │ │ ├── AIGoal.h │ │ │ │ ├── AIMath.h │ │ │ │ ├── AIPursuit.h │ │ │ │ ├── AIRoadBlock.h │ │ │ │ ├── AITarget.h │ │ │ │ ├── AIVehicle.h │ │ │ │ ├── AIVehicleCopCar.h │ │ │ │ ├── AIVehicleHelicopter.h │ │ │ │ ├── AIVehiclePursuit.h │ │ │ │ ├── Actions │ │ │ │ │ ├── AIActionAirborne.cpp │ │ │ │ │ ├── AIActionGetUnstuck.cpp │ │ │ │ │ ├── AIActionHeadOnRam.cpp │ │ │ │ │ ├── AIActionHeliExit.cpp │ │ │ │ │ ├── AIActionHeliPursuit.cpp │ │ │ │ │ ├── AIActionJackKnife.cpp │ │ │ │ │ ├── AIActionNone.cpp │ │ │ │ │ ├── AIActionPursuitOffRoad.cpp │ │ │ │ │ ├── AIActionRace.cpp │ │ │ │ │ ├── AIActionRam.cpp │ │ │ │ │ ├── AIActionSpline.cpp │ │ │ │ │ ├── AIActionStaticRoadBlock.cpp │ │ │ │ │ ├── AIActionStopShort.cpp │ │ │ │ │ ├── AIActionStrafe.cpp │ │ │ │ │ ├── AIActionTooDamaged.cpp │ │ │ │ │ └── AIActionTraffic.cpp │ │ │ │ ├── AdaptivePIDController.h │ │ │ │ ├── Common │ │ │ │ │ ├── AIAction.cpp │ │ │ │ │ ├── AIGoal.cpp │ │ │ │ │ ├── AIMath.cpp │ │ │ │ │ ├── AIPursuit.cpp │ │ │ │ │ ├── AIRoadBlock.cpp │ │ │ │ │ ├── AIRoadBlockSetups.cpp │ │ │ │ │ ├── AISpawnManager.cpp │ │ │ │ │ ├── AISteer.cpp │ │ │ │ │ ├── AITarget.cpp │ │ │ │ │ ├── AIVehicle.cpp │ │ │ │ │ ├── AIVehicleCopCar.cpp │ │ │ │ │ ├── AIVehicleHelicopter.cpp │ │ │ │ │ ├── AIVehiclePursuit.cpp │ │ │ │ │ ├── AIVehicleRacecar.cpp │ │ │ │ │ ├── AIVehicleTraffic.cpp │ │ │ │ │ └── AdaptivePIDController.cpp │ │ │ │ ├── Gps.cpp │ │ │ │ ├── activities │ │ │ │ │ ├── AICopManager.cpp │ │ │ │ │ ├── AITrafficManager.cpp │ │ │ │ │ ├── AITrafficManager.hpp │ │ │ │ │ └── AvoidableManager.cpp │ │ │ │ └── aireflectedtypes.h │ │ │ ├── Animation │ │ │ │ ├── AnimBank.cpp │ │ │ │ ├── AnimBank.hpp │ │ │ │ ├── AnimCandidates.cpp │ │ │ │ ├── AnimCandidates.hpp │ │ │ │ ├── AnimChooseArrest.cpp │ │ │ │ ├── AnimChooser.cpp │ │ │ │ ├── AnimChooser.hpp │ │ │ │ ├── AnimCtrl.cpp │ │ │ │ ├── AnimCtrl.hpp │ │ │ │ ├── AnimDirectory.cpp │ │ │ │ ├── AnimDirectory.hpp │ │ │ │ ├── AnimEngineManager.cpp │ │ │ │ ├── AnimEngineManager.hpp │ │ │ │ ├── AnimEntity.cpp │ │ │ │ ├── AnimEntity.hpp │ │ │ │ ├── AnimEntity_BasicCharacter.cpp │ │ │ │ ├── AnimEntity_BasicCharacter.hpp │ │ │ │ ├── AnimEntity_Prop.cpp │ │ │ │ ├── AnimEntity_Prop.hpp │ │ │ │ ├── AnimEntity_WorldEntity.cpp │ │ │ │ ├── AnimEntity_WorldEntity.hpp │ │ │ │ ├── AnimInternal.cpp │ │ │ │ ├── AnimLocator.cpp │ │ │ │ ├── AnimPart.cpp │ │ │ │ ├── AnimPart.hpp │ │ │ │ ├── AnimPlayer.cpp │ │ │ │ ├── AnimPlayer.hpp │ │ │ │ ├── AnimPrint.cpp │ │ │ │ ├── AnimScene.cpp │ │ │ │ ├── AnimScene.hpp │ │ │ │ ├── AnimSkeleton.cpp │ │ │ │ ├── AnimSkeleton.hpp │ │ │ │ ├── AnimWorldScene.cpp │ │ │ │ ├── AnimWorldTypes.hpp │ │ │ │ ├── ControlScenario.cpp │ │ │ │ ├── ControlScenario.hpp │ │ │ │ ├── GenericNISControlScenario.cpp │ │ │ │ ├── GenericNISControlScenario.hpp │ │ │ │ ├── WorldAnimCtrl.cpp │ │ │ │ ├── WorldAnimCtrl.hpp │ │ │ │ ├── WorldAnimInstanceDirectory.cpp │ │ │ │ └── WorldAnimInstanceDirectory.hpp │ │ │ ├── Camera │ │ │ │ ├── Actions │ │ │ │ │ ├── CDActionDebug.cpp │ │ │ │ │ ├── CDActionDebugWatchCar.cpp │ │ │ │ │ ├── CDActionDrive.cpp │ │ │ │ │ ├── CDActionIce.cpp │ │ │ │ │ ├── CDActionShowcase.cpp │ │ │ │ │ ├── CDActionTrackCar.cpp │ │ │ │ │ └── CDActionTrackCop.cpp │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.hpp │ │ │ │ ├── CameraAI.cpp │ │ │ │ ├── CameraAI.hpp │ │ │ │ ├── CameraMover.cpp │ │ │ │ ├── CameraMover.hpp │ │ │ │ ├── CameraNoise.hpp │ │ │ │ ├── ChaseCamAI.cpp │ │ │ │ ├── ICE │ │ │ │ │ ├── ICEAnchor.cpp │ │ │ │ │ ├── ICEAnchor.hpp │ │ │ │ │ ├── ICEAnimScene.cpp │ │ │ │ │ ├── ICEData.cpp │ │ │ │ │ ├── ICEData.hpp │ │ │ │ │ ├── ICEManager.cpp │ │ │ │ │ ├── ICEManager.hpp │ │ │ │ │ ├── ICEMath.hpp │ │ │ │ │ ├── ICEMover.cpp │ │ │ │ │ ├── ICEMover.hpp │ │ │ │ │ ├── ICEOverlays.cpp │ │ │ │ │ ├── ICEPoint.cpp │ │ │ │ │ ├── ICEPoint.hpp │ │ │ │ │ ├── ICERender.cpp │ │ │ │ │ ├── ICEReplay.cpp │ │ │ │ │ └── ICEReplay.hpp │ │ │ │ └── Movers │ │ │ │ │ ├── CopView.cpp │ │ │ │ │ ├── Cubic.cpp │ │ │ │ │ ├── Cubic.hpp │ │ │ │ │ ├── CubicTweaks.hpp │ │ │ │ │ ├── DebugWorld.cpp │ │ │ │ │ ├── Rearview.cpp │ │ │ │ │ ├── SelectCar.cpp │ │ │ │ │ ├── Showcase.cpp │ │ │ │ │ ├── Still.cpp │ │ │ │ │ ├── TrackCar.cpp │ │ │ │ │ └── TrackCop.cpp │ │ │ ├── Debug │ │ │ │ ├── Common │ │ │ │ │ └── DebugGraph.cpp │ │ │ │ └── Debugable.h │ │ │ ├── EAGL4Anim │ │ │ │ ├── AnimMemoryMap.h │ │ │ │ ├── AnimStat.cpp │ │ │ │ ├── AnimStat.h │ │ │ │ ├── AnimTypeId.h │ │ │ │ ├── AnimUtil.cpp │ │ │ │ ├── AnimUtil.h │ │ │ │ ├── Attribute.cpp │ │ │ │ ├── Attribute.h │ │ │ │ ├── AttributeDictionary.cpp │ │ │ │ ├── AttributeDictionary.h │ │ │ │ ├── AttributeId.h │ │ │ │ ├── BoneMask.cpp │ │ │ │ ├── BoneMask.h │ │ │ │ ├── ClipSet.cpp │ │ │ │ ├── ClipSet.h │ │ │ │ ├── CompoundChannel.cpp │ │ │ │ ├── CompoundChannel.h │ │ │ │ ├── Csis.h │ │ │ │ ├── CsisEventChannel.cpp │ │ │ │ ├── CsisEventChannel.h │ │ │ │ ├── DeltaChan.cpp │ │ │ │ ├── DeltaChan.h │ │ │ │ ├── DeltaCompressedData.cpp │ │ │ │ ├── DeltaCompressedData.h │ │ │ │ ├── DeltaF1.h │ │ │ │ ├── DeltaF3.h │ │ │ │ ├── DeltaQ.h │ │ │ │ ├── DeltaQFast.h │ │ │ │ ├── DeltaSingleQ.h │ │ │ │ ├── Event.h │ │ │ │ ├── EventTarget.cpp │ │ │ │ ├── EventTarget.h │ │ │ │ ├── FnAnim.cpp │ │ │ │ ├── FnAnim.h │ │ │ │ ├── FnAnimFactory.h │ │ │ │ ├── FnAnimMemoryMap.cpp │ │ │ │ ├── FnCsisEventChannel.h │ │ │ │ ├── FnCycle.h │ │ │ │ ├── FnDefaultAnimBank.h │ │ │ │ ├── FnDeltaF1.cpp │ │ │ │ ├── FnDeltaF1.h │ │ │ │ ├── FnDeltaF3.cpp │ │ │ │ ├── FnDeltaF3.h │ │ │ │ ├── FnDeltaQ.cpp │ │ │ │ ├── FnDeltaQ.h │ │ │ │ ├── FnDeltaQFast.cpp │ │ │ │ ├── FnDeltaQFast.h │ │ │ │ ├── FnDeltaSingleQ.cpp │ │ │ │ ├── FnDeltaSingleQ.h │ │ │ │ ├── FnEventBlender.cpp │ │ │ │ ├── FnEventBlender.h │ │ │ │ ├── FnGraft.h │ │ │ │ ├── FnPoseAnim.cpp │ │ │ │ ├── FnPoseAnim.h │ │ │ │ ├── FnPoseBlender.cpp │ │ │ │ ├── FnPoseBlender.h │ │ │ │ ├── FnPoseMirror.h │ │ │ │ ├── FnRawEventChannel.h │ │ │ │ ├── FnRawLinearChannel.h │ │ │ │ ├── FnRawPoseChannel.cpp │ │ │ │ ├── FnRawPoseChannel.h │ │ │ │ ├── FnRunBlender.cpp │ │ │ │ ├── FnRunBlender.h │ │ │ │ ├── FnStatelessF3.cpp │ │ │ │ ├── FnStatelessF3.h │ │ │ │ ├── FnStatelessQ.cpp │ │ │ │ ├── FnStatelessQ.h │ │ │ │ ├── FnTurnBlender.cpp │ │ │ │ ├── FnTurnBlender.h │ │ │ │ ├── IK.cpp │ │ │ │ ├── IK.h │ │ │ │ ├── MemoryPoolManager.cpp │ │ │ │ ├── MemoryPoolManager.h │ │ │ │ ├── PhaseChan.cpp │ │ │ │ ├── PhaseChan.h │ │ │ │ ├── PoseAnim.cpp │ │ │ │ ├── PoseAnim.h │ │ │ │ ├── PosePalette.h │ │ │ │ ├── RawEventChannel.cpp │ │ │ │ ├── RawEventChannel.h │ │ │ │ ├── RawLinearChannel.h │ │ │ │ ├── RawPoseChannel.cpp │ │ │ │ ├── RawPoseChannel.h │ │ │ │ ├── RawStateChan.cpp │ │ │ │ ├── RawStateChan.h │ │ │ │ ├── ScratchBuffer.cpp │ │ │ │ ├── ScratchBuffer.h │ │ │ │ ├── Skeleton.cpp │ │ │ │ ├── Skeleton.h │ │ │ │ ├── SkeletonData.h │ │ │ │ ├── StatelessF3.cpp │ │ │ │ ├── StatelessF3.h │ │ │ │ ├── StatelessQ.cpp │ │ │ │ ├── StatelessQ.h │ │ │ │ ├── System.h │ │ │ │ ├── SystemCmn.cpp │ │ │ │ ├── eagl4AnimBank.cpp │ │ │ │ ├── eagl4AnimBank.h │ │ │ │ ├── eagl4realmath.h │ │ │ │ ├── eagl4realsystem.h │ │ │ │ ├── eagl4runtimetransform.cpp │ │ │ │ ├── eagl4runtimetransform.h │ │ │ │ ├── eagl4supportbase.cpp │ │ │ │ ├── eagl4supportconspool.cpp │ │ │ │ ├── eagl4supportconspool.h │ │ │ │ ├── eagl4supportdef.h │ │ │ │ ├── eagl4supportdlopen.cpp │ │ │ │ ├── eagl4supportdlopen.h │ │ │ │ ├── eagl4supportprintmessage.cpp │ │ │ │ ├── eagl4supportprintmessage.h │ │ │ │ ├── eagl4supportsympool.cpp │ │ │ │ ├── eagl4supportsympool.h │ │ │ │ └── system.cpp │ │ │ ├── EAXSound │ │ │ │ ├── AemsDef.cpp │ │ │ │ ├── AudioMemBase.hpp │ │ │ │ ├── AudioMemoryManager.cpp │ │ │ │ ├── AudioMemoryManager.hpp │ │ │ │ ├── CARSFX │ │ │ │ │ ├── CARSFX.cpp │ │ │ │ │ ├── CARSFX.hpp │ │ │ │ │ ├── CARSFX_BottomOut.cpp │ │ │ │ │ ├── CARSFX_BottomOut.hpp │ │ │ │ │ ├── CARSFX_Engine.cpp │ │ │ │ │ ├── CARSFX_Engine.hpp │ │ │ │ │ ├── CARSFX_Nitrous.cpp │ │ │ │ │ ├── CARSFX_Nitrous.hpp │ │ │ │ │ ├── CARSFX_PreColWoosh.cpp │ │ │ │ │ ├── CARSFX_PreColWoosh.hpp │ │ │ │ │ ├── CARSFX_Rain.cpp │ │ │ │ │ ├── CARSFX_Rain.hpp │ │ │ │ │ ├── CARSFX_RoadNoise.hpp │ │ │ │ │ ├── CARSFX_Roadnoise.cpp │ │ │ │ │ ├── CARSFX_STRUCTS.hpp │ │ │ │ │ ├── CARSFX_Shifting.cpp │ │ │ │ │ ├── CARSFX_Shifting.hpp │ │ │ │ │ ├── CARSFX_Siren.cpp │ │ │ │ │ ├── CARSFX_Siren.hpp │ │ │ │ │ ├── CARSFX_Skids.cpp │ │ │ │ │ ├── CARSFX_Skids.hpp │ │ │ │ │ ├── CARSFX_SparkChatter.cpp │ │ │ │ │ ├── CARSFX_SparkChatter.hpp │ │ │ │ │ ├── CARSFX_Structs.cpp │ │ │ │ │ ├── CARSFX_TrafficFX.cpp │ │ │ │ │ ├── CARSFX_TrafficFX.hpp │ │ │ │ │ ├── CARSFX_Turbo.cpp │ │ │ │ │ ├── CARSFX_Turbo.hpp │ │ │ │ │ ├── CARSFX_WindNoise.cpp │ │ │ │ │ ├── CARSFX_WindNoise.hpp │ │ │ │ │ ├── SFXObj_Ambience.cpp │ │ │ │ │ ├── SFXObj_Ambience.hpp │ │ │ │ │ ├── SFXObj_Collision.cpp │ │ │ │ │ ├── SFXObj_Collision.hpp │ │ │ │ │ ├── SFXObj_EnumAttributes.hpp │ │ │ │ │ ├── SFXObj_FEHUD.cpp │ │ │ │ │ ├── SFXObj_FEHUD.hpp │ │ │ │ │ ├── SFXObj_Helicopter.cpp │ │ │ │ │ ├── SFXObj_Helicopter.hpp │ │ │ │ │ ├── SFXObj_MomentStrm.cpp │ │ │ │ │ ├── SFXObj_MomentStrm.hpp │ │ │ │ │ ├── SFXObj_Movies.cpp │ │ │ │ │ ├── SFXObj_Movies.hpp │ │ │ │ │ ├── SFXObj_NISStream.cpp │ │ │ │ │ ├── SFXObj_NISStream.hpp │ │ │ │ │ ├── SFXObj_Pathfinder.cpp │ │ │ │ │ ├── SFXObj_Pathfinder.hpp │ │ │ │ │ ├── SFXObj_Reverb.cpp │ │ │ │ │ ├── SFXObj_Reverb.hpp │ │ │ │ │ ├── SFXObj_Speech.cpp │ │ │ │ │ ├── SFXObj_Speech.hpp │ │ │ │ │ ├── SFXObj_TruckFX.cpp │ │ │ │ │ ├── SFXObj_TruckFX.hpp │ │ │ │ │ ├── SFXObj_Woosh.cpp │ │ │ │ │ ├── SFXObj_Woosh.hpp │ │ │ │ │ ├── SFXObj_WorldObject.cpp │ │ │ │ │ └── SFXObj_WorldObject.hpp │ │ │ │ ├── CSISAllocator.h │ │ │ │ ├── Data │ │ │ │ │ ├── SND_DopplerParams.cpp │ │ │ │ │ ├── SND_DopplerParams.hpp │ │ │ │ │ ├── SND_REVERBFXPARAMS.hpp │ │ │ │ │ └── SND_ReverbFXParams.cpp │ │ │ │ ├── DebugPrintSound.hpp │ │ │ │ ├── EAXAITunerCar.cpp │ │ │ │ ├── EAXAITunerCar.hpp │ │ │ │ ├── EAXAIUtils.cpp │ │ │ │ ├── EAXAIUtils.hpp │ │ │ │ ├── EAXAemsManager.cpp │ │ │ │ ├── EAXAemsManager.h │ │ │ │ ├── EAXCar.cpp │ │ │ │ ├── EAXCar.hpp │ │ │ │ ├── EAXCarState.hpp │ │ │ │ ├── EAXFrontEnd.cpp │ │ │ │ ├── EAXSND8Wrapper.cpp │ │ │ │ ├── EAXSOund.hpp │ │ │ │ ├── EAXSndUtil.cpp │ │ │ │ ├── EAXSndUtil.h │ │ │ │ ├── EAXSound.cpp │ │ │ │ ├── EAXSoundTypes.h │ │ │ │ ├── EAXTrafficCar.cpp │ │ │ │ ├── EAXTrafficCar.hpp │ │ │ │ ├── EAXTunerCar.cpp │ │ │ │ ├── EAXTunerCar.hpp │ │ │ │ ├── EAXVolumes.cpp │ │ │ │ ├── EaxSoundTypes.cpp │ │ │ │ ├── Ginsu │ │ │ │ │ ├── ginsu.h │ │ │ │ │ ├── ginsudata.cpp │ │ │ │ │ ├── ginsuhelper.h │ │ │ │ │ └── ginsusynth.cpp │ │ │ │ ├── OldSoundTemplates.hpp │ │ │ │ ├── PF_iallocatorimpl.h │ │ │ │ ├── SFX_Common.cpp │ │ │ │ ├── SFX_Common.hpp │ │ │ │ ├── SFX_base.hpp │ │ │ │ ├── STICH_Loader.cpp │ │ │ │ ├── STICH_PlayBack.cpp │ │ │ │ ├── STICH_Playback.h │ │ │ │ ├── SimStates │ │ │ │ │ └── EAX_HeliState.hpp │ │ │ │ ├── SndBase.cpp │ │ │ │ ├── SndBase.hpp │ │ │ │ ├── SndCamera.cpp │ │ │ │ ├── SndCamera.hpp │ │ │ │ ├── SoundCollision.cpp │ │ │ │ ├── SoundCollision.hpp │ │ │ │ ├── SoundConn.cpp │ │ │ │ ├── SoundConn.h │ │ │ │ ├── States │ │ │ │ │ ├── Managers │ │ │ │ │ │ ├── STATEMGR_AICar.cpp │ │ │ │ │ │ ├── STATEMGR_Base.cpp │ │ │ │ │ │ ├── STATEMGR_Base.hpp │ │ │ │ │ │ ├── STATEMGR_CarState.cpp │ │ │ │ │ │ ├── STATEMGR_CarState.hpp │ │ │ │ │ │ ├── STATEMGR_Collision.cpp │ │ │ │ │ │ ├── STATEMGR_CopCar.cpp │ │ │ │ │ │ ├── STATEMGR_CopCar.hpp │ │ │ │ │ │ ├── STATEMGR_DriveBy.cpp │ │ │ │ │ │ ├── STATEMGR_DriveBy.hpp │ │ │ │ │ │ ├── STATEMGR_Enviro.cpp │ │ │ │ │ │ ├── STATEMGR_Enviro.hpp │ │ │ │ │ │ ├── STATEMGR_Helicopter.cpp │ │ │ │ │ │ ├── STATEMGR_Main.cpp │ │ │ │ │ │ ├── STATEMGR_Music.cpp │ │ │ │ │ │ ├── STATEMGR_PlayerCar.cpp │ │ │ │ │ │ ├── STATEMGR_PlayerCar.hpp │ │ │ │ │ │ ├── STATEMGR_TrafficCar.cpp │ │ │ │ │ │ └── STATEMGR_Truck.cpp │ │ │ │ │ ├── Registration.cpp │ │ │ │ │ ├── STATE_Base.cpp │ │ │ │ │ ├── STATE_Base.hpp │ │ │ │ │ ├── STATE_Collision.cpp │ │ │ │ │ ├── STATE_Collision.hpp │ │ │ │ │ ├── STATE_DriveBy.cpp │ │ │ │ │ ├── STATE_DriveBy.hpp │ │ │ │ │ ├── STATE_Helicopter.cpp │ │ │ │ │ ├── STATE_Helicopter.hpp │ │ │ │ │ ├── STATE_Main.cpp │ │ │ │ │ ├── STATE_Main.hpp │ │ │ │ │ ├── STATE_Music.cpp │ │ │ │ │ └── STATE_Music.hpp │ │ │ │ ├── Stream │ │ │ │ │ ├── EAXS_StreamChannel.cpp │ │ │ │ │ ├── EAXS_StreamChannel.h │ │ │ │ │ ├── EAXS_StreamManager.cpp │ │ │ │ │ ├── GameSpeech.cpp │ │ │ │ │ ├── GameSpeech.hpp │ │ │ │ │ ├── NISSFXModule.cpp │ │ │ │ │ ├── NISSFXModule.hpp │ │ │ │ │ ├── SndStrmWrapper.cpp │ │ │ │ │ ├── SndStrmWrapper.hpp │ │ │ │ │ ├── SpeechManager.cpp │ │ │ │ │ ├── SpeechManager.hpp │ │ │ │ │ ├── SpeechModule.cpp │ │ │ │ │ └── SpeechModule.hpp │ │ │ │ ├── UG │ │ │ │ │ ├── NFSUG_CarsSFXLoadData.cpp │ │ │ │ │ └── SndDataParams.hpp │ │ │ │ ├── dynamic_mixer │ │ │ │ │ ├── NFSLiveLink.cpp │ │ │ │ │ ├── NFSMixMap.cpp │ │ │ │ │ ├── NFSMixMap.hpp │ │ │ │ │ ├── NFSMixMapState.cpp │ │ │ │ │ ├── NFSMixMapState.hpp │ │ │ │ │ ├── NFSMixMaster.cpp │ │ │ │ │ ├── NFSMixMaster.hpp │ │ │ │ │ └── NFSMixShape.cpp │ │ │ │ ├── realstream │ │ │ │ │ ├── include │ │ │ │ │ │ └── big │ │ │ │ │ │ │ └── endian.h │ │ │ │ │ └── src │ │ │ │ │ │ └── stream.cpp │ │ │ │ ├── sfxctl │ │ │ │ │ ├── SFXCTL.cpp │ │ │ │ │ ├── SFXCTL.hpp │ │ │ │ │ ├── SFXCTL_3DCarPos.cpp │ │ │ │ │ ├── SFXCTL_3DCarPos.hpp │ │ │ │ │ ├── SFXCTL_3DObjPos.cpp │ │ │ │ │ ├── SFXCTL_3DObjPos.hpp │ │ │ │ │ ├── SFXCTL_AccelTrans.cpp │ │ │ │ │ ├── SFXCTL_AccelTrans.hpp │ │ │ │ │ ├── SFXCTL_Collision.cpp │ │ │ │ │ ├── SFXCTL_Collision.hpp │ │ │ │ │ ├── SFXCTL_Engine.cpp │ │ │ │ │ ├── SFXCTL_Engine.hpp │ │ │ │ │ ├── SFXCTL_Helicopter.cpp │ │ │ │ │ ├── SFXCTL_HybridMotor.cpp │ │ │ │ │ ├── SFXCTL_HybridMotor.hpp │ │ │ │ │ ├── SFXCTL_MasterVol.cpp │ │ │ │ │ ├── SFXCTL_NISReving.cpp │ │ │ │ │ ├── SFXCTL_NISReving.hpp │ │ │ │ │ ├── SFXCTL_Pathfinder5.cpp │ │ │ │ │ ├── SFXCTL_Pathfinder5.hpp │ │ │ │ │ ├── SFXCTL_Physics.cpp │ │ │ │ │ ├── SFXCTL_Physics.hpp │ │ │ │ │ ├── SFXCTL_Shifting.cpp │ │ │ │ │ ├── SFXCTL_Shifting.hpp │ │ │ │ │ ├── SFXCTL_Tunnel.cpp │ │ │ │ │ ├── SFXCTL_Tunnel.hpp │ │ │ │ │ ├── SFXCTL_Wheel.cpp │ │ │ │ │ ├── SFXCTL_Wheel.hpp │ │ │ │ │ ├── sfxctl_helicopter.hpp │ │ │ │ │ └── sfxctl_mastervol.hpp │ │ │ │ └── snd_gen │ │ │ │ │ ├── COP_SIREN_AEMS.cpp │ │ │ │ │ ├── COP_SIREN_AEMS.h │ │ │ │ │ ├── ENGINES_AEMS2.cpp │ │ │ │ │ ├── ENGINES_AEMS2.h │ │ │ │ │ ├── ENVIRO_AEMS.cpp │ │ │ │ │ ├── ENVIRO_AEMS.h │ │ │ │ │ ├── FE_AEMS.cpp │ │ │ │ │ ├── FE_AEMS.h │ │ │ │ │ ├── MAIN_AEMS.cpp │ │ │ │ │ ├── MAIN_AEMS.h │ │ │ │ │ ├── NISAudio.cpp │ │ │ │ │ ├── NISAudio.hpp │ │ │ │ │ ├── STITCH_AEMS.cpp │ │ │ │ │ ├── STITCH_AEMS.h │ │ │ │ │ ├── TURBO.cpp │ │ │ │ │ ├── TURBO.h │ │ │ │ │ ├── copspeech.cpp │ │ │ │ │ └── copspeech.hpp │ │ │ ├── Ecstasy │ │ │ │ ├── DefragFixer.cpp │ │ │ │ ├── DefragFixer.hpp │ │ │ │ ├── Ecstasy.cpp │ │ │ │ ├── Ecstasy.hpp │ │ │ │ ├── EcstasyData.hpp │ │ │ │ ├── EcstasyE.hpp │ │ │ │ ├── EcstasyEx.hpp │ │ │ │ ├── EmitterSystem.cpp │ │ │ │ ├── EmitterSystem.h │ │ │ │ ├── Texture.cpp │ │ │ │ ├── Texture.hpp │ │ │ │ ├── eEnvMap.hpp │ │ │ │ ├── eEnvMapE.hpp │ │ │ │ ├── eLight.cpp │ │ │ │ ├── eLight.hpp │ │ │ │ ├── eMath.hpp │ │ │ │ ├── eModel.cpp │ │ │ │ ├── eModel.hpp │ │ │ │ ├── eSolid.cpp │ │ │ │ ├── eSolid.hpp │ │ │ │ ├── eSprites.hpp │ │ │ │ ├── eStreamingPack.cpp │ │ │ │ ├── eStreamingPack.hpp │ │ │ │ └── eView.cpp │ │ │ ├── FEng │ │ │ │ ├── FEAnimImage.h │ │ │ │ ├── FEButtonMap.cpp │ │ │ │ ├── FEButtonMap.h │ │ │ │ ├── FEChunk.h │ │ │ │ ├── FECodeListBox.cpp │ │ │ │ ├── FECodeListBox.h │ │ │ │ ├── FEColoredImage.h │ │ │ │ ├── FEEvent.cpp │ │ │ │ ├── FEEvent.h │ │ │ │ ├── FEGameInterface.h │ │ │ │ ├── FEGenericVal.h │ │ │ │ ├── FEGroup.cpp │ │ │ │ ├── FEGroup.h │ │ │ │ ├── FEJoyPad.cpp │ │ │ │ ├── FEJoyPad.h │ │ │ │ ├── FEKeyInterp.cpp │ │ │ │ ├── FEKeyInterpLinear.cpp │ │ │ │ ├── FEKeyInterpNone.cpp │ │ │ │ ├── FEKeyTrack.cpp │ │ │ │ ├── FEKeyTrack.h │ │ │ │ ├── FELibraryRef.h │ │ │ │ ├── FEList.cpp │ │ │ │ ├── FEList.h │ │ │ │ ├── FEListBox.cpp │ │ │ │ ├── FEListBox.h │ │ │ │ ├── FELocalizer.cpp │ │ │ │ ├── FELocalizer.h │ │ │ │ ├── FEMath.cpp │ │ │ │ ├── FEMath.h │ │ │ │ ├── FEMemStream.cpp │ │ │ │ ├── FEMemStream.h │ │ │ │ ├── FEMessageResponse.cpp │ │ │ │ ├── FEMessageResponse.h │ │ │ │ ├── FEModel.h │ │ │ │ ├── FEMouse.cpp │ │ │ │ ├── FEMouse.h │ │ │ │ ├── FEMovie.h │ │ │ │ ├── FEMsgTargetList.cpp │ │ │ │ ├── FEMsgTargetList.h │ │ │ │ ├── FEMultiImage.cpp │ │ │ │ ├── FEMultiImage.h │ │ │ │ ├── FEObject.cpp │ │ │ │ ├── FEObject.h │ │ │ │ ├── FEObjectCallback.h │ │ │ │ ├── FEObjectSorter.h │ │ │ │ ├── FEPackage.cpp │ │ │ │ ├── FEPackage.h │ │ │ │ ├── FEPackageFile.h │ │ │ │ ├── FEPackageList.cpp │ │ │ │ ├── FEPackageList.h │ │ │ │ ├── FEPackageReader.cpp │ │ │ │ ├── FEPackageReader.h │ │ │ │ ├── FERefList.cpp │ │ │ │ ├── FERefList.h │ │ │ │ ├── FEScript.cpp │ │ │ │ ├── FEScript.h │ │ │ │ ├── FESimpleImage.h │ │ │ │ ├── FESlotPool.cpp │ │ │ │ ├── FESlotPool.h │ │ │ │ ├── FEString.cpp │ │ │ │ ├── FEString.h │ │ │ │ ├── FETypeLib.cpp │ │ │ │ ├── FETypeLib.h │ │ │ │ ├── FETypeNode.cpp │ │ │ │ ├── FETypeNode.h │ │ │ │ ├── FETypes.cpp │ │ │ │ ├── FETypes.h │ │ │ │ ├── FEWideString.cpp │ │ │ │ ├── FEWideString.h │ │ │ │ ├── FEngStandard.cpp │ │ │ │ ├── FEngStandard.h │ │ │ │ ├── FEngine.cpp │ │ │ │ ├── ObjectPool.h │ │ │ │ ├── feimage.h │ │ │ │ └── fengine.h │ │ │ ├── Frontend │ │ │ │ ├── Careers │ │ │ │ │ ├── UnlockSystem.cpp │ │ │ │ │ └── UnlockSystem.hpp │ │ │ │ ├── Database │ │ │ │ │ ├── FEDatabase.cpp │ │ │ │ │ ├── FEDatabase.hpp │ │ │ │ │ ├── RaceDB.cpp │ │ │ │ │ ├── RaceDB.hpp │ │ │ │ │ ├── VehicleDB.cpp │ │ │ │ │ ├── VehicleDB.hpp │ │ │ │ │ └── uiProfileManager.cpp │ │ │ │ ├── FECarLoader.cpp │ │ │ │ ├── FECarLoader.hpp │ │ │ │ ├── FECarViewer.cpp │ │ │ │ ├── FEJoyInput.cpp │ │ │ │ ├── FEJoyInput.hpp │ │ │ │ ├── FEManager.cpp │ │ │ │ ├── FEManager.hpp │ │ │ │ ├── FEObjectCallbacks.cpp │ │ │ │ ├── FEObjectCallbacks.hpp │ │ │ │ ├── FEPackageData.cpp │ │ │ │ ├── FEPackageData.hpp │ │ │ │ ├── FEPackageManager.cpp │ │ │ │ ├── FEPackageManager.hpp │ │ │ │ ├── FERenderObject.cpp │ │ │ │ ├── FERenderObject.hpp │ │ │ │ ├── FEngFont.cpp │ │ │ │ ├── FEngFont.hpp │ │ │ │ ├── FEngFrontend.cpp │ │ │ │ ├── FEngInterfaces │ │ │ │ │ ├── FEGameInterface.cpp │ │ │ │ │ ├── FEngInterface.cpp │ │ │ │ │ ├── FEngInterface.hpp │ │ │ │ │ ├── FEngInterfaceFEButtons.cpp │ │ │ │ │ ├── FEngInterfaceFEButtons.hpp │ │ │ │ │ ├── FEngInterfaceFEImages.cpp │ │ │ │ │ ├── FEngInterfaceFEImages.hpp │ │ │ │ │ ├── FEngInterfaceFEMovies.cpp │ │ │ │ │ ├── FEngInterfaceFEMovies.hpp │ │ │ │ │ ├── FEngInterfaceFEObjects.cpp │ │ │ │ │ ├── FEngInterfaceFEObjects.hpp │ │ │ │ │ └── FEngInterfaceFEStrings.cpp │ │ │ │ ├── FEngRender.cpp │ │ │ │ ├── FEngRender.hpp │ │ │ │ ├── HUD │ │ │ │ │ ├── FEPkg_Hud.cpp │ │ │ │ │ ├── FEPkg_Hud.hpp │ │ │ │ │ ├── FESpeedBreakerMeter.cpp │ │ │ │ │ ├── FETachometerDrag.cpp │ │ │ │ │ ├── FeBustedMeter.cpp │ │ │ │ │ ├── FeBustedMeter.hpp │ │ │ │ │ ├── FeCostToState.cpp │ │ │ │ │ ├── FeCostToState.hpp │ │ │ │ │ ├── FeCountdown.cpp │ │ │ │ │ ├── FeCountdown.hpp │ │ │ │ │ ├── FeEngineTempGauge.cpp │ │ │ │ │ ├── FeEngineTempGauge.hpp │ │ │ │ │ ├── FeGenericMessage.cpp │ │ │ │ │ ├── FeGenericMessage.hpp │ │ │ │ │ ├── FeGetawayMeter.cpp │ │ │ │ │ ├── FeGetawayMeter.hpp │ │ │ │ │ ├── FeHeatMeter.cpp │ │ │ │ │ ├── FeHeatMeter.hpp │ │ │ │ │ ├── FeHudElement.cpp │ │ │ │ │ ├── FeHudElement.hpp │ │ │ │ │ ├── FeInfractions.cpp │ │ │ │ │ ├── FeInfractions.hpp │ │ │ │ │ ├── FeLeaderBoard.cpp │ │ │ │ │ ├── FeLeaderBoard.hpp │ │ │ │ │ ├── FeMenuZoneTrigger.cpp │ │ │ │ │ ├── FeMenuZoneTrigger.hpp │ │ │ │ │ ├── FeMilestoneBoard.cpp │ │ │ │ │ ├── FeMilestoneBoard.hpp │ │ │ │ │ ├── FeMinimap.cpp │ │ │ │ │ ├── FeMinimapStreamer.cpp │ │ │ │ │ ├── FeMinimapStreamer.hpp │ │ │ │ │ ├── FeNitrousGauge.cpp │ │ │ │ │ ├── FeNitrousGauge.hpp │ │ │ │ │ ├── FeOnlineHudSupport.cpp │ │ │ │ │ ├── FePursuitBoard.cpp │ │ │ │ │ ├── FePursuitBoard.hpp │ │ │ │ │ ├── FeQueuedMessageSwapper.cpp │ │ │ │ │ ├── FeRaceInformation.cpp │ │ │ │ │ ├── FeRaceInformation.hpp │ │ │ │ │ ├── FeRaceOverMessage.cpp │ │ │ │ │ ├── FeRaceOverMessage.hpp │ │ │ │ │ ├── FeRadarDetector.cpp │ │ │ │ │ ├── FeRadarDetector.hpp │ │ │ │ │ ├── FeReputation.cpp │ │ │ │ │ ├── FeReputation.hpp │ │ │ │ │ ├── FeShiftUpdater.cpp │ │ │ │ │ ├── FeShiftUpdater.hpp │ │ │ │ │ ├── FeSpeedBreakerMeter.hpp │ │ │ │ │ ├── FeSpeedometer.cpp │ │ │ │ │ ├── FeSpeedometer.hpp │ │ │ │ │ ├── FeTachometer.cpp │ │ │ │ │ ├── FeTachometer.hpp │ │ │ │ │ ├── FeTachometerDrag.hpp │ │ │ │ │ ├── FeTimeExtension.cpp │ │ │ │ │ ├── FeTimeExtension.hpp │ │ │ │ │ ├── FeTurboMeter.cpp │ │ │ │ │ ├── FeTurboMeter.hpp │ │ │ │ │ ├── FeWrongWIndi.cpp │ │ │ │ │ ├── FeWrongWIndi.hpp │ │ │ │ │ └── feMinimap.hpp │ │ │ │ ├── Localization │ │ │ │ │ ├── Localize.cpp │ │ │ │ │ ├── Localize.hpp │ │ │ │ │ └── WideCharHistogram.cpp │ │ │ │ ├── MemoryCard │ │ │ │ │ ├── MemoryCard.cpp │ │ │ │ │ ├── MemoryCard.hpp │ │ │ │ │ ├── MemoryCardCallbacks.cpp │ │ │ │ │ ├── MemoryCardHelper.hpp │ │ │ │ │ └── MemoryCardImp.hpp │ │ │ │ ├── MenuScreens │ │ │ │ │ ├── Career │ │ │ │ │ │ ├── FEGameWonScreen.cpp │ │ │ │ │ │ └── FEPkg_EngageEventDialog.cpp │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── FEAnyMovieScreen.cpp │ │ │ │ │ │ ├── FEAnyTutorialScreen.cpp │ │ │ │ │ │ ├── FEIconScrollerMenu.hpp │ │ │ │ │ │ ├── FEMenuScreen.cpp │ │ │ │ │ │ ├── FEMenuScreen.hpp │ │ │ │ │ │ ├── Slider.cpp │ │ │ │ │ │ ├── Slider.hpp │ │ │ │ │ │ ├── UIDateMenu.hpp │ │ │ │ │ │ ├── feArrayScrollerMenu.cpp │ │ │ │ │ │ ├── feArrayScrollerMenu.hpp │ │ │ │ │ │ ├── feDialogBox.cpp │ │ │ │ │ │ ├── feIconScrollerMenu.cpp │ │ │ │ │ │ ├── feKeyboardInput.cpp │ │ │ │ │ │ ├── feKeyboardInput.hpp │ │ │ │ │ │ ├── feScrollerina.cpp │ │ │ │ │ │ ├── feScrollerina.hpp │ │ │ │ │ │ ├── feUIWidgetMenu.cpp │ │ │ │ │ │ ├── feUIWidgetMenu.hpp │ │ │ │ │ │ ├── feWidget.cpp │ │ │ │ │ │ ├── feWidget.hpp │ │ │ │ │ │ └── uiDateMenu.cpp │ │ │ │ │ ├── ControllerUnplugged.cpp │ │ │ │ │ ├── InGame │ │ │ │ │ │ ├── CustomTuning.cpp │ │ │ │ │ │ ├── CustomTuning.hpp │ │ │ │ │ │ ├── FEPKg_PostRace.cpp │ │ │ │ │ │ ├── FEPkg_Chyron.cpp │ │ │ │ │ │ ├── FEPkg_ConfirmDialog.cpp │ │ │ │ │ │ ├── FEPkg_MU_Keyboard.hpp │ │ │ │ │ │ ├── FEPkg_OKDialog.cpp │ │ │ │ │ │ ├── FEPkg_PostRace.hpp │ │ │ │ │ │ ├── FEpkg_MU_Keyboard.cpp │ │ │ │ │ │ ├── FeBustedOverlay.cpp │ │ │ │ │ │ ├── FeBustedOverlay.hpp │ │ │ │ │ │ ├── FeFadeScreen.cpp │ │ │ │ │ │ ├── InGameMovieScreen.cpp │ │ │ │ │ │ ├── InGameTutorialScreen.cpp │ │ │ │ │ │ ├── PhotoFinish.cpp │ │ │ │ │ │ ├── PhotoFinish.hpp │ │ │ │ │ │ ├── uiPause.cpp │ │ │ │ │ │ ├── uiPause.hpp │ │ │ │ │ │ ├── uiSMS.cpp │ │ │ │ │ │ ├── uiSMS.hpp │ │ │ │ │ │ ├── uiSMSMessage.cpp │ │ │ │ │ │ ├── uiSixDaysLater.cpp │ │ │ │ │ │ ├── uiSixDaysLater.hpp │ │ │ │ │ │ ├── uiWorldMap.cpp │ │ │ │ │ │ └── uiWorldMap.hpp │ │ │ │ │ ├── Loading │ │ │ │ │ │ ├── FEBootFlowManager.cpp │ │ │ │ │ │ ├── FEBootFlowManager.hpp │ │ │ │ │ │ ├── FELanguageSelect.cpp │ │ │ │ │ │ ├── FELanguageSelect.hpp │ │ │ │ │ │ ├── FELoadingControllerScreen.cpp │ │ │ │ │ │ ├── FELoadingControllerScreen.hpp │ │ │ │ │ │ ├── FELoadingScreen.cpp │ │ │ │ │ │ ├── FELoadingScreen.hpp │ │ │ │ │ │ ├── FELoadingTips.cpp │ │ │ │ │ │ ├── FELoadingTips.hpp │ │ │ │ │ │ ├── FEMovieScreen.cpp │ │ │ │ │ │ ├── FEMovieScreen.hpp │ │ │ │ │ │ ├── FESplashScreen.cpp │ │ │ │ │ │ └── FESplashScreen.hpp │ │ │ │ │ ├── MemCard │ │ │ │ │ │ ├── uiMemcard.cpp │ │ │ │ │ │ ├── uiMemcard.hpp │ │ │ │ │ │ ├── uiMemcardBase.cpp │ │ │ │ │ │ ├── uiMemcardBase.hpp │ │ │ │ │ │ ├── uiMemcardInterface.cpp │ │ │ │ │ │ └── uiMemcardInterface.hpp │ │ │ │ │ └── Safehouse │ │ │ │ │ │ ├── FEPkg_GarageMain.cpp │ │ │ │ │ │ ├── FEPkg_GarageMain.hpp │ │ │ │ │ │ ├── career │ │ │ │ │ │ ├── uiCareerMain.cpp │ │ │ │ │ │ ├── uiCareerMain.hpp │ │ │ │ │ │ ├── uiCareerManager.cpp │ │ │ │ │ │ ├── uiCareerManager.hpp │ │ │ │ │ │ ├── uiInfractions.cpp │ │ │ │ │ │ ├── uiInfractions.hpp │ │ │ │ │ │ ├── uiMarkerSelect.cpp │ │ │ │ │ │ ├── uiMarkerSelect.hpp │ │ │ │ │ │ ├── uiRapSheetCTS.cpp │ │ │ │ │ │ ├── uiRapSheetCTS.hpp │ │ │ │ │ │ ├── uiRapSheetLogin.cpp │ │ │ │ │ │ ├── uiRapSheetLogin.hpp │ │ │ │ │ │ ├── uiRapSheetMain.cpp │ │ │ │ │ │ ├── uiRapSheetMain.hpp │ │ │ │ │ │ ├── uiRapSheetPD.cpp │ │ │ │ │ │ ├── uiRapSheetPD.hpp │ │ │ │ │ │ ├── uiRapSheetRS.cpp │ │ │ │ │ │ ├── uiRapSheetRS.hpp │ │ │ │ │ │ ├── uiRapSheetRankings.cpp │ │ │ │ │ │ ├── uiRapSheetRankings.hpp │ │ │ │ │ │ ├── uiRapSheetRankingsDetail.cpp │ │ │ │ │ │ ├── uiRapSheetRankingsDetail.hpp │ │ │ │ │ │ ├── uiRapSheetTEP.cpp │ │ │ │ │ │ ├── uiRapSheetTEP.hpp │ │ │ │ │ │ ├── uiRapSheetUS.cpp │ │ │ │ │ │ ├── uiRapSheetUS.hpp │ │ │ │ │ │ ├── uiRapSheetVD.cpp │ │ │ │ │ │ ├── uiRapSheetVD.hpp │ │ │ │ │ │ ├── uiRepSheetBounty.cpp │ │ │ │ │ │ ├── uiRepSheetBounty.hpp │ │ │ │ │ │ ├── uiRepSheetMain.cpp │ │ │ │ │ │ ├── uiRepSheetMain.hpp │ │ │ │ │ │ ├── uiRepSheetMilestones.cpp │ │ │ │ │ │ ├── uiRepSheetMilestones.hpp │ │ │ │ │ │ ├── uiRepSheetRaceEvents.cpp │ │ │ │ │ │ ├── uiRepSheetRaceEvents.hpp │ │ │ │ │ │ ├── uiRepSheetRival.cpp │ │ │ │ │ │ ├── uiRepSheetRival.hpp │ │ │ │ │ │ ├── uiRepSheetRivalBio.cpp │ │ │ │ │ │ ├── uiRepSheetRivalBio.hpp │ │ │ │ │ │ ├── uiRepSheetRivalFlow.cpp │ │ │ │ │ │ ├── uiRepSheetRivalFlow.hpp │ │ │ │ │ │ ├── uiRepSheetRivalStreamer.cpp │ │ │ │ │ │ ├── uiRepSheetRivalStreamer.hpp │ │ │ │ │ │ └── uiSafehouseRegionUnlock.cpp │ │ │ │ │ │ ├── customize │ │ │ │ │ │ ├── CarCustomize.cpp │ │ │ │ │ │ ├── CarCustomize.hpp │ │ │ │ │ │ ├── CustomizeManager.cpp │ │ │ │ │ │ ├── CustomizeManager.hpp │ │ │ │ │ │ ├── DebugCarCustomize.cpp │ │ │ │ │ │ ├── DebugCarCustomize.hpp │ │ │ │ │ │ ├── FECustomize.cpp │ │ │ │ │ │ ├── FECustomize.hpp │ │ │ │ │ │ ├── MyCarsManager.cpp │ │ │ │ │ │ └── MyCarsManager.hpp │ │ │ │ │ │ ├── options │ │ │ │ │ │ ├── uiCredits.cpp │ │ │ │ │ │ ├── uiCredits.hpp │ │ │ │ │ │ ├── uiEATraxJukebox.cpp │ │ │ │ │ │ ├── uiEATraxJukebox.hpp │ │ │ │ │ │ ├── uiOptionWidgets.cpp │ │ │ │ │ │ ├── uiOptionWidgets.hpp │ │ │ │ │ │ ├── uiOptionsController.cpp │ │ │ │ │ │ ├── uiOptionsMain.cpp │ │ │ │ │ │ ├── uiOptionsMain.hpp │ │ │ │ │ │ ├── uiOptionsScreen.cpp │ │ │ │ │ │ ├── uiOptionsTrailers.cpp │ │ │ │ │ │ └── uiOptionsTrailers.hpp │ │ │ │ │ │ ├── quickrace │ │ │ │ │ │ ├── uiQRBrief.cpp │ │ │ │ │ │ ├── uiQRBrief.hpp │ │ │ │ │ │ ├── uiQRCarSelect.cpp │ │ │ │ │ │ ├── uiQRCarSelect.hpp │ │ │ │ │ │ ├── uiQRChallengeSeries.cpp │ │ │ │ │ │ ├── uiQRChallengeSeries.hpp │ │ │ │ │ │ ├── uiQRMainMenu.cpp │ │ │ │ │ │ ├── uiQRMainMenu.hpp │ │ │ │ │ │ ├── uiQRModeSelect.cpp │ │ │ │ │ │ ├── uiQRModeSelect.hpp │ │ │ │ │ │ ├── uiQRPressStart.cpp │ │ │ │ │ │ ├── uiQRTrackOptions.cpp │ │ │ │ │ │ ├── uiQRTrackOptions.hpp │ │ │ │ │ │ ├── uiQRTrackSelect.cpp │ │ │ │ │ │ ├── uiQRTrackSelect.hpp │ │ │ │ │ │ ├── uiShowcase.cpp │ │ │ │ │ │ ├── uiTrackMapStreamer.cpp │ │ │ │ │ │ └── uiTrackMapStreamer.hpp │ │ │ │ │ │ ├── uiMain.cpp │ │ │ │ │ │ └── uiMain.hpp │ │ │ │ ├── MoviePlayer │ │ │ │ │ ├── MoviePlayer.cpp │ │ │ │ │ └── MoviePlayer.hpp │ │ │ │ ├── RaceStarter.cpp │ │ │ │ ├── SubTitle.cpp │ │ │ │ └── UnicodeFile.cpp │ │ │ ├── Gamemodes │ │ │ │ ├── EmotionManager.cpp │ │ │ │ └── EmotionManagerImpl.cpp │ │ │ ├── Gameplay │ │ │ │ ├── GActivity.cpp │ │ │ │ ├── GActivity.h │ │ │ │ ├── GCharacter.cpp │ │ │ │ ├── GCharacter.h │ │ │ │ ├── GHandler.cpp │ │ │ │ ├── GHandler.h │ │ │ │ ├── GIcon.cpp │ │ │ │ ├── GIcon.h │ │ │ │ ├── GInfractionManager.cpp │ │ │ │ ├── GInfractionManager.h │ │ │ │ ├── GManager.cpp │ │ │ │ ├── GManager.h │ │ │ │ ├── GMarker.cpp │ │ │ │ ├── GMarker.h │ │ │ │ ├── GMilestone.cpp │ │ │ │ ├── GMilestone.h │ │ │ │ ├── GObjectBlock.cpp │ │ │ │ ├── GRace.h │ │ │ │ ├── GRaceDatabase.cpp │ │ │ │ ├── GRaceDatabase.h │ │ │ │ ├── GRaceStatus.cpp │ │ │ │ ├── GRaceStatus.h │ │ │ │ ├── GReflected.h │ │ │ │ ├── GRuntimeInstance.cpp │ │ │ │ ├── GRuntimeInstance.h │ │ │ │ ├── GSpeedTrap.cpp │ │ │ │ ├── GSpeedTrap.h │ │ │ │ ├── GState.cpp │ │ │ │ ├── GState.h │ │ │ │ ├── GTimer.cpp │ │ │ │ ├── GTimer.h │ │ │ │ ├── GTrigger.cpp │ │ │ │ ├── GTrigger.h │ │ │ │ ├── GUtility.h │ │ │ │ └── GVault.cpp │ │ │ ├── Generated │ │ │ │ ├── AttribSys │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── aivehicle.h │ │ │ │ │ │ ├── brakes.h │ │ │ │ │ │ ├── camerainfo.h │ │ │ │ │ │ ├── chassis.h │ │ │ │ │ │ ├── collisionreactions.h │ │ │ │ │ │ ├── controller.h │ │ │ │ │ │ ├── damagespecs.h │ │ │ │ │ │ ├── ecar.h │ │ │ │ │ │ ├── emitterdata.h │ │ │ │ │ │ ├── emittergroup.h │ │ │ │ │ │ ├── engine.h │ │ │ │ │ │ ├── induction.h │ │ │ │ │ │ ├── light_flares_cg.h │ │ │ │ │ │ ├── nos.h │ │ │ │ │ │ ├── pvehicle.h │ │ │ │ │ │ ├── rigidbodyspecs.h │ │ │ │ │ │ ├── simsurface.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── tires.h │ │ │ │ │ │ ├── trafficpattern.h │ │ │ │ │ │ └── transmission.h │ │ │ │ │ ├── GenericAccessor.h │ │ │ │ │ └── codegen.cpp │ │ │ │ ├── Events │ │ │ │ │ ├── E911Call.cpp │ │ │ │ │ ├── E911Call.hpp │ │ │ │ │ ├── EAIEngineRev.cpp │ │ │ │ │ ├── EAIEngineRev.hpp │ │ │ │ │ ├── EAccelerate.cpp │ │ │ │ │ ├── EAccelerate.hpp │ │ │ │ │ ├── EAddSMS.cpp │ │ │ │ │ ├── EAddSMS.hpp │ │ │ │ │ ├── EAudioRigidBodyTest.cpp │ │ │ │ │ ├── EAudioRigidBodyTest.hpp │ │ │ │ │ ├── EAudioSmackableTest.cpp │ │ │ │ │ ├── EAudioSmackableTest.hpp │ │ │ │ │ ├── EAudioWorldTest.cpp │ │ │ │ │ ├── EAudioWorldTest.hpp │ │ │ │ │ ├── EAutoSave.cpp │ │ │ │ │ ├── EAutoSave.hpp │ │ │ │ │ ├── EAwardUpgrade.cpp │ │ │ │ │ ├── EAwardUpgrade.hpp │ │ │ │ │ ├── EBailPursuit.cpp │ │ │ │ │ ├── EBailPursuit.hpp │ │ │ │ │ ├── EBecomeAiCar.cpp │ │ │ │ │ ├── EBecomeAiCar.hpp │ │ │ │ │ ├── EBecomePlayerCar.cpp │ │ │ │ │ ├── EBecomePlayerCar.hpp │ │ │ │ │ ├── EBecomePursuitCar.cpp │ │ │ │ │ ├── EBecomePursuitCar.hpp │ │ │ │ │ ├── EBreakerStopCops.cpp │ │ │ │ │ ├── EBreakerStopCops.hpp │ │ │ │ │ ├── ECameraPhotoFinish.cpp │ │ │ │ │ ├── ECameraPhotoFinish.hpp │ │ │ │ │ ├── ECameraShake.cpp │ │ │ │ │ ├── ECameraShake.hpp │ │ │ │ │ ├── ECellCall.cpp │ │ │ │ │ ├── ECellCall.hpp │ │ │ │ │ ├── EChangeState.cpp │ │ │ │ │ ├── EChangeState.hpp │ │ │ │ │ ├── ECinematicMoment.cpp │ │ │ │ │ ├── ECinematicMoment.hpp │ │ │ │ │ ├── ECollision.cpp │ │ │ │ │ ├── ECollision.hpp │ │ │ │ │ ├── ECommitAudioAssets.cpp │ │ │ │ │ ├── ECommitAudioAssets.hpp │ │ │ │ │ ├── ECommitRenderAssets.cpp │ │ │ │ │ ├── ECommitRenderAssets.hpp │ │ │ │ │ ├── EDDaySpeech.cpp │ │ │ │ │ ├── EDDaySpeech.hpp │ │ │ │ │ ├── EDamageLights.cpp │ │ │ │ │ ├── EDamageLights.hpp │ │ │ │ │ ├── EDebugPrint.cpp │ │ │ │ │ ├── EDebugPrint.hpp │ │ │ │ │ ├── EDebugScreenMessage.cpp │ │ │ │ │ ├── EDebugScreenMessage.hpp │ │ │ │ │ ├── EDeliverMessage.cpp │ │ │ │ │ ├── EDeliverMessage.hpp │ │ │ │ │ ├── EDestroyVehicle.cpp │ │ │ │ │ ├── EDestroyVehicle.hpp │ │ │ │ │ ├── EDisablePursuitVehicle.cpp │ │ │ │ │ ├── EDisablePursuitVehicle.hpp │ │ │ │ │ ├── EDisableTrigger.cpp │ │ │ │ │ ├── EDisableTrigger.hpp │ │ │ │ │ ├── EDispIntroRace.cpp │ │ │ │ │ ├── EDispIntroRace.hpp │ │ │ │ │ ├── EDynamicRegion.cpp │ │ │ │ │ ├── EDynamicRegion.hpp │ │ │ │ │ ├── EEnableAIPhysics.cpp │ │ │ │ │ ├── EEnableAIPhysics.hpp │ │ │ │ │ ├── EEnableCollisionElement.cpp │ │ │ │ │ ├── EEnableCollisionElement.hpp │ │ │ │ │ ├── EEnableModeling.cpp │ │ │ │ │ ├── EEnableModeling.hpp │ │ │ │ │ ├── EEnableTrigger.cpp │ │ │ │ │ ├── EEnableTrigger.hpp │ │ │ │ │ ├── EEndCarStop.cpp │ │ │ │ │ ├── EEndCarStop.hpp │ │ │ │ │ ├── EEngineBlown.cpp │ │ │ │ │ ├── EEngineBlown.hpp │ │ │ │ │ ├── EEnterBin.cpp │ │ │ │ │ ├── EEnterBin.hpp │ │ │ │ │ ├── EEnterEngagableTrigger.cpp │ │ │ │ │ ├── EEnterEngagableTrigger.hpp │ │ │ │ │ ├── EExitEngagableTrigger.cpp │ │ │ │ │ ├── EExitEngagableTrigger.hpp │ │ │ │ │ ├── EFadeScreenNoLoadingBarOff.cpp │ │ │ │ │ ├── EFadeScreenNoLoadingBarOff.hpp │ │ │ │ │ ├── EFadeScreenNoLoadingBarOn.cpp │ │ │ │ │ ├── EFadeScreenNoLoadingBarOn.hpp │ │ │ │ │ ├── EFadeScreenOff.cpp │ │ │ │ │ ├── EFadeScreenOff.hpp │ │ │ │ │ ├── EFadeScreenOn.cpp │ │ │ │ │ ├── EFadeScreenOn.hpp │ │ │ │ │ ├── EFireEventList.cpp │ │ │ │ │ ├── EFireEventList.hpp │ │ │ │ │ ├── EFireRandomTrigger.cpp │ │ │ │ │ ├── EFireRandomTrigger.hpp │ │ │ │ │ ├── EFireTriggerSpeedCondition.cpp │ │ │ │ │ ├── EFireTriggerSpeedCondition.hpp │ │ │ │ │ ├── EForceCarStop.cpp │ │ │ │ │ ├── EForceCarStop.hpp │ │ │ │ │ ├── EGPSFinished.cpp │ │ │ │ │ ├── EGPSFinished.hpp │ │ │ │ │ ├── EGPSLost.cpp │ │ │ │ │ ├── EGPSLost.hpp │ │ │ │ │ ├── EGTriggerInternal.cpp │ │ │ │ │ ├── EGTriggerInternal.hpp │ │ │ │ │ ├── EHideObject.cpp │ │ │ │ │ ├── EHideObject.hpp │ │ │ │ │ ├── EHidePart.cpp │ │ │ │ │ ├── EHidePart.hpp │ │ │ │ │ ├── EHideRaceOverMessage.cpp │ │ │ │ │ ├── EHideRaceOverMessage.hpp │ │ │ │ │ ├── EJointDetached.cpp │ │ │ │ │ ├── EJointDetached.hpp │ │ │ │ │ ├── EJumpToStrategyFlow.cpp │ │ │ │ │ ├── EJumpToStrategyFlow.hpp │ │ │ │ │ ├── EKillJoint.cpp │ │ │ │ │ ├── EKillJoint.hpp │ │ │ │ │ ├── EKillObject.cpp │ │ │ │ │ ├── EKillObject.hpp │ │ │ │ │ ├── EKnockoutRacer.cpp │ │ │ │ │ ├── EKnockoutRacer.hpp │ │ │ │ │ ├── ELoadLost.cpp │ │ │ │ │ ├── ELoadLost.hpp │ │ │ │ │ ├── ELoadingScreenOff.cpp │ │ │ │ │ ├── ELoadingScreenOff.hpp │ │ │ │ │ ├── ELoadingScreenOn.cpp │ │ │ │ │ ├── ELoadingScreenOn.hpp │ │ │ │ │ ├── EMissShift.cpp │ │ │ │ │ ├── EMissShift.hpp │ │ │ │ │ ├── EMomentStrm.cpp │ │ │ │ │ ├── EMomentStrm.hpp │ │ │ │ │ ├── ENISAeroDynamics.cpp │ │ │ │ │ ├── ENISAeroDynamics.hpp │ │ │ │ │ ├── ENISBrakelock.cpp │ │ │ │ │ ├── ENISBrakelock.hpp │ │ │ │ │ ├── ENISBurnout.cpp │ │ │ │ │ ├── ENISBurnout.hpp │ │ │ │ │ ├── ENISCarDamageReset.cpp │ │ │ │ │ ├── ENISCarDamageReset.hpp │ │ │ │ │ ├── ENISCarPitch.cpp │ │ │ │ │ ├── ENISCarPitch.hpp │ │ │ │ │ ├── ENISCarRoll.cpp │ │ │ │ │ ├── ENISCarRoll.hpp │ │ │ │ │ ├── ENISCarShake.cpp │ │ │ │ │ ├── ENISCarShake.hpp │ │ │ │ │ ├── ENISConstraint.cpp │ │ │ │ │ ├── ENISConstraint.hpp │ │ │ │ │ ├── ENISCopCarDoors.cpp │ │ │ │ │ ├── ENISCopCarDoors.hpp │ │ │ │ │ ├── ENISCopLights.cpp │ │ │ │ │ ├── ENISCopLights.hpp │ │ │ │ │ ├── ENISDetach.cpp │ │ │ │ │ ├── ENISDetach.hpp │ │ │ │ │ ├── ENISDetail.cpp │ │ │ │ │ ├── ENISDetail.hpp │ │ │ │ │ ├── ENISFakeFar.cpp │ │ │ │ │ ├── ENISFakeFar.hpp │ │ │ │ │ ├── ENISFreeze.cpp │ │ │ │ │ ├── ENISFreeze.hpp │ │ │ │ │ ├── ENISHideCharacter.cpp │ │ │ │ │ ├── ENISHideCharacter.hpp │ │ │ │ │ ├── ENISLights.cpp │ │ │ │ │ ├── ENISLights.hpp │ │ │ │ │ ├── ENISMotionBlur.cpp │ │ │ │ │ ├── ENISMotionBlur.hpp │ │ │ │ │ ├── ENISNeutralRev.cpp │ │ │ │ │ ├── ENISNeutralRev.hpp │ │ │ │ │ ├── ENISNitro.cpp │ │ │ │ │ ├── ENISNitro.hpp │ │ │ │ │ ├── ENISNukeSmack.cpp │ │ │ │ │ ├── ENISNukeSmack.hpp │ │ │ │ │ ├── ENISOverlayMessage.cpp │ │ │ │ │ ├── ENISOverlayMessage.hpp │ │ │ │ │ ├── ENISPixelate.cpp │ │ │ │ │ ├── ENISPixelate.hpp │ │ │ │ │ ├── ENISPlayEffect.cpp │ │ │ │ │ ├── ENISPlayEffect.hpp │ │ │ │ │ ├── ENISRain.cpp │ │ │ │ │ ├── ENISRain.hpp │ │ │ │ │ ├── ENISReattach.cpp │ │ │ │ │ ├── ENISReattach.hpp │ │ │ │ │ ├── ENISRoadNoise.cpp │ │ │ │ │ ├── ENISRoadNoise.hpp │ │ │ │ │ ├── ENISScreenFlash.cpp │ │ │ │ │ ├── ENISScreenFlash.hpp │ │ │ │ │ ├── ENISSteering.cpp │ │ │ │ │ ├── ENISSteering.hpp │ │ │ │ │ ├── ENISStopEffects.cpp │ │ │ │ │ ├── ENISStopEffects.hpp │ │ │ │ │ ├── ENISTimeOfDay.cpp │ │ │ │ │ ├── ENISTimeOfDay.hpp │ │ │ │ │ ├── ENISVisualLook.cpp │ │ │ │ │ ├── ENISVisualLook.hpp │ │ │ │ │ ├── ENISWolrdGeometry.cpp │ │ │ │ │ ├── ENISWolrdGeometry.hpp │ │ │ │ │ ├── ENISWorldAnimTrigger.cpp │ │ │ │ │ ├── ENISWorldAnimTrigger.hpp │ │ │ │ │ ├── EPause.cpp │ │ │ │ │ ├── EPause.hpp │ │ │ │ │ ├── EPerfectLaunch.cpp │ │ │ │ │ ├── EPerfectLaunch.hpp │ │ │ │ │ ├── EPerfectShift.cpp │ │ │ │ │ ├── EPerfectShift.hpp │ │ │ │ │ ├── EPlayEndNIS.cpp │ │ │ │ │ ├── EPlayEndNIS.hpp │ │ │ │ │ ├── EPlayObjectEffect.cpp │ │ │ │ │ ├── EPlayObjectEffect.hpp │ │ │ │ │ ├── EPlayRaceMovie.cpp │ │ │ │ │ ├── EPlayRaceMovie.hpp │ │ │ │ │ ├── EPlayRaceNIS.cpp │ │ │ │ │ ├── EPlayRaceNIS.hpp │ │ │ │ │ ├── EPlayerAirborne.cpp │ │ │ │ │ ├── EPlayerAirborne.hpp │ │ │ │ │ ├── EPlayerShift.cpp │ │ │ │ │ ├── EPlayerShift.hpp │ │ │ │ │ ├── EPlayerTriggeredNOS.cpp │ │ │ │ │ ├── EPlayerTriggeredNOS.hpp │ │ │ │ │ ├── EProcessAreaStimulus.cpp │ │ │ │ │ ├── EProcessAreaStimulus.hpp │ │ │ │ │ ├── EProcessStimulus.cpp │ │ │ │ │ ├── EProcessStimulus.hpp │ │ │ │ │ ├── EPursuitBreaker.cpp │ │ │ │ │ ├── EPursuitBreaker.hpp │ │ │ │ │ ├── EQuitDemo.cpp │ │ │ │ │ ├── EQuitDemo.hpp │ │ │ │ │ ├── EQuitToFE.cpp │ │ │ │ │ ├── EQuitToFE.hpp │ │ │ │ │ ├── ERaceSheetOff.cpp │ │ │ │ │ ├── ERaceSheetOff.hpp │ │ │ │ │ ├── ERaceSheetOn.cpp │ │ │ │ │ ├── ERaceSheetOn.hpp │ │ │ │ │ ├── ERandomEventList.cpp │ │ │ │ │ ├── ERandomEventList.hpp │ │ │ │ │ ├── ERandomExplosion.cpp │ │ │ │ │ ├── ERandomExplosion.hpp │ │ │ │ │ ├── EReloadGame.cpp │ │ │ │ │ ├── EReloadGame.hpp │ │ │ │ │ ├── EReloadHud.cpp │ │ │ │ │ ├── EReloadHud.hpp │ │ │ │ │ ├── EReportInfraction.cpp │ │ │ │ │ ├── EReportInfraction.hpp │ │ │ │ │ ├── EReportMilestoneAtStake.cpp │ │ │ │ │ ├── EReportMilestoneAtStake.hpp │ │ │ │ │ ├── ERequestEventInfoDialog.cpp │ │ │ │ │ ├── ERequestEventInfoDialog.hpp │ │ │ │ │ ├── EResetPlayerCar.cpp │ │ │ │ │ ├── EResetPlayerCar.hpp │ │ │ │ │ ├── EResetProps.cpp │ │ │ │ │ ├── EResetProps.hpp │ │ │ │ │ ├── EResetSequencer.cpp │ │ │ │ │ ├── EResetSequencer.hpp │ │ │ │ │ ├── EResetSystem.cpp │ │ │ │ │ ├── EResetSystem.hpp │ │ │ │ │ ├── ERestartRace.cpp │ │ │ │ │ ├── ERestartRace.hpp │ │ │ │ │ ├── EScheduleEvent.cpp │ │ │ │ │ ├── EScheduleEvent.hpp │ │ │ │ │ ├── EScheduleEventUpdate.cpp │ │ │ │ │ ├── EScheduleEventUpdate.hpp │ │ │ │ │ ├── ESetCopAutoSpawnMode.cpp │ │ │ │ │ ├── ESetCopAutoSpawnMode.hpp │ │ │ │ │ ├── ESetPlayerCarReset.cpp │ │ │ │ │ ├── ESetPlayerCarReset.hpp │ │ │ │ │ ├── ESetPlayerCollisionCache.cpp │ │ │ │ │ ├── ESetPlayerCollisionCache.hpp │ │ │ │ │ ├── ESetSimRate.cpp │ │ │ │ │ ├── ESetSimRate.hpp │ │ │ │ │ ├── EShockObject.cpp │ │ │ │ │ ├── EShockObject.hpp │ │ │ │ │ ├── EShowMarketingScreen.cpp │ │ │ │ │ ├── EShowMarketingScreen.hpp │ │ │ │ │ ├── EShowMessageScreen.cpp │ │ │ │ │ ├── EShowMessageScreen.hpp │ │ │ │ │ ├── EShowMilestones.cpp │ │ │ │ │ ├── EShowMilestones.hpp │ │ │ │ │ ├── EShowRaceCountdown.cpp │ │ │ │ │ ├── EShowRaceCountdown.hpp │ │ │ │ │ ├── EShowRaceOverMessage.cpp │ │ │ │ │ ├── EShowRaceOverMessage.hpp │ │ │ │ │ ├── EShowResults.cpp │ │ │ │ │ ├── EShowResults.hpp │ │ │ │ │ ├── EShowSMS.cpp │ │ │ │ │ ├── EShowSMS.hpp │ │ │ │ │ ├── EShowTimeExtension.cpp │ │ │ │ │ ├── EShowTimeExtension.hpp │ │ │ │ │ ├── ESimulate.cpp │ │ │ │ │ ├── ESimulate.hpp │ │ │ │ │ ├── ESndGameState.cpp │ │ │ │ │ ├── ESndGameState.hpp │ │ │ │ │ ├── ESpawnExplosion.cpp │ │ │ │ │ ├── ESpawnExplosion.hpp │ │ │ │ │ ├── ESpawnFragment.cpp │ │ │ │ │ ├── ESpawnFragment.hpp │ │ │ │ │ ├── ESpawnSmackable.cpp │ │ │ │ │ ├── ESpawnSmackable.hpp │ │ │ │ │ ├── EStopObjectEffect.cpp │ │ │ │ │ ├── EStopObjectEffect.hpp │ │ │ │ │ ├── EStopObjectEffects.cpp │ │ │ │ │ ├── EStopObjectEffects.hpp │ │ │ │ │ ├── ETerminateMusic.cpp │ │ │ │ │ ├── ETerminateMusic.hpp │ │ │ │ │ ├── ETips.cpp │ │ │ │ │ ├── ETips.hpp │ │ │ │ │ ├── ETireBlown.cpp │ │ │ │ │ ├── ETireBlown.hpp │ │ │ │ │ ├── ETirePunctured.cpp │ │ │ │ │ ├── ETirePunctured.hpp │ │ │ │ │ ├── ETriggerMomentNIS.cpp │ │ │ │ │ ├── ETriggerMomentNIS.hpp │ │ │ │ │ ├── ETuneVehicle.cpp │ │ │ │ │ ├── ETuneVehicle.hpp │ │ │ │ │ ├── EUnPause.cpp │ │ │ │ │ ├── EUnPause.hpp │ │ │ │ │ ├── EVehicleDestroyed.cpp │ │ │ │ │ ├── EVehicleDestroyed.hpp │ │ │ │ │ ├── EVehicleReset.cpp │ │ │ │ │ ├── EVehicleReset.hpp │ │ │ │ │ ├── EWakeObject.cpp │ │ │ │ │ ├── EWakeObject.hpp │ │ │ │ │ ├── EWorldMapOff.cpp │ │ │ │ │ ├── EWorldMapOff.hpp │ │ │ │ │ ├── EWorldMapOn.cpp │ │ │ │ │ ├── EWorldMapOn.hpp │ │ │ │ │ └── EventDefs.cpp │ │ │ │ ├── Messages │ │ │ │ │ ├── MAIEngineRev.h │ │ │ │ │ ├── MAcceptEnterCareerEvent.h │ │ │ │ │ ├── MAudioReflection.h │ │ │ │ │ ├── MBreakerStopCops.h │ │ │ │ │ ├── MControlPathfinder.h │ │ │ │ │ ├── MCountdownDone.h │ │ │ │ │ ├── MDeclineEnterCareerEvent.h │ │ │ │ │ ├── MEnterFreeRoam.h │ │ │ │ │ ├── MEnterPostRaceFlow.h │ │ │ │ │ ├── MEnterRaceOverFlow.h │ │ │ │ │ ├── MEnterSafeHouse.h │ │ │ │ │ ├── MEnteringGameplay.h │ │ │ │ │ ├── MFlowReadyForOutro.h │ │ │ │ │ ├── MForcePursuitStart.h │ │ │ │ │ ├── MGamePlayMoment.h │ │ │ │ │ ├── MICECameraFinished.h │ │ │ │ │ ├── MJackKnife.h │ │ │ │ │ ├── MJumpCut.h │ │ │ │ │ ├── MLoadingComplete.h │ │ │ │ │ ├── MMiscSound.h │ │ │ │ │ ├── MNISComplete.h │ │ │ │ │ ├── MNotifyCellCallComplete.h │ │ │ │ │ ├── MNotifyCellCallStarted.h │ │ │ │ │ ├── MNotifyChallengePassed.h │ │ │ │ │ ├── MNotifyEngineBlown.h │ │ │ │ │ ├── MNotifyFinished.h │ │ │ │ │ ├── MNotifyKnockedOut.h │ │ │ │ │ ├── MNotifyMessageDone.h │ │ │ │ │ ├── MNotifyMilestoneProgress.h │ │ │ │ │ ├── MNotifyMilestoneReached.h │ │ │ │ │ ├── MNotifyMovieFinished.h │ │ │ │ │ ├── MNotifyMusicFlow.h │ │ │ │ │ ├── MNotifyOnlineRaceOver.h │ │ │ │ │ ├── MNotifyPlayerRep.h │ │ │ │ │ ├── MNotifyPursuitLength.h │ │ │ │ │ ├── MNotifyRaceAbandoned.h │ │ │ │ │ ├── MNotifyRacePlacement.h │ │ │ │ │ ├── MNotifyRaceTime.h │ │ │ │ │ ├── MNotifyRaceTimeExpired.h │ │ │ │ │ ├── MNotifyRaceTimeSecTick.h │ │ │ │ │ ├── MNotifySimTick.h │ │ │ │ │ ├── MNotifySpeechStatus.h │ │ │ │ │ ├── MNotifySpeedTrap.h │ │ │ │ │ ├── MNotifyTimer.h │ │ │ │ │ ├── MNotifyVehicleDestroyed.h │ │ │ │ │ ├── MPerpBusted.h │ │ │ │ │ ├── MPerpEscaped.h │ │ │ │ │ ├── MPlayerEnterPursuit.h │ │ │ │ │ ├── MPursuitBreaker.h │ │ │ │ │ ├── MPursuitOver.h │ │ │ │ │ ├── MQuitToFrontEnd.h │ │ │ │ │ ├── MReqBackup.h │ │ │ │ │ ├── MReqRoadBlock.h │ │ │ │ │ ├── MRestartRace.h │ │ │ │ │ ├── MSetCopAutoSpawnMode.h │ │ │ │ │ ├── MSetCopsEnabled.h │ │ │ │ │ ├── MSetTrafficSpeed.h │ │ │ │ │ ├── MSpawnCop.h │ │ │ │ │ ├── MSpawnTraffic.h │ │ │ │ │ ├── MStateEnter.h │ │ │ │ │ ├── MStateExit.h │ │ │ │ │ ├── MTriggerEnter.h │ │ │ │ │ ├── MTriggerExit.h │ │ │ │ │ ├── MTriggerInside.h │ │ │ │ │ └── MUnspawnCop.h │ │ │ │ ├── QueryDefs.cpp │ │ │ │ └── TexturePacks │ │ │ │ │ └── TexEnumGen_ParticleTextures.cpp │ │ │ ├── Input │ │ │ │ ├── ActionData.h │ │ │ │ ├── ActionQueue.h │ │ │ │ ├── ActionRef.h │ │ │ │ ├── Common │ │ │ │ │ ├── FFBTypes.h │ │ │ │ │ ├── InputDefParser.cpp │ │ │ │ │ ├── InputDevice.cpp │ │ │ │ │ ├── SteeringWheelDevice.cpp │ │ │ │ │ ├── action.cpp │ │ │ │ │ ├── actionqueue.cpp │ │ │ │ │ ├── debuginput.cpp │ │ │ │ │ └── iomodule.cpp │ │ │ │ ├── GC │ │ │ │ │ └── InputDeviceGC.cpp │ │ │ │ ├── IFeedBack.h │ │ │ │ ├── ISteeringWheel.h │ │ │ │ ├── InputDefParser.h │ │ │ │ ├── InputDevice.h │ │ │ │ ├── SteeringWheelDevice.h │ │ │ │ └── iomodule.h │ │ │ ├── Interfaces │ │ │ │ ├── IAttachable.h │ │ │ │ ├── IAttributeable.h │ │ │ │ ├── IBody.h │ │ │ │ ├── IFengHud.h │ │ │ │ ├── IListener.h │ │ │ │ ├── IServiceable.h │ │ │ │ ├── ITaskable.h │ │ │ │ ├── SimActivities │ │ │ │ │ ├── IActivity.h │ │ │ │ │ ├── ICopMgr.h │ │ │ │ │ ├── IGameState.h │ │ │ │ │ ├── INIS.h │ │ │ │ │ ├── ITrafficCenter.h │ │ │ │ │ ├── ITrafficMgr.h │ │ │ │ │ └── IVehicleCache.h │ │ │ │ ├── SimEntities │ │ │ │ │ ├── IEntity.h │ │ │ │ │ ├── IOnlinePlayer.h │ │ │ │ │ └── IPlayer.h │ │ │ │ ├── SimModels │ │ │ │ │ ├── IModel.h │ │ │ │ │ ├── IPlaceableScenery.h │ │ │ │ │ ├── ISceneryModel.h │ │ │ │ │ └── ITriggerableModel.h │ │ │ │ └── Simables │ │ │ │ │ ├── IAI.h │ │ │ │ │ ├── IArticulatedVehicle.h │ │ │ │ │ ├── IAudible.h │ │ │ │ │ ├── ICarAudio.h │ │ │ │ │ ├── ICause.h │ │ │ │ │ ├── ICheater.h │ │ │ │ │ ├── ICollisionBody.h │ │ │ │ │ ├── IDamageable.h │ │ │ │ │ ├── IDisposable.h │ │ │ │ │ ├── IEffects.h │ │ │ │ │ ├── IEngine.h │ │ │ │ │ ├── IEngineDamage.h │ │ │ │ │ ├── IExplodeable.h │ │ │ │ │ ├── IExplosion.h │ │ │ │ │ ├── IHelicopter.h │ │ │ │ │ ├── IINput.h │ │ │ │ │ ├── IInductable.h │ │ │ │ │ ├── INISCarControl.h │ │ │ │ │ ├── IRBVehicle.h │ │ │ │ │ ├── IRenderable.h │ │ │ │ │ ├── IResetable.h │ │ │ │ │ ├── IRigidBody.h │ │ │ │ │ ├── ISimable.h │ │ │ │ │ ├── ISimpleBody.h │ │ │ │ │ ├── ISpikeable.h │ │ │ │ │ ├── ISuspension.h │ │ │ │ │ ├── ITiptronic.h │ │ │ │ │ ├── ITransmission.h │ │ │ │ │ └── IVehicle.h │ │ │ ├── Lua │ │ │ │ ├── LuaAttributes.cpp │ │ │ │ ├── LuaAttributes.h │ │ │ │ ├── LuaBindery.cpp │ │ │ │ ├── LuaBindery.h │ │ │ │ ├── LuaGameHooks.cpp │ │ │ │ ├── LuaPostOffice.cpp │ │ │ │ ├── LuaPostOffice.h │ │ │ │ ├── LuaRuntime.cpp │ │ │ │ ├── LuaRuntime.h │ │ │ │ └── source │ │ │ │ │ ├── lapi.c │ │ │ │ │ ├── lapi.h │ │ │ │ │ ├── lauxlib.h │ │ │ │ │ ├── lcode.c │ │ │ │ │ ├── lcode.h │ │ │ │ │ ├── ldebug.c │ │ │ │ │ ├── ldebug.h │ │ │ │ │ ├── ldo.c │ │ │ │ │ ├── ldo.h │ │ │ │ │ ├── ldump.c │ │ │ │ │ ├── lfunc.c │ │ │ │ │ ├── lfunc.h │ │ │ │ │ ├── lgc.c │ │ │ │ │ ├── lgc.h │ │ │ │ │ ├── lib │ │ │ │ │ └── lauxlib.c │ │ │ │ │ ├── llex.c │ │ │ │ │ ├── llex.h │ │ │ │ │ ├── llimits.h │ │ │ │ │ ├── lmem.c │ │ │ │ │ ├── lmem.h │ │ │ │ │ ├── lobject.c │ │ │ │ │ ├── lobject.h │ │ │ │ │ ├── lopcodes.c │ │ │ │ │ ├── lopcodes.h │ │ │ │ │ ├── lparser.c │ │ │ │ │ ├── lparser.h │ │ │ │ │ ├── lstate.c │ │ │ │ │ ├── lstate.h │ │ │ │ │ ├── lstring.c │ │ │ │ │ ├── lstring.h │ │ │ │ │ ├── ltable.c │ │ │ │ │ ├── ltable.h │ │ │ │ │ ├── ltests.c │ │ │ │ │ ├── ltm.c │ │ │ │ │ ├── ltm.h │ │ │ │ │ ├── lua.h │ │ │ │ │ ├── lualib.h │ │ │ │ │ ├── lundump.c │ │ │ │ │ ├── lundump.h │ │ │ │ │ ├── lvm.c │ │ │ │ │ ├── lvm.h │ │ │ │ │ ├── lzio.c │ │ │ │ │ └── lzio.h │ │ │ ├── Main │ │ │ │ ├── AEClient.h │ │ │ │ ├── AttribSupport.h │ │ │ │ ├── Common │ │ │ │ │ ├── Event.cpp │ │ │ │ │ ├── EventSequencer.cpp │ │ │ │ │ └── Scheduler.cpp │ │ │ │ ├── Event.h │ │ │ │ ├── EventDynamicData.h │ │ │ │ ├── EventSequencer.h │ │ │ │ ├── GC │ │ │ │ │ └── VirtualMemory.cpp │ │ │ │ ├── Scheduler.h │ │ │ │ ├── ScratchPtr.h │ │ │ │ └── stubs.h │ │ │ ├── Math │ │ │ │ ├── Common │ │ │ │ │ └── SimRandom.cpp │ │ │ │ └── SimRandom.h │ │ │ ├── Misc │ │ │ │ ├── AttribAlloc.cpp │ │ │ │ ├── AttribAlloc.h │ │ │ │ ├── AttribAsset.cpp │ │ │ │ ├── AttribAsset.h │ │ │ │ ├── AttribVaultPack.h │ │ │ │ ├── Base64.cpp │ │ │ │ ├── BuildRegion.cpp │ │ │ │ ├── BuildRegion.hpp │ │ │ │ ├── Config.cpp │ │ │ │ ├── Config.h │ │ │ │ ├── CookieTrail.h │ │ │ │ ├── DemoDisc.cpp │ │ │ │ ├── DemoDisc.hpp │ │ │ │ ├── EasterEggs.cpp │ │ │ │ ├── EasterEggs.hpp │ │ │ │ ├── GameFlow.cpp │ │ │ │ ├── GameFlow.hpp │ │ │ │ ├── HandyBreakpoint.cpp │ │ │ │ ├── Hermes.cpp │ │ │ │ ├── Hermes.h │ │ │ │ ├── ISOCodes.cpp │ │ │ │ ├── Joylog.cpp │ │ │ │ ├── Joylog.hpp │ │ │ │ ├── LZCompress.cpp │ │ │ │ ├── LZCompress.hpp │ │ │ │ ├── MD5.cpp │ │ │ │ ├── MD5.hpp │ │ │ │ ├── MWAttribUserTypes.h │ │ │ │ ├── Main.cpp │ │ │ │ ├── MissionEdit.cpp │ │ │ │ ├── PackedDecimal.h │ │ │ │ ├── Platform.h │ │ │ │ ├── Point.cpp │ │ │ │ ├── Point.hpp │ │ │ │ ├── Profiler.cpp │ │ │ │ ├── Profiler.hpp │ │ │ │ ├── QueuedFile.cpp │ │ │ │ ├── QueuedFile.hpp │ │ │ │ ├── QuickSpline.cpp │ │ │ │ ├── QuickSpline.hpp │ │ │ │ ├── REAL_Stubs.cpp │ │ │ │ ├── Replay.hpp │ │ │ │ ├── ResourceLoader.cpp │ │ │ │ ├── ResourceLoader.hpp │ │ │ │ ├── Rumble.cpp │ │ │ │ ├── Rumble.hpp │ │ │ │ ├── Speed.hpp │ │ │ │ ├── SpeedChunks.cpp │ │ │ │ ├── Spline.cpp │ │ │ │ ├── Spline.hpp │ │ │ │ ├── Stomper.cpp │ │ │ │ ├── Table.cpp │ │ │ │ ├── Table.hpp │ │ │ │ ├── TestHooks │ │ │ │ │ └── tecommon.cpp │ │ │ │ ├── Timer.cpp │ │ │ │ ├── Timer.hpp │ │ │ │ ├── VersionNumber.cpp │ │ │ │ ├── VolumeTree.cpp │ │ │ │ ├── attribuserinclude.h │ │ │ │ ├── bFile.cpp │ │ │ │ ├── bFile.hpp │ │ │ │ ├── bMemoryOverloads.cpp │ │ │ │ ├── bRepeat.cpp │ │ │ │ └── bRepeat.hpp │ │ │ ├── Physics │ │ │ │ ├── Behavior.h │ │ │ │ ├── Behaviors │ │ │ │ │ ├── BehaviorSpecs.cpp │ │ │ │ │ ├── Chassis.cpp │ │ │ │ │ ├── Chassis.h │ │ │ │ │ ├── DamageCopCar.cpp │ │ │ │ │ ├── DamageCopCar.h │ │ │ │ │ ├── DamageDragster.cpp │ │ │ │ │ ├── DamageDragster.h │ │ │ │ │ ├── DamageHeli.cpp │ │ │ │ │ ├── DamageHeli.h │ │ │ │ │ ├── DamageRacer.cpp │ │ │ │ │ ├── DamageRacer.h │ │ │ │ │ ├── DamageVehicle.cpp │ │ │ │ │ ├── DamageVehicle.h │ │ │ │ │ ├── DrawCar.cpp │ │ │ │ │ ├── DrawHeli.cpp │ │ │ │ │ ├── DrawVehicle.cpp │ │ │ │ │ ├── DrawVehicle.h │ │ │ │ │ ├── Effects.cpp │ │ │ │ │ ├── Effects.h │ │ │ │ │ ├── EngineRacer.cpp │ │ │ │ │ ├── EngineSpline.cpp │ │ │ │ │ ├── EngineTraffic.cpp │ │ │ │ │ ├── PInput.cpp │ │ │ │ │ ├── PInput.h │ │ │ │ │ ├── RBCop.cpp │ │ │ │ │ ├── RBCop.h │ │ │ │ │ ├── RBTractor.cpp │ │ │ │ │ ├── RBTractor.h │ │ │ │ │ ├── RBVehicle.cpp │ │ │ │ │ ├── RBVehicle.h │ │ │ │ │ ├── ResetCar.cpp │ │ │ │ │ ├── RigidBody.cpp │ │ │ │ │ ├── RigidBody.h │ │ │ │ │ ├── SimpleChopper.cpp │ │ │ │ │ ├── SimpleRigidBody.cpp │ │ │ │ │ ├── SimpleRigidBody.h │ │ │ │ │ ├── SoundCar.cpp │ │ │ │ │ ├── SoundHeli.cpp │ │ │ │ │ ├── SpikeStrip.cpp │ │ │ │ │ ├── SuspensionRacer.cpp │ │ │ │ │ ├── SuspensionSimple.cpp │ │ │ │ │ ├── SuspensionSpline.cpp │ │ │ │ │ ├── SuspensionTraffic.cpp │ │ │ │ │ └── SuspensionTrailer.cpp │ │ │ │ ├── Bounds.h │ │ │ │ ├── Carbasics.hpp │ │ │ │ ├── Common │ │ │ │ │ ├── Behavior.cpp │ │ │ │ │ ├── Bounds.cpp │ │ │ │ │ ├── Explosion.cpp │ │ │ │ │ ├── PVehicle.cpp │ │ │ │ │ ├── PhysicsObject.cpp │ │ │ │ │ ├── Smackable.cpp │ │ │ │ │ ├── SmokeableInfo.cpp │ │ │ │ │ ├── VehicleBehaviors.cpp │ │ │ │ │ ├── VehicleSystem.cpp │ │ │ │ │ ├── VehicleSystem.h │ │ │ │ │ └── Wheel.cpp │ │ │ │ ├── Dynamics.h │ │ │ │ ├── Dynamics │ │ │ │ │ ├── Articulation.cpp │ │ │ │ │ ├── Collision.cpp │ │ │ │ │ ├── Collision.h │ │ │ │ │ ├── Geometry.cpp │ │ │ │ │ ├── Inertia.h │ │ │ │ │ └── aero.h │ │ │ │ ├── Explosion.h │ │ │ │ ├── PVehicle.h │ │ │ │ ├── PhysicsInfo.cpp │ │ │ │ ├── PhysicsInfo.hpp │ │ │ │ ├── PhysicsObject.h │ │ │ │ ├── PhysicsTunings.cpp │ │ │ │ ├── PhysicsTunings.h │ │ │ │ ├── PhysicsTypes.h │ │ │ │ ├── PhysicsUpgrades.cpp │ │ │ │ ├── PhysicsUpgrades.hpp │ │ │ │ ├── Smackable.h │ │ │ │ ├── SmackableTrigger.cpp │ │ │ │ ├── SmackableTrigger.h │ │ │ │ ├── SmokeableInfo.hpp │ │ │ │ ├── VehicleBehaviors.h │ │ │ │ ├── Wheel.cpp │ │ │ │ └── Wheel.h │ │ │ ├── Render │ │ │ │ ├── Common │ │ │ │ │ ├── ColourConversion.cpp │ │ │ │ │ ├── RRandom.cpp │ │ │ │ │ ├── RRandom.h │ │ │ │ │ └── RenderConn.cpp │ │ │ │ └── RenderConn.h │ │ │ ├── Sim │ │ │ │ ├── Activities │ │ │ │ │ ├── CareerGame.cpp │ │ │ │ │ ├── GameplayActivity.cpp │ │ │ │ │ ├── NISActivity.cpp │ │ │ │ │ ├── QuickGame.cpp │ │ │ │ │ └── QuickGame.h │ │ │ │ ├── Collision.h │ │ │ │ ├── Common │ │ │ │ │ ├── OBB.cpp │ │ │ │ │ ├── SimActivity.cpp │ │ │ │ │ ├── SimEffect.cpp │ │ │ │ │ ├── SimEntity.cpp │ │ │ │ │ ├── SimModel.cpp │ │ │ │ │ ├── SimObject.cpp │ │ │ │ │ ├── SimServer.cpp │ │ │ │ │ ├── SimSurface.cpp │ │ │ │ │ ├── SimTypes.cpp │ │ │ │ │ ├── Simulation.cpp │ │ │ │ │ └── Util.cpp │ │ │ │ ├── Entities │ │ │ │ │ ├── LocalPlayer.cpp │ │ │ │ │ └── LocalPlayer.hpp │ │ │ │ ├── OBB.h │ │ │ │ ├── SimActivity.h │ │ │ │ ├── SimAttachable.h │ │ │ │ ├── SimConn.h │ │ │ │ ├── SimEffect.h │ │ │ │ ├── SimEntity.h │ │ │ │ ├── SimModel.h │ │ │ │ ├── SimObject.h │ │ │ │ ├── SimProfile.h │ │ │ │ ├── SimServer.H │ │ │ │ ├── SimSubSystem.h │ │ │ │ ├── SimSurface.h │ │ │ │ ├── SimTypes.h │ │ │ │ ├── Simulation.h │ │ │ │ └── UTil.h │ │ │ ├── Speech │ │ │ │ ├── EAXAirSupport.cpp │ │ │ │ ├── EAXCharacter.cpp │ │ │ │ ├── EAXCharacter.h │ │ │ │ ├── EAXCop.cpp │ │ │ │ ├── EAXDispatch.cpp │ │ │ │ ├── MiscSpeech.cpp │ │ │ │ ├── MusicFlow.cpp │ │ │ │ ├── Observer.cpp │ │ │ │ ├── Observer.h │ │ │ │ ├── PursuitFlow.cpp │ │ │ │ ├── PursuitFlow.h │ │ │ │ ├── RoadblockFlow.cpp │ │ │ │ ├── RoadblockFlow.h │ │ │ │ ├── SoundAI.cpp │ │ │ │ ├── SoundAI.h │ │ │ │ ├── SpeechCache.cpp │ │ │ │ ├── SpeechCache.h │ │ │ │ ├── SpeechFlow.cpp │ │ │ │ ├── SpeechFlow.h │ │ │ │ └── StrategyFlow.cpp │ │ │ └── World │ │ │ │ ├── Car.hpp │ │ │ │ ├── CarInfo.cpp │ │ │ │ ├── CarInfo.hpp │ │ │ │ ├── CarLoader.cpp │ │ │ │ ├── CarLoader.hpp │ │ │ │ ├── CarPartNames.cpp │ │ │ │ ├── CarRender.cpp │ │ │ │ ├── CarRender.hpp │ │ │ │ ├── CarRenderConn.cpp │ │ │ │ ├── CarRenderConn.h │ │ │ │ ├── CarSkin.cpp │ │ │ │ ├── Clans.cpp │ │ │ │ ├── Clans.hpp │ │ │ │ ├── Common │ │ │ │ ├── WCollider.cpp │ │ │ │ ├── WCollision.cpp │ │ │ │ ├── WCollisionAssets.cpp │ │ │ │ ├── WCollisionMgr.cpp │ │ │ │ ├── WCollisionPack.cpp │ │ │ │ ├── WCollisionTri.cpp │ │ │ │ ├── WGrid.cpp │ │ │ │ ├── WGrid.h │ │ │ │ ├── WGridManagedDynamicElem.cpp │ │ │ │ ├── WGridNode.cpp │ │ │ │ ├── WGridNode.h │ │ │ │ ├── WPathFinder.cpp │ │ │ │ ├── WRoadNetwork.cpp │ │ │ │ ├── WSimpleZone.cpp │ │ │ │ ├── WTrigger.cpp │ │ │ │ ├── WWorld.cpp │ │ │ │ ├── WWorldMath.cpp │ │ │ │ └── WWorldPos.cpp │ │ │ │ ├── DamageZones.cpp │ │ │ │ ├── DamageZones.h │ │ │ │ ├── DebugVehicleSelection.cpp │ │ │ │ ├── DebugVehicleSelection.h │ │ │ │ ├── DebugWorld.cpp │ │ │ │ ├── DebugWorld.h │ │ │ │ ├── EventManager.cpp │ │ │ │ ├── EventManager.hpp │ │ │ │ ├── FacePixelate.cpp │ │ │ │ ├── FacePixelate.hpp │ │ │ │ ├── HeliRenderConn.cpp │ │ │ │ ├── HeliRenderConn.h │ │ │ │ ├── HeliSheet.cpp │ │ │ │ ├── HeliSheet.hpp │ │ │ │ ├── Interfaces │ │ │ │ └── IVehicleDamageBehaviour.h │ │ │ │ ├── NeuQuant.cpp │ │ │ │ ├── OnlineManager.hpp │ │ │ │ ├── ParameterMaps.cpp │ │ │ │ ├── ParameterMaps.hpp │ │ │ │ ├── Player.cpp │ │ │ │ ├── Player.hpp │ │ │ │ ├── RaceParameters.cpp │ │ │ │ ├── RaceParameters.hpp │ │ │ │ ├── Rain.hpp │ │ │ │ ├── Scenery.cpp │ │ │ │ ├── Scenery.hpp │ │ │ │ ├── ScreenEffects.cpp │ │ │ │ ├── ScreenEffects.hpp │ │ │ │ ├── SimpleModelAnim.cpp │ │ │ │ ├── SimpleModelAnim.hpp │ │ │ │ ├── Skids.cpp │ │ │ │ ├── Skids.hpp │ │ │ │ ├── SkyRender.cpp │ │ │ │ ├── SmackableRender.cpp │ │ │ │ ├── SmackableRender.hpp │ │ │ │ ├── SpaceNode.cpp │ │ │ │ ├── SpaceNode.hpp │ │ │ │ ├── Sun.cpp │ │ │ │ ├── Sun.hpp │ │ │ │ ├── TimeOfDay.cpp │ │ │ │ ├── Track.cpp │ │ │ │ ├── Track.hpp │ │ │ │ ├── TrackInfo.cpp │ │ │ │ ├── TrackInfo.hpp │ │ │ │ ├── TrackPath.cpp │ │ │ │ ├── TrackPath.hpp │ │ │ │ ├── TrackPositionMarker.cpp │ │ │ │ ├── TrackStreamer.cpp │ │ │ │ ├── TrackStreamer.hpp │ │ │ │ ├── VehicleFX.cpp │ │ │ │ ├── VehicleFragmentConn.cpp │ │ │ │ ├── VehicleFragmentConn.h │ │ │ │ ├── VehiclePartDamage.cpp │ │ │ │ ├── VehiclePartDamage.h │ │ │ │ ├── VehicleRenderConn.cpp │ │ │ │ ├── VehicleRenderConn.h │ │ │ │ ├── VisibleSection.cpp │ │ │ │ ├── VisibleSection.hpp │ │ │ │ ├── VisualTreatment.cpp │ │ │ │ ├── VisualTreatment.h │ │ │ │ ├── WCollider.h │ │ │ │ ├── WCollision.h │ │ │ │ ├── WCollisionAssets.h │ │ │ │ ├── WCollisionMgr.h │ │ │ │ ├── WCollisionPack.h │ │ │ │ ├── WCollisionSTL.h │ │ │ │ ├── WCollisionTri.h │ │ │ │ ├── WGridManagedDynamicElem.h │ │ │ │ ├── WRoadElem.h │ │ │ │ ├── WRoadNetwork.h │ │ │ │ ├── WRoadNetwork.hpp │ │ │ │ ├── WSimpleZone.h │ │ │ │ ├── WSurfaceTypes.h │ │ │ │ ├── WTrigger.h │ │ │ │ ├── WTriggerList.h │ │ │ │ ├── WWorld.h │ │ │ │ ├── WWorldMath.h │ │ │ │ ├── WWorldPos.h │ │ │ │ ├── WeatherMan.cpp │ │ │ │ ├── WeatherMan.hpp │ │ │ │ ├── World.cpp │ │ │ │ ├── World.hpp │ │ │ │ ├── WorldConn.cpp │ │ │ │ ├── WorldConn.h │ │ │ │ ├── WorldModel.cpp │ │ │ │ ├── WorldModel.hpp │ │ │ │ ├── WorldTypes.h │ │ │ │ └── rain.cpp │ │ ├── Tools │ │ │ ├── AttribSys │ │ │ │ └── Runtime │ │ │ │ │ ├── AttribHash.h │ │ │ │ │ ├── AttribLoadAndGo.h │ │ │ │ │ ├── AttribSys.h │ │ │ │ │ ├── Common │ │ │ │ │ ├── AttribClass.cpp │ │ │ │ │ ├── AttribCollection.cpp │ │ │ │ │ ├── AttribDatabase.cpp │ │ │ │ │ ├── AttribHash32.cpp │ │ │ │ │ ├── AttribHashMap.h │ │ │ │ │ ├── AttribInstance.cpp │ │ │ │ │ ├── AttribLiveLink.cpp │ │ │ │ │ ├── AttribLoadAndGo.cpp │ │ │ │ │ ├── AttribPrivate.h │ │ │ │ │ ├── AttribSupport.cpp │ │ │ │ │ └── Attribute.cpp │ │ │ │ │ └── VecHashMap64.h │ │ │ └── Inc │ │ │ │ └── ConversionUtil.hpp │ │ └── bWare │ │ │ ├── Inc │ │ │ ├── SpeedScript.hpp │ │ │ ├── Strings.hpp │ │ │ ├── bChunk.hpp │ │ │ ├── bDebug.hpp │ │ │ ├── bFunk.hpp │ │ │ ├── bList.hpp │ │ │ ├── bMath.hpp │ │ │ ├── bMemory.hpp │ │ │ ├── bPrintf.hpp │ │ │ ├── bSlotPool.hpp │ │ │ └── bWare.hpp │ │ │ └── Src │ │ │ ├── SpeedScript.cpp │ │ │ ├── Strings.cpp │ │ │ ├── bChunk.cpp │ │ │ ├── bCrc32.cpp │ │ │ ├── bDebug.cpp │ │ │ ├── bFunkPlat.cpp │ │ │ ├── bList.cpp │ │ │ ├── bMath.cpp │ │ │ ├── bMatrix.cpp │ │ │ ├── bMemCpy.cpp │ │ │ ├── bMemory.cpp │ │ │ ├── bPrintf.cpp │ │ │ ├── bQuaternion.cpp │ │ │ ├── bSlotPool.cpp │ │ │ └── bVector.cpp │ ├── PSX2 │ │ └── Src │ │ │ ├── AcidFXE.cpp │ │ │ ├── DemoDisc_PS2.cpp │ │ │ ├── DmaDump.cpp │ │ │ ├── Ecstasy │ │ │ ├── EcstasyE.cpp │ │ │ ├── EcstasyE.hpp │ │ │ ├── TextureInfoPlat.cpp │ │ │ ├── XSprites.hpp │ │ │ ├── eEnvEffectsE.cpp │ │ │ ├── eEnvMapE.cpp │ │ │ ├── eLightE.cpp │ │ │ ├── eLightPlat.hpp │ │ │ ├── eMathE.cpp │ │ │ ├── eSolidPlat.cpp │ │ │ ├── eSprites.cpp │ │ │ ├── eStripDataE.cpp │ │ │ ├── eViewPlat.cpp │ │ │ ├── eViewPlat.hpp │ │ │ ├── eVisualTreatment.cpp │ │ │ └── xSprites.cpp │ │ │ ├── MOVIE_PS2.cpp │ │ │ ├── MemoryCard │ │ │ └── MemoryCardImp.cpp │ │ │ ├── Online │ │ │ ├── PS2Isp.cpp │ │ │ └── PlatformNetworkCore.cpp │ │ │ ├── Platform.cpp │ │ │ ├── RebootIOP.cpp │ │ │ ├── SunE.cpp │ │ │ └── xSparks.cpp │ └── Xenon │ │ └── Src │ │ └── Ecstasy │ │ ├── TextureInfoPlat.hpp │ │ └── eViewPlat.hpp ├── snd │ └── source │ │ └── library │ │ ├── cmn │ │ ├── SNDI_findprime.c │ │ ├── SNDI_root1x.c │ │ ├── salloc.c │ │ ├── sballoc.c │ │ ├── sbpatinf.c │ │ ├── sbvalid.c │ │ ├── sdata.c │ │ ├── sgetpvol.c │ │ ├── smemman.c │ │ ├── sndcmn.h │ │ ├── spat2hdr.c │ │ ├── spatkey.c │ │ ├── sserver.c │ │ ├── sst.c │ │ ├── sstgetpv.c │ │ └── stimerem.c │ │ └── gc │ │ ├── snddrv.c │ │ └── sndgc.h └── types.h ├── symbols ├── Classes │ ├── acceltrans.h │ ├── aud_moment_strm.h │ ├── aud_stitch_loop.h │ ├── audioimpact.h │ ├── audioscrape.h │ ├── audiosystem.h │ ├── chopperspecs.h │ ├── effects.h │ ├── emitteruv.h │ ├── engine.h │ ├── engineaudio.h │ ├── explosion.h │ ├── fecooling.h │ ├── frontend.h │ ├── fuelcell_effect.h │ ├── fuelcell_emitter.h │ ├── gameplay.h │ ├── infractions.h │ ├── junkman.h │ ├── lightmaterials.h │ ├── lightshaders.h │ ├── milestonetypes.h │ ├── music.h │ ├── ocean.h │ ├── presetride.h │ ├── pursuitescalation.h │ ├── pursuitlevels.h │ ├── pursuitsupport.h │ ├── shiftpattern.h │ ├── smackable.h │ ├── speech.h │ ├── speechtune.h │ ├── timeofdaylighting.h │ ├── turbosfx.h │ ├── visuallook.h │ ├── visuallookeffect.h │ ├── visuallooktransition.h │ ├── visualrgbtweaker.h │ └── world.h ├── PS2 │ ├── PS2_files.txt │ ├── PS2_functions.nothpp │ ├── PS2_globals.hpp │ ├── PS2_includes.txt │ ├── PS2_labels.hpp │ └── PS2_types.nothpp ├── bchunks.txt ├── debug_lines.txt ├── file_names.txt ├── hashes.txt ├── mw_dwarfdump.nothpp └── vlt.txt └── tools ├── __init__.py ├── attrib_generator.py ├── bHash.py ├── cflags_common.py ├── changes_fmt.py ├── decomp.bat ├── decompctx.py ├── decompctx2.py ├── defines_common.py ├── download_tool.py ├── dwarf1_gcc_line_info.py ├── dwarf1_gcc_split_info.py ├── event_class_generator.py ├── event_yaml_generator.py ├── file_generator.py ├── flag_permuter.py ├── map2splat_symbols_txt.py ├── ninja_syntax.py ├── project.py ├── replace_rodata.py ├── splat_to_config_json.py └── transform_dep.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.clang-format -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/README.md -------------------------------------------------------------------------------- /assets/objdiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/assets/objdiff.png -------------------------------------------------------------------------------- /config/GOWE69/build.sha1: -------------------------------------------------------------------------------- 1 | 9619ba57c9919f95f7f2ac951a2166a3517f91e3 build/GOWE69/main.dol 2 | -------------------------------------------------------------------------------- /config/GOWE69/config.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config/GOWE69/config.example.yml -------------------------------------------------------------------------------- /config/GOWE69/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config/GOWE69/config.yml -------------------------------------------------------------------------------- /config/GOWE69/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config/GOWE69/ldscript.ld -------------------------------------------------------------------------------- /config/GOWE69/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config/GOWE69/splits.txt -------------------------------------------------------------------------------- /config/GOWE69/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config/GOWE69/symbols.txt -------------------------------------------------------------------------------- /config/SLES-53558-A124/build.sha1: -------------------------------------------------------------------------------- 1 | d01ad0bca1f88e1261cfaba35fccdbb8fba38d80 orig/SLES-53558-A124/NFS.ELF 2 | -------------------------------------------------------------------------------- /config/SLES-53558-A124/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config/SLES-53558-A124/config.yml -------------------------------------------------------------------------------- /config/SLES-53558-A124/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config/SLES-53558-A124/symbols.txt -------------------------------------------------------------------------------- /config_temp/splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config_temp/splits.txt -------------------------------------------------------------------------------- /config_temp/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/config_temp/symbols.txt -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/configure.py -------------------------------------------------------------------------------- /docs/comment_section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/docs/comment_section.md -------------------------------------------------------------------------------- /docs/common_bss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/docs/common_bss.md -------------------------------------------------------------------------------- /docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/docs/dependencies.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/github_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/docs/github_actions.md -------------------------------------------------------------------------------- /docs/splits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/docs/splits.md -------------------------------------------------------------------------------- /docs/symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/docs/symbols.md -------------------------------------------------------------------------------- /include/COPYING.NEWLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/COPYING.NEWLIB -------------------------------------------------------------------------------- /include/SN_PS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/SN_PS.h -------------------------------------------------------------------------------- /include/_G_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/_G_config.h -------------------------------------------------------------------------------- /include/__mem.h: -------------------------------------------------------------------------------- 1 | 2 | /* Added to satify some build requirements. */ -------------------------------------------------------------------------------- /include/__ppc_eabi_linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/__ppc_eabi_linker.h -------------------------------------------------------------------------------- /include/_ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/_ansi.h -------------------------------------------------------------------------------- /include/_syslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/_syslist.h -------------------------------------------------------------------------------- /include/ansidecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/ansidecl.h -------------------------------------------------------------------------------- /include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/ar.h -------------------------------------------------------------------------------- /include/asm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/asm_types.h -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/cstddef -------------------------------------------------------------------------------- /include/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/cstdlib -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/dirent.h -------------------------------------------------------------------------------- /include/dol2asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/dol2asm.h -------------------------------------------------------------------------------- /include/dolphin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/dolphin.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/exception -------------------------------------------------------------------------------- /include/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/fastmath.h -------------------------------------------------------------------------------- /include/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/float.h -------------------------------------------------------------------------------- /include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/grp.h -------------------------------------------------------------------------------- /include/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/ieeefp.h -------------------------------------------------------------------------------- /include/include_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/include_asm.h -------------------------------------------------------------------------------- /include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/iso646.h -------------------------------------------------------------------------------- /include/itcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/itcl.h -------------------------------------------------------------------------------- /include/labels.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/labels.inc -------------------------------------------------------------------------------- /include/libsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/libsn.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/locale.h -------------------------------------------------------------------------------- /include/machine/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/machine/fastmath.h -------------------------------------------------------------------------------- /include/machine/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/machine/ieeefp.h -------------------------------------------------------------------------------- /include/machine/setjmp-dj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/machine/setjmp-dj.h -------------------------------------------------------------------------------- /include/machine/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/machine/setjmp.h -------------------------------------------------------------------------------- /include/machine/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/machine/time.h -------------------------------------------------------------------------------- /include/machine/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/machine/types.h -------------------------------------------------------------------------------- /include/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/macro.inc -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/math.h -------------------------------------------------------------------------------- /include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/new -------------------------------------------------------------------------------- /include/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/new.h -------------------------------------------------------------------------------- /include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/paths.h -------------------------------------------------------------------------------- /include/ppc-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/ppc-asm.h -------------------------------------------------------------------------------- /include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/process.h -------------------------------------------------------------------------------- /include/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/proto.h -------------------------------------------------------------------------------- /include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/pwd.h -------------------------------------------------------------------------------- /include/reent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/reent.h -------------------------------------------------------------------------------- /include/regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/regdef.h -------------------------------------------------------------------------------- /include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/setjmp.h -------------------------------------------------------------------------------- /include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/signal.h -------------------------------------------------------------------------------- /include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/stdarg.h -------------------------------------------------------------------------------- /include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/stdbool.h -------------------------------------------------------------------------------- /include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/stddef.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/string.h -------------------------------------------------------------------------------- /include/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/_types.h -------------------------------------------------------------------------------- /include/sys/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/config.h -------------------------------------------------------------------------------- /include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/dirent.h -------------------------------------------------------------------------------- /include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/errno.h -------------------------------------------------------------------------------- /include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/fcntl.h -------------------------------------------------------------------------------- /include/sys/file.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | -------------------------------------------------------------------------------- /include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/param.h -------------------------------------------------------------------------------- /include/sys/reent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/reent.h -------------------------------------------------------------------------------- /include/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/resource.h -------------------------------------------------------------------------------- /include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/signal.h -------------------------------------------------------------------------------- /include/sys/stat-dj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/stat-dj.h -------------------------------------------------------------------------------- /include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/stat.h -------------------------------------------------------------------------------- /include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/time.h -------------------------------------------------------------------------------- /include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/timeb.h -------------------------------------------------------------------------------- /include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/times.h -------------------------------------------------------------------------------- /include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/types.h -------------------------------------------------------------------------------- /include/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/unistd.h -------------------------------------------------------------------------------- /include/sys/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/utime.h -------------------------------------------------------------------------------- /include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/sys/wait.h -------------------------------------------------------------------------------- /include/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/syslimits.h -------------------------------------------------------------------------------- /include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/termios.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/time.h -------------------------------------------------------------------------------- /include/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/typeinfo -------------------------------------------------------------------------------- /include/unctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/unctrl.h -------------------------------------------------------------------------------- /include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/unistd.h -------------------------------------------------------------------------------- /include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/utime.h -------------------------------------------------------------------------------- /include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/utmp.h -------------------------------------------------------------------------------- /include/va-mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/va-mips.h -------------------------------------------------------------------------------- /include/va-ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/va-ppc.h -------------------------------------------------------------------------------- /include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/varargs.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/version.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/include/wchar.h -------------------------------------------------------------------------------- /orig/EUROPEGERMILESTONE/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orig/GOWE69/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/LibSN/FSasync.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/LibSN/crt0.s -------------------------------------------------------------------------------- /src/LibSN/cvtll.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/debug.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/dummy.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/fileserver.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/inituser.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/ppcdown.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/prof.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/proview.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/sndvd.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/tealeaf.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LibSN/tors.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Libs/stl/STLport-4.5/stlport/mmemory.h: -------------------------------------------------------------------------------- 1 | CAUUSE A SYNTAX ERROR 2 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Libs/stl/STLport-4.5/stlport/stl/_exception.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Libs/stl/STLport-4.5/stlport/stl/_relops_template.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Libs/stl/STLport-4.5/stlport/using/h/streambuf.h: -------------------------------------------------------------------------------- 1 | using ::streambuf; 2 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/DemoDisc_G.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/TextureInfoPlat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/eEnvEffectsE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/eEnvMapE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/eLightE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/eMatrixE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/ePShader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/eSprites.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/eVShader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/eViewPlat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/eVisualTreatment.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Ecstasy/xSprites.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/JoyE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Logitech/Condition.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Logitech/Constant.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Logitech/Force.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Logitech/LGWheels.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Logitech/Periodic.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Logitech/Ramp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Logitech/Wheels.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/MemoryCard/MemoryCardImp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Movie_GC.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Platform_G.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Render/AcidFX_G.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Render/Screenshot.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Render/SunE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/Render/bba_com.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/GameCube/Src/xSparks.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Libs/Support/Miscellaneous/Carp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Libs/Support/Miscellaneous/StringHash.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zAI.cpp: -------------------------------------------------------------------------------- 1 | #include "Speed/Indep/Src/AI/activities/AITrafficManager.cpp" 2 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zAnim.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zCamera.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zComms.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zDebug.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zDynamics.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zEagl4Anim.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zFEng.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zFe.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zFe2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zFeOverlay.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zGameModes.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zGameplay.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zMain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zMiscSmall.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zMission.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zOnline.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zPlatform.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zRender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zSpeech.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zTrack.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/SourceLists/zWorld2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/AIAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/AI/AIAction.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/AIDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/AI/AIDebug.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/AIGoal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/AI/AIGoal.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/AIMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/AI/AIMath.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/AIPursuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/AI/AIPursuit.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/AITarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/AI/AITarget.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/AIVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/AI/AIVehicle.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionAirborne.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionGetUnstuck.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionHeadOnRam.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionHeliExit.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionHeliPursuit.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionJackKnife.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionNone.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionPursuitOffRoad.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionRace.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionRam.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionSpline.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionStaticRoadBlock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionStopShort.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionStrafe.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionTooDamaged.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Actions/AIActionTraffic.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIAction.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIGoal.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIMath.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIPursuit.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIRoadBlock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIRoadBlockSetups.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AISpawnManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AISteer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AITarget.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIVehicle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIVehicleCopCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIVehicleHelicopter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIVehiclePursuit.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIVehicleRacecar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AIVehicleTraffic.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Common/AdaptivePIDController.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/Gps.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/activities/AICopManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/AI/activities/AvoidableManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimBank.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimCandidates.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimChooseArrest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimChooser.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimCtrl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimDirectory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimEngineManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimEntity.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimEntity_BasicCharacter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimEntity_Prop.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimEntity_WorldEntity.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimInternal.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimLocator.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimPart.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimPlayer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimPrint.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimScene.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimSkeleton.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/AnimWorldScene.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/ControlScenario.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/GenericNISControlScenario.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/WorldAnimCtrl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Animation/WorldAnimInstanceDirectory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Actions/CDActionDebug.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Actions/CDActionDebugWatchCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Actions/CDActionDrive.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Actions/CDActionIce.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Actions/CDActionShowcase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Actions/CDActionTrackCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Actions/CDActionTrackCop.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Camera.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/CameraAI.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/CameraMover.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ChaseCamAI.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICEAnchor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICEAnimScene.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICEData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICEManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICEMover.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICEOverlays.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICEPoint.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICERender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/ICE/ICEReplay.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/CopView.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/Cubic.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/DebugWorld.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/Rearview.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/SelectCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/Showcase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/Still.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/TrackCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Camera/Movers/TrackCop.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Debug/Common/DebugGraph.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/AnimStat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/AnimUtil.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/Attribute.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/AttributeDictionary.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/BoneMask.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/ClipSet.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/CompoundChannel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/CsisEventChannel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/DeltaChan.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/DeltaCompressedData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/EventTarget.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnAnim.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnAnimMemoryMap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnDeltaF1.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnDeltaF3.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnDeltaQ.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnDeltaQFast.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnDeltaSingleQ.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnEventBlender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnPoseAnim.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnPoseBlender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnRawPoseChannel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnRunBlender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnStatelessF3.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnStatelessQ.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/FnTurnBlender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/IK.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/IK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/EAGL4Anim/IK.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/MemoryPoolManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/PhaseChan.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/PoseAnim.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/RawEventChannel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/RawPoseChannel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/RawStateChan.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/ScratchBuffer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/Skeleton.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/StatelessF3.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/StatelessQ.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/SystemCmn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/eagl4AnimBank.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/eagl4runtimetransform.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/eagl4supportbase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/eagl4supportconspool.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/eagl4supportdef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/eagl4supportdlopen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/eagl4supportprintmessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/eagl4supportsympool.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAGL4Anim/system.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/AemsDef.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_BottomOut.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Engine.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Nitrous.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_PreColWoosh.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Rain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Roadnoise.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Shifting.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Siren.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Skids.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_SparkChatter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Structs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_TrafficFX.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_Turbo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/CARSFX_WindNoise.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_Ambience.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_Collision.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_FEHUD.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_Helicopter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_MomentStrm.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_Movies.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_NISStream.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_Pathfinder.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_Reverb.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_Speech.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_TruckFX.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_Woosh.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/CARSFX/SFXObj_WorldObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Data/SND_DopplerParams.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Data/SND_ReverbFXParams.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXAITunerCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXAIUtils.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXAemsManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXFrontEnd.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXSND8Wrapper.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXSndUtil.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXTrafficCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXTunerCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EAXVolumes.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/EaxSoundTypes.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Ginsu/ginsudata.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Ginsu/ginsusynth.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/SFX_Common.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/STICH_Loader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/SndCamera.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/SoundCollision.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/SoundConn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_AICar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_CarState.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_Collision.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_CopCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_DriveBy.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_Enviro.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_Helicopter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_Main.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_Music.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_PlayerCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_TrafficCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/Managers/STATEMGR_Truck.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/STATE_Collision.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/STATE_DriveBy.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/STATE_Helicopter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/STATE_Main.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/States/STATE_Music.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Stream/EAXS_StreamChannel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Stream/EAXS_StreamManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Stream/GameSpeech.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Stream/NISSFXModule.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Stream/SndStrmWrapper.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Stream/SpeechManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/Stream/SpeechModule.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/UG/NFSUG_CarsSFXLoadData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/dynamic_mixer/NFSLiveLink.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/dynamic_mixer/NFSMixMap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/dynamic_mixer/NFSMixMapState.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/dynamic_mixer/NFSMixMaster.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/dynamic_mixer/NFSMixShape.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/realstream/src/stream.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_3DCarPos.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_3DObjPos.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_AccelTrans.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_Collision.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_Engine.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_Helicopter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_HybridMotor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_MasterVol.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_NISReving.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_Pathfinder5.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_Physics.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_Shifting.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_Tunnel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/sfxctl/SFXCTL_Wheel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/COP_SIREN_AEMS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/ENGINES_AEMS2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/ENVIRO_AEMS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/FE_AEMS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/MAIN_AEMS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/NISAudio.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/STITCH_AEMS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/TURBO.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/EAXSound/snd_gen/copspeech.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEButtonMap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEChunk.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FECodeListBox.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEEvent.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEEvent.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEGroup.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEGroup.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEJoyPad.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEJoyPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEJoyPad.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEKeyInterp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEKeyInterpLinear.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEKeyInterpNone.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEKeyTrack.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEList.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEList.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEListBox.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FELocalizer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMath.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEMath.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMemStream.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMessageResponse.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEModel.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMouse.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEMouse.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEMovie.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMsgTargetList.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEMultiImage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEObject.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEPackage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEPackageList.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEPackageReader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FERefList.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEScript.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEScript.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FESlotPool.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEString.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FEString.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FETypeLib.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FETypeNode.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FETypes.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FETypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/FETypes.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEWideString.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEngStandard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/FEngine.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/feimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/feimage.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/FEng/fengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/FEng/fengine.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/Careers/UnlockSystem.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/Database/FEDatabase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/Database/RaceDB.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/Database/VehicleDB.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/Database/uiProfileManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FECarLoader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FECarViewer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEJoyInput.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEObjectCallbacks.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEPackageData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEPackageManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FERenderObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngFont.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngFrontend.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngInterfaces/FEGameInterface.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngInterfaces/FEngInterface.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngInterfaces/FEngInterfaceFEButtons.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngInterfaces/FEngInterfaceFEImages.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngInterfaces/FEngInterfaceFEMovies.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngInterfaces/FEngInterfaceFEObjects.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngInterfaces/FEngInterfaceFEStrings.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/FEngRender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FEPkg_Hud.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FESpeedBreakerMeter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FETachometerDrag.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeBustedMeter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeCostToState.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeCountdown.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeEngineTempGauge.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeGenericMessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeGetawayMeter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeHeatMeter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeHudElement.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeInfractions.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeLeaderBoard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeMenuZoneTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeMilestoneBoard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeMinimap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeMinimapStreamer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeNitrousGauge.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeOnlineHudSupport.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FePursuitBoard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeQueuedMessageSwapper.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeRaceInformation.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeRaceOverMessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeRadarDetector.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeReputation.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeShiftUpdater.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeSpeedometer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeTachometer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeTimeExtension.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeTurboMeter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/HUD/FeWrongWIndi.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/Localization/Localize.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/Localization/WideCharHistogram.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MemoryCard/MemoryCard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MemoryCard/MemoryCardCallbacks.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Career/FEGameWonScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Career/FEPkg_EngageEventDialog.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/FEAnyMovieScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/FEAnyTutorialScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/FEMenuScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/Slider.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/feArrayScrollerMenu.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/feDialogBox.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/feIconScrollerMenu.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/feKeyboardInput.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/feScrollerina.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/feUIWidgetMenu.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/feWidget.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Common/uiDateMenu.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/ControllerUnplugged.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/CustomTuning.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/FEPKg_PostRace.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/FEPkg_Chyron.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/FEPkg_ConfirmDialog.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/FEPkg_OKDialog.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/FEpkg_MU_Keyboard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/FeBustedOverlay.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/FeFadeScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/InGameMovieScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/InGameTutorialScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/PhotoFinish.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/uiPause.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/uiSMS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/uiSMSMessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/uiSixDaysLater.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/InGame/uiWorldMap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Loading/FEBootFlowManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Loading/FELanguageSelect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Loading/FELoadingControllerScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Loading/FELoadingScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Loading/FELoadingTips.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Loading/FEMovieScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Loading/FESplashScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/MemCard/uiMemcard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/MemCard/uiMemcardBase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/MemCard/uiMemcardInterface.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/FEPkg_GarageMain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiCareerMain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiCareerManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiInfractions.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiMarkerSelect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetCTS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetLogin.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetMain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetPD.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetRS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetRankings.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetRankingsDetail.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetTEP.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetUS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRapSheetVD.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRepSheetBounty.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRepSheetMain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRepSheetMilestones.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRepSheetRaceEvents.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRepSheetRival.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRepSheetRivalBio.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRepSheetRivalFlow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiRepSheetRivalStreamer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/career/uiSafehouseRegionUnlock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/customize/CarCustomize.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/customize/CustomizeManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/customize/DebugCarCustomize.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/customize/FECustomize.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/customize/MyCarsManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/options/uiCredits.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/options/uiEATraxJukebox.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/options/uiOptionWidgets.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/options/uiOptionsController.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/options/uiOptionsMain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/options/uiOptionsScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/options/uiOptionsTrailers.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiQRBrief.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiQRCarSelect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiQRChallengeSeries.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiQRMainMenu.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiQRModeSelect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiQRPressStart.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiQRTrackOptions.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiQRTrackSelect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiShowcase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/quickrace/uiTrackMapStreamer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MenuScreens/Safehouse/uiMain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/MoviePlayer/MoviePlayer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/RaceStarter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/SubTitle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Frontend/UnicodeFile.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gamemodes/EmotionManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gamemodes/EmotionManagerImpl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GActivity.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GCharacter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GHandler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GIcon.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GInfractionManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GMarker.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GMilestone.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GObjectBlock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GRaceDatabase.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GRaceStatus.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GRuntimeInstance.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GSpeedTrap.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GState.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GTimer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Gameplay/GVault.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/AttribSys/codegen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/E911Call.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EAIEngineRev.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EAccelerate.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EAddSMS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EAudioRigidBodyTest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EAudioSmackableTest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EAudioWorldTest.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EAutoSave.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EAwardUpgrade.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EBailPursuit.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EBecomeAiCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EBecomePlayerCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EBecomePursuitCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EBreakerStopCops.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ECameraPhotoFinish.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ECameraShake.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ECellCall.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EChangeState.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ECinematicMoment.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ECollision.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ECommitAudioAssets.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ECommitRenderAssets.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDDaySpeech.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDamageLights.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDebugPrint.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDebugScreenMessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDeliverMessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDestroyVehicle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDisablePursuitVehicle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDisableTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDispIntroRace.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EDynamicRegion.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EEnableAIPhysics.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EEnableCollisionElement.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EEnableModeling.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EEnableTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EEndCarStop.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EEngineBlown.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EEnterBin.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EEnterEngagableTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EExitEngagableTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EFadeScreenNoLoadingBarOff.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EFadeScreenNoLoadingBarOn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EFadeScreenOff.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EFadeScreenOn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EFireEventList.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EFireRandomTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EFireTriggerSpeedCondition.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EForceCarStop.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EGPSFinished.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EGPSLost.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EGTriggerInternal.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EHideObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EHidePart.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EHideRaceOverMessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EJointDetached.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EJumpToStrategyFlow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EKillJoint.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EKillObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EKnockoutRacer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ELoadLost.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ELoadingScreenOff.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ELoadingScreenOn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EMissShift.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EMomentStrm.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISAeroDynamics.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISBrakelock.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISBurnout.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISCarDamageReset.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISCarPitch.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISCarRoll.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISCarShake.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISConstraint.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISCopCarDoors.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISCopLights.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISDetach.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISDetail.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISFakeFar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISFreeze.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISHideCharacter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISLights.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISMotionBlur.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISNeutralRev.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISNitro.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISNukeSmack.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISOverlayMessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISPixelate.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISPlayEffect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISRain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISReattach.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISRoadNoise.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISScreenFlash.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISSteering.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISStopEffects.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISTimeOfDay.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISVisualLook.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISWolrdGeometry.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ENISWorldAnimTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPause.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPerfectLaunch.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPerfectShift.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPlayEndNIS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPlayObjectEffect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPlayRaceMovie.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPlayRaceNIS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPlayerAirborne.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPlayerShift.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPlayerTriggeredNOS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EProcessAreaStimulus.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EProcessStimulus.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EPursuitBreaker.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EQuitDemo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EQuitToFE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ERaceSheetOff.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ERaceSheetOn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ERandomEventList.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ERandomExplosion.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EReloadGame.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EReloadHud.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EReportInfraction.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EReportMilestoneAtStake.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ERequestEventInfoDialog.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EResetPlayerCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EResetProps.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EResetSequencer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EResetSystem.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ERestartRace.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EScheduleEvent.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EScheduleEventUpdate.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESetCopAutoSpawnMode.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESetPlayerCarReset.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESetPlayerCollisionCache.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESetSimRate.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShockObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShowMarketingScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShowMessageScreen.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShowMilestones.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShowRaceCountdown.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShowRaceOverMessage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShowResults.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShowSMS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EShowTimeExtension.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESimulate.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESndGameState.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESpawnExplosion.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESpawnFragment.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ESpawnSmackable.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EStopObjectEffect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EStopObjectEffects.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ETerminateMusic.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ETips.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ETireBlown.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ETirePunctured.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ETriggerMomentNIS.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/ETuneVehicle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EUnPause.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EVehicleDestroyed.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EVehicleReset.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EWakeObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EWorldMapOff.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EWorldMapOn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/Events/EventDefs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/QueryDefs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Generated/TexturePacks/TexEnumGen_ParticleTextures.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Input/Common/InputDefParser.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Input/Common/InputDevice.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Input/Common/SteeringWheelDevice.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Input/Common/action.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Input/Common/actionqueue.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Input/Common/debuginput.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Input/Common/iomodule.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Input/GC/InputDeviceGC.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Lua/LuaAttributes.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Lua/LuaBindery.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Lua/LuaGameHooks.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Lua/LuaPostOffice.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Lua/LuaRuntime.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Main/Common/Event.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Main/Common/EventSequencer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Main/Common/Scheduler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Main/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/Main/Event.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Main/GC/VirtualMemory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Main/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/Main/stubs.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Math/Common/SimRandom.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/AttribAlloc.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/AttribAsset.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Base64.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/BuildRegion.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/DemoDisc.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/EasterEggs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/HandyBreakpoint.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Hermes.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/ISOCodes.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Joylog.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/LZCompress.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/MD5.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/MD5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/Misc/MD5.hpp -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/MissionEdit.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Point.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Profiler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/QueuedFile.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/QuickSpline.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/REAL_Stubs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/ResourceLoader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Rumble.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/SpeedChunks.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Spline.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Stomper.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/TestHooks/tecommon.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/Timer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/VersionNumber.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/VolumeTree.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/bFile.cpp: -------------------------------------------------------------------------------- 1 | #include "./bFile.hpp" 2 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Misc/bRepeat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/BehaviorSpecs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/DrawCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/DrawHeli.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/DrawVehicle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/ResetCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/SimpleChopper.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/SoundCar.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/SoundHeli.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Behaviors/SpikeStrip.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/Behavior.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/Bounds.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/Explosion.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/PVehicle.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/PhysicsObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/Smackable.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/SmokeableInfo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/VehicleBehaviors.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Common/Wheel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Dynamics/Articulation.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Dynamics/Collision.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/Dynamics/Geometry.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/PhysicsTunings.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/PhysicsUpgrades.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Physics/SmackableTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Render/Common/ColourConversion.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Render/Common/RRandom.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Render/Common/RenderConn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Activities/CareerGame.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Activities/GameplayActivity.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Activities/NISActivity.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Activities/QuickGame.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Common/SimActivity.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Common/SimEffect.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Common/SimEntity.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Common/SimModel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Common/SimObject.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Common/SimServer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Common/SimTypes.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/Common/Util.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/OBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/Sim/OBB.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Sim/UTil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/Speed/Indep/Src/Sim/UTil.h -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/EAXAirSupport.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/EAXCharacter.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/EAXCop.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/EAXDispatch.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/MiscSpeech.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/MusicFlow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/Observer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/PursuitFlow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/RoadblockFlow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/SoundAI.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/SpeechCache.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/SpeechFlow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/Speech/StrategyFlow.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/CarInfo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/CarLoader.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/CarPartNames.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/CarRender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/CarRenderConn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/CarSkin.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Clans.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WCollider.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WCollision.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WCollisionAssets.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WCollisionMgr.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WCollisionPack.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WCollisionTri.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WGrid.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WGridManagedDynamicElem.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WGridNode.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WPathFinder.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WRoadNetwork.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WSimpleZone.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WTrigger.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WWorld.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WWorldMath.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Common/WWorldPos.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/DamageZones.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/EventManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/FacePixelate.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/HeliRenderConn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/HeliSheet.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/NeuQuant.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/ParameterMaps.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Scenery.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/ScreenEffects.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/SimpleModelAnim.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Skids.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/SkyRender.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/SpaceNode.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/TimeOfDay.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/Track.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/TrackInfo.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/TrackPath.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/TrackPositionMarker.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/TrackStreamer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/VehicleFX.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/VehicleFragmentConn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/VehiclePartDamage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/VehicleRenderConn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/VisualTreatment.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/WeatherMan.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/WorldConn.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/WorldModel.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Src/World/rain.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/Indep/Tools/AttribSys/Runtime/Common/AttribLiveLink.cpp: -------------------------------------------------------------------------------- 1 | // Stripped 2 | -------------------------------------------------------------------------------- /src/Speed/Indep/bWare/Src/bMatrix.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/AcidFXE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/DemoDisc_PS2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/DmaDump.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/EcstasyE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/TextureInfoPlat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eEnvEffectsE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eEnvMapE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eLightE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eMathE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eSolidPlat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eSprites.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eStripDataE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eViewPlat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/eVisualTreatment.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Ecstasy/xSprites.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/MOVIE_PS2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/MemoryCard/MemoryCardImp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Online/PS2Isp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Online/PlatformNetworkCore.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/Platform.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/RebootIOP.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/SunE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Speed/PSX2/Src/xSparks.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/snd/source/library/cmn/SNDI_root1x.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/snd/source/library/cmn/sst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/snd/source/library/cmn/sst.c -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/src/types.h -------------------------------------------------------------------------------- /symbols/Classes/acceltrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/acceltrans.h -------------------------------------------------------------------------------- /symbols/Classes/audioimpact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/audioimpact.h -------------------------------------------------------------------------------- /symbols/Classes/audioscrape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/audioscrape.h -------------------------------------------------------------------------------- /symbols/Classes/audiosystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/audiosystem.h -------------------------------------------------------------------------------- /symbols/Classes/chopperspecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/chopperspecs.h -------------------------------------------------------------------------------- /symbols/Classes/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/effects.h -------------------------------------------------------------------------------- /symbols/Classes/emitteruv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/emitteruv.h -------------------------------------------------------------------------------- /symbols/Classes/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/engine.h -------------------------------------------------------------------------------- /symbols/Classes/engineaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/engineaudio.h -------------------------------------------------------------------------------- /symbols/Classes/explosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/explosion.h -------------------------------------------------------------------------------- /symbols/Classes/fecooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/fecooling.h -------------------------------------------------------------------------------- /symbols/Classes/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/frontend.h -------------------------------------------------------------------------------- /symbols/Classes/gameplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/gameplay.h -------------------------------------------------------------------------------- /symbols/Classes/infractions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/infractions.h -------------------------------------------------------------------------------- /symbols/Classes/junkman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/junkman.h -------------------------------------------------------------------------------- /symbols/Classes/lightmaterials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/lightmaterials.h -------------------------------------------------------------------------------- /symbols/Classes/lightshaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/lightshaders.h -------------------------------------------------------------------------------- /symbols/Classes/milestonetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/milestonetypes.h -------------------------------------------------------------------------------- /symbols/Classes/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/music.h -------------------------------------------------------------------------------- /symbols/Classes/ocean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/ocean.h -------------------------------------------------------------------------------- /symbols/Classes/presetride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/presetride.h -------------------------------------------------------------------------------- /symbols/Classes/pursuitlevels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/pursuitlevels.h -------------------------------------------------------------------------------- /symbols/Classes/pursuitsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/pursuitsupport.h -------------------------------------------------------------------------------- /symbols/Classes/shiftpattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/shiftpattern.h -------------------------------------------------------------------------------- /symbols/Classes/smackable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/smackable.h -------------------------------------------------------------------------------- /symbols/Classes/speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/speech.h -------------------------------------------------------------------------------- /symbols/Classes/speechtune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/speechtune.h -------------------------------------------------------------------------------- /symbols/Classes/turbosfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/turbosfx.h -------------------------------------------------------------------------------- /symbols/Classes/visuallook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/visuallook.h -------------------------------------------------------------------------------- /symbols/Classes/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/Classes/world.h -------------------------------------------------------------------------------- /symbols/PS2/PS2_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/PS2/PS2_files.txt -------------------------------------------------------------------------------- /symbols/PS2/PS2_functions.nothpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/PS2/PS2_functions.nothpp -------------------------------------------------------------------------------- /symbols/PS2/PS2_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/PS2/PS2_globals.hpp -------------------------------------------------------------------------------- /symbols/PS2/PS2_includes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/PS2/PS2_includes.txt -------------------------------------------------------------------------------- /symbols/PS2/PS2_labels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/PS2/PS2_labels.hpp -------------------------------------------------------------------------------- /symbols/PS2/PS2_types.nothpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/PS2/PS2_types.nothpp -------------------------------------------------------------------------------- /symbols/bchunks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/bchunks.txt -------------------------------------------------------------------------------- /symbols/debug_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/debug_lines.txt -------------------------------------------------------------------------------- /symbols/file_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/file_names.txt -------------------------------------------------------------------------------- /symbols/hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/hashes.txt -------------------------------------------------------------------------------- /symbols/mw_dwarfdump.nothpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/mw_dwarfdump.nothpp -------------------------------------------------------------------------------- /symbols/vlt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/symbols/vlt.txt -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/attrib_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/attrib_generator.py -------------------------------------------------------------------------------- /tools/bHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/bHash.py -------------------------------------------------------------------------------- /tools/cflags_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/cflags_common.py -------------------------------------------------------------------------------- /tools/changes_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/changes_fmt.py -------------------------------------------------------------------------------- /tools/decomp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/decomp.bat -------------------------------------------------------------------------------- /tools/decompctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/decompctx.py -------------------------------------------------------------------------------- /tools/decompctx2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/decompctx2.py -------------------------------------------------------------------------------- /tools/defines_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/defines_common.py -------------------------------------------------------------------------------- /tools/download_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/download_tool.py -------------------------------------------------------------------------------- /tools/dwarf1_gcc_line_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/dwarf1_gcc_line_info.py -------------------------------------------------------------------------------- /tools/dwarf1_gcc_split_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/dwarf1_gcc_split_info.py -------------------------------------------------------------------------------- /tools/event_class_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/event_class_generator.py -------------------------------------------------------------------------------- /tools/event_yaml_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/event_yaml_generator.py -------------------------------------------------------------------------------- /tools/file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/file_generator.py -------------------------------------------------------------------------------- /tools/flag_permuter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/flag_permuter.py -------------------------------------------------------------------------------- /tools/map2splat_symbols_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/map2splat_symbols_txt.py -------------------------------------------------------------------------------- /tools/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/ninja_syntax.py -------------------------------------------------------------------------------- /tools/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/project.py -------------------------------------------------------------------------------- /tools/replace_rodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/replace_rodata.py -------------------------------------------------------------------------------- /tools/splat_to_config_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/splat_to_config_json.py -------------------------------------------------------------------------------- /tools/transform_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbalatoni13/nfsmw/HEAD/tools/transform_dep.py --------------------------------------------------------------------------------