├── .gitattributes ├── .gitignore ├── MP3Sharp ├── Buffer16BitStereo.cs ├── Decoding │ ├── ABuffer.cs │ ├── BitReserve.cs │ ├── Bitstream.cs │ ├── BitstreamErrors.cs │ ├── BitstreamException.cs │ ├── CircularByteBuffer.cs │ ├── Crc16.cs │ ├── Decoder.cs │ ├── DecoderErrors.cs │ ├── DecoderException.cs │ ├── Decoders │ │ ├── ASubband.cs │ │ ├── IFrameDecoder.cs │ │ ├── LayerI │ │ │ ├── SubbandLayer1.cs │ │ │ ├── SubbandLayer1IntensityStereo.cs │ │ │ └── SubbandLayer1Stereo.cs │ │ ├── LayerIDecoder.cs │ │ ├── LayerII │ │ │ ├── SubbandLayer2.cs │ │ │ ├── SubbandLayer2IntensityStereo.cs │ │ │ └── SubbandLayer2Stereo.cs │ │ ├── LayerIIDecoder.cs │ │ ├── LayerIII │ │ │ ├── ChannelData.cs │ │ │ ├── GranuleInfo.cs │ │ │ ├── Layer3SideInfo.cs │ │ │ ├── SBI.cs │ │ │ ├── ScaleFactorData.cs │ │ │ └── ScaleFactorTable.cs │ │ └── LayerIIIDecoder.cs │ ├── Equalizer.cs │ ├── Header.cs │ ├── Huffman.cs │ ├── OutputChannels.cs │ ├── OutputChannelsEnum.cs │ ├── PushbackStream.cs │ ├── SampleBuffer.cs │ └── SynthesisFilter.cs ├── IO │ ├── RandomAccessFileStream.cs │ ├── RiffFile.cs │ ├── WaveFile.cs │ └── WaveFileBuffer.cs ├── MP3Sharp.csproj ├── Mp3SharpException.cs ├── Mp3Stream.cs ├── Properties │ └── AssemblyInfo.cs ├── SoundFormat.cs └── Support │ └── SupportClass.cs ├── OpenVice.sln ├── OpenVice ├── Controls │ ├── FreeLook.cs │ ├── Input.cs │ ├── Key.cs │ └── MouseButton.cs ├── Dev │ └── DebugStuff.cs ├── Engine │ └── Core.cs ├── Entities │ ├── GameObject.cs │ └── StaticProxy.cs ├── Managers │ ├── CityManager.cs │ └── StaticManager.cs ├── OpenVice.csproj ├── Properties │ └── AssemblyInfo.cs ├── VM │ ├── ScriptFunctions.cs │ ├── ScriptMachine.cs │ ├── ScriptModule.cs │ └── ScriptTypes.cs ├── World │ └── Environment.cs ├── app.config └── packages.config ├── OpenViceData ├── Audio │ ├── AudioManager.cs │ └── StreamingAudio.cs ├── Data │ ├── ItemDefinition.cs │ ├── ItemPlacement.cs │ └── ScriptTypes.cs ├── Dev │ ├── Console.cs │ └── Extensions.cs ├── Entities │ ├── Camera.cs │ └── Viewport.cs ├── Files │ ├── AdfStream.cs │ ├── AnimationFile.cs │ ├── ArchiveFile.cs │ ├── CollisionFile.cs │ ├── ModelFile.cs │ ├── RenderWareFile.cs │ ├── SCMFile.cs │ ├── TextFile.cs │ └── TextureFile.cs ├── Managers │ ├── ArchiveManager.cs │ ├── CollisionManager.cs │ ├── FileManager.cs │ ├── ObjectManager.cs │ ├── PathManager.cs │ ├── PhysicsManager.cs │ └── TimeCycleManager.cs ├── OpenViceData.csproj ├── Physics │ └── StaticCollider.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── OpenViceGL ├── Dev │ ├── DXTDecoder.cs │ └── GLExtensions.cs ├── Graphics │ ├── CameraManager.cs │ ├── CullSphere.cs │ ├── Frustum.cs │ ├── Model.cs │ ├── Render.cs │ ├── Renderers │ │ ├── DebugRenderer.cs │ │ ├── RendererBase.cs │ │ ├── SkinnedRenderer.cs │ │ ├── SkyRenderer.cs │ │ └── StaticRenderer.cs │ ├── Shaders │ │ ├── DebugShader.cs │ │ ├── ShaderBase.cs │ │ ├── SkinnedShader.cs │ │ ├── SkyShader.cs │ │ └── StaticShader.cs │ ├── TextureDictionary.cs │ └── Transform.cs ├── Managers │ ├── ModelManager.cs │ └── TextureManager.cs ├── OpenViceGL.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── OpenViceWin ├── Classes │ ├── App.cs │ └── Program.cs ├── Forms │ ├── ExceptionForm.Designer.cs │ ├── ExceptionForm.cs │ ├── ExceptionForm.resx │ └── GameForm.cs ├── OpenTK.dll.config ├── OpenViceWin.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── app.ico ├── app.config ├── app.ico └── packages.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/.gitignore -------------------------------------------------------------------------------- /MP3Sharp/Buffer16BitStereo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Buffer16BitStereo.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/ABuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/ABuffer.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/BitReserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/BitReserve.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Bitstream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Bitstream.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/BitstreamErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/BitstreamErrors.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/BitstreamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/BitstreamException.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/CircularByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/CircularByteBuffer.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Crc16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Crc16.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoder.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/DecoderErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/DecoderErrors.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/DecoderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/DecoderException.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/ASubband.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/ASubband.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/IFrameDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/IFrameDecoder.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerI/SubbandLayer1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerI/SubbandLayer1.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerI/SubbandLayer1IntensityStereo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerI/SubbandLayer1IntensityStereo.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerI/SubbandLayer1Stereo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerI/SubbandLayer1Stereo.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIDecoder.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerII/SubbandLayer2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerII/SubbandLayer2.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerII/SubbandLayer2IntensityStereo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerII/SubbandLayer2IntensityStereo.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerII/SubbandLayer2Stereo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerII/SubbandLayer2Stereo.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIIDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIIDecoder.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIII/ChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIII/ChannelData.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIII/GranuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIII/GranuleInfo.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIII/Layer3SideInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIII/Layer3SideInfo.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIII/SBI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIII/SBI.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIII/ScaleFactorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIII/ScaleFactorData.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIII/ScaleFactorTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIII/ScaleFactorTable.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Decoders/LayerIIIDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Decoders/LayerIIIDecoder.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Equalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Equalizer.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Header.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/Huffman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/Huffman.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/OutputChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/OutputChannels.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/OutputChannelsEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/OutputChannelsEnum.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/PushbackStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/PushbackStream.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/SampleBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/SampleBuffer.cs -------------------------------------------------------------------------------- /MP3Sharp/Decoding/SynthesisFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Decoding/SynthesisFilter.cs -------------------------------------------------------------------------------- /MP3Sharp/IO/RandomAccessFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/IO/RandomAccessFileStream.cs -------------------------------------------------------------------------------- /MP3Sharp/IO/RiffFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/IO/RiffFile.cs -------------------------------------------------------------------------------- /MP3Sharp/IO/WaveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/IO/WaveFile.cs -------------------------------------------------------------------------------- /MP3Sharp/IO/WaveFileBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/IO/WaveFileBuffer.cs -------------------------------------------------------------------------------- /MP3Sharp/MP3Sharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/MP3Sharp.csproj -------------------------------------------------------------------------------- /MP3Sharp/Mp3SharpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Mp3SharpException.cs -------------------------------------------------------------------------------- /MP3Sharp/Mp3Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Mp3Stream.cs -------------------------------------------------------------------------------- /MP3Sharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MP3Sharp/SoundFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/SoundFormat.cs -------------------------------------------------------------------------------- /MP3Sharp/Support/SupportClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/MP3Sharp/Support/SupportClass.cs -------------------------------------------------------------------------------- /OpenVice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice.sln -------------------------------------------------------------------------------- /OpenVice/Controls/FreeLook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Controls/FreeLook.cs -------------------------------------------------------------------------------- /OpenVice/Controls/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Controls/Input.cs -------------------------------------------------------------------------------- /OpenVice/Controls/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Controls/Key.cs -------------------------------------------------------------------------------- /OpenVice/Controls/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Controls/MouseButton.cs -------------------------------------------------------------------------------- /OpenVice/Dev/DebugStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Dev/DebugStuff.cs -------------------------------------------------------------------------------- /OpenVice/Engine/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Engine/Core.cs -------------------------------------------------------------------------------- /OpenVice/Entities/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Entities/GameObject.cs -------------------------------------------------------------------------------- /OpenVice/Entities/StaticProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Entities/StaticProxy.cs -------------------------------------------------------------------------------- /OpenVice/Managers/CityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Managers/CityManager.cs -------------------------------------------------------------------------------- /OpenVice/Managers/StaticManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Managers/StaticManager.cs -------------------------------------------------------------------------------- /OpenVice/OpenVice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/OpenVice.csproj -------------------------------------------------------------------------------- /OpenVice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenVice/VM/ScriptFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/VM/ScriptFunctions.cs -------------------------------------------------------------------------------- /OpenVice/VM/ScriptMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/VM/ScriptMachine.cs -------------------------------------------------------------------------------- /OpenVice/VM/ScriptModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/VM/ScriptModule.cs -------------------------------------------------------------------------------- /OpenVice/VM/ScriptTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/VM/ScriptTypes.cs -------------------------------------------------------------------------------- /OpenVice/World/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/World/Environment.cs -------------------------------------------------------------------------------- /OpenVice/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/app.config -------------------------------------------------------------------------------- /OpenVice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenVice/packages.config -------------------------------------------------------------------------------- /OpenViceData/Audio/AudioManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Audio/AudioManager.cs -------------------------------------------------------------------------------- /OpenViceData/Audio/StreamingAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Audio/StreamingAudio.cs -------------------------------------------------------------------------------- /OpenViceData/Data/ItemDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Data/ItemDefinition.cs -------------------------------------------------------------------------------- /OpenViceData/Data/ItemPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Data/ItemPlacement.cs -------------------------------------------------------------------------------- /OpenViceData/Data/ScriptTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Data/ScriptTypes.cs -------------------------------------------------------------------------------- /OpenViceData/Dev/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Dev/Console.cs -------------------------------------------------------------------------------- /OpenViceData/Dev/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Dev/Extensions.cs -------------------------------------------------------------------------------- /OpenViceData/Entities/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Entities/Camera.cs -------------------------------------------------------------------------------- /OpenViceData/Entities/Viewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Entities/Viewport.cs -------------------------------------------------------------------------------- /OpenViceData/Files/AdfStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/AdfStream.cs -------------------------------------------------------------------------------- /OpenViceData/Files/AnimationFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/AnimationFile.cs -------------------------------------------------------------------------------- /OpenViceData/Files/ArchiveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/ArchiveFile.cs -------------------------------------------------------------------------------- /OpenViceData/Files/CollisionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/CollisionFile.cs -------------------------------------------------------------------------------- /OpenViceData/Files/ModelFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/ModelFile.cs -------------------------------------------------------------------------------- /OpenViceData/Files/RenderWareFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/RenderWareFile.cs -------------------------------------------------------------------------------- /OpenViceData/Files/SCMFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/SCMFile.cs -------------------------------------------------------------------------------- /OpenViceData/Files/TextFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/TextFile.cs -------------------------------------------------------------------------------- /OpenViceData/Files/TextureFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Files/TextureFile.cs -------------------------------------------------------------------------------- /OpenViceData/Managers/ArchiveManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Managers/ArchiveManager.cs -------------------------------------------------------------------------------- /OpenViceData/Managers/CollisionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Managers/CollisionManager.cs -------------------------------------------------------------------------------- /OpenViceData/Managers/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Managers/FileManager.cs -------------------------------------------------------------------------------- /OpenViceData/Managers/ObjectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Managers/ObjectManager.cs -------------------------------------------------------------------------------- /OpenViceData/Managers/PathManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Managers/PathManager.cs -------------------------------------------------------------------------------- /OpenViceData/Managers/PhysicsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Managers/PhysicsManager.cs -------------------------------------------------------------------------------- /OpenViceData/Managers/TimeCycleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Managers/TimeCycleManager.cs -------------------------------------------------------------------------------- /OpenViceData/OpenViceData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/OpenViceData.csproj -------------------------------------------------------------------------------- /OpenViceData/Physics/StaticCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Physics/StaticCollider.cs -------------------------------------------------------------------------------- /OpenViceData/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenViceData/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/app.config -------------------------------------------------------------------------------- /OpenViceData/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceData/packages.config -------------------------------------------------------------------------------- /OpenViceGL/Dev/DXTDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Dev/DXTDecoder.cs -------------------------------------------------------------------------------- /OpenViceGL/Dev/GLExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Dev/GLExtensions.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/CameraManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/CameraManager.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/CullSphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/CullSphere.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Frustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Frustum.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Model.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Render.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Render.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Renderers/DebugRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Renderers/DebugRenderer.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Renderers/RendererBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Renderers/RendererBase.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Renderers/SkinnedRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Renderers/SkinnedRenderer.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Renderers/SkyRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Renderers/SkyRenderer.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Renderers/StaticRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Renderers/StaticRenderer.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Shaders/DebugShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Shaders/DebugShader.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Shaders/ShaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Shaders/ShaderBase.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Shaders/SkinnedShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Shaders/SkinnedShader.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Shaders/SkyShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Shaders/SkyShader.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Shaders/StaticShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Shaders/StaticShader.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/TextureDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/TextureDictionary.cs -------------------------------------------------------------------------------- /OpenViceGL/Graphics/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Graphics/Transform.cs -------------------------------------------------------------------------------- /OpenViceGL/Managers/ModelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Managers/ModelManager.cs -------------------------------------------------------------------------------- /OpenViceGL/Managers/TextureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Managers/TextureManager.cs -------------------------------------------------------------------------------- /OpenViceGL/OpenViceGL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/OpenViceGL.csproj -------------------------------------------------------------------------------- /OpenViceGL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenViceGL/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/app.config -------------------------------------------------------------------------------- /OpenViceGL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceGL/packages.config -------------------------------------------------------------------------------- /OpenViceWin/Classes/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Classes/App.cs -------------------------------------------------------------------------------- /OpenViceWin/Classes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Classes/Program.cs -------------------------------------------------------------------------------- /OpenViceWin/Forms/ExceptionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Forms/ExceptionForm.Designer.cs -------------------------------------------------------------------------------- /OpenViceWin/Forms/ExceptionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Forms/ExceptionForm.cs -------------------------------------------------------------------------------- /OpenViceWin/Forms/ExceptionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Forms/ExceptionForm.resx -------------------------------------------------------------------------------- /OpenViceWin/Forms/GameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Forms/GameForm.cs -------------------------------------------------------------------------------- /OpenViceWin/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/OpenTK.dll.config -------------------------------------------------------------------------------- /OpenViceWin/OpenViceWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/OpenViceWin.csproj -------------------------------------------------------------------------------- /OpenViceWin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenViceWin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OpenViceWin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Properties/Resources.resx -------------------------------------------------------------------------------- /OpenViceWin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OpenViceWin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Properties/Settings.settings -------------------------------------------------------------------------------- /OpenViceWin/Resources/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/Resources/app.ico -------------------------------------------------------------------------------- /OpenViceWin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/app.config -------------------------------------------------------------------------------- /OpenViceWin/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/app.ico -------------------------------------------------------------------------------- /OpenViceWin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/OpenViceWin/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clashbyte/openvice/HEAD/README.md --------------------------------------------------------------------------------