Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated and reorganized to run on iOS 11 #1

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
56276fb
Updated and reorganized to run on iOS 11
tomkidd Apr 5, 2018
9392a7f
Added README.md to root directory
tomkidd Apr 5, 2018
4b8a973
Added placeholder menu_art files
tomkidd Apr 6, 2018
1d7c81a
Added tvOS port
tomkidd May 9, 2018
4a7065d
Updated for Xcode 10
tomkidd Sep 17, 2018
9d58709
updated gitignore to remove xcuserstate
tomkidd Dec 5, 2018
4d27dce
sprucing up README
tomkidd Apr 10, 2019
09aa97a
Update README.md
tomkidd Apr 10, 2019
df8e021
Update README.md
tomkidd Apr 10, 2019
10239b6
Reduce screen shot and icon file size by using smart lossy compression
cpitzak May 7, 2019
839a615
Removed IAP code, fixed crash on level assert
tomkidd Aug 9, 2020
4a1abb6
Fix README path
dnicolson Sep 23, 2020
617d7f6
Remove StoreKit framework
dnicolson Sep 23, 2020
253dd5f
Remove get-task-allow entitlement
dnicolson Sep 23, 2020
af0ccc1
Merge pull request #2 from dnicolson/fix-build-process
tomkidd Oct 3, 2020
c05736f
Merge pull request #1 from cpitzak/reduce_img_file_size
tomkidd Oct 3, 2020
370bb27
Add missing header images
dnicolson Oct 4, 2020
9cf6251
Update README.md
dnicolson Oct 4, 2020
a0004a8
Merge pull request #3 from dnicolson/add-missing-header-images
tomkidd Oct 15, 2020
b79286f
Merge pull request #4 from dnicolson/patch-1
tomkidd Oct 15, 2020
886f56b
Update README.md
tomkidd May 30, 2021
ba2f5b1
Create FUNDING.yml
tomkidd May 30, 2021
8131c03
Removed M1 blurb after successful funding
tomkidd Sep 14, 2021
22ff078
Updates for Xcode 13
tomkidd Aug 1, 2022
ac1cf03
Restored original menu art
tomkidd Aug 1, 2022
d69d77b
Update README.md
tomkidd Aug 1, 2022
06976bc
Update project.pbxproj
tomkidd Aug 1, 2022
3a0310c
Add bottom constraints
dnicolson Sep 4, 2022
9f0723b
Adjust constraints
dnicolson Sep 4, 2022
d7b5b33
Aspect fill preset images
dnicolson Sep 4, 2022
24863f9
Fix advanced settings back button
dnicolson Sep 4, 2022
0f96aa2
Merge pull request #6 from dnicolson/fix-advanced-settings-back-button
tomkidd Oct 14, 2022
bd72222
Merge pull request #5 from dnicolson/fix-settings-layout
tomkidd Oct 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 12 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: schnapple
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
87 changes: 87 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
.DS_Store
*xcuserdata/
*build/
*.mode1v3
*.pbxuser
*.xcworkspace
*.moved-aside/
.svn

# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<img align="left" width="100" height="100" src="https://raw.githubusercontent.com/tomkidd/Wolf3D-iOS/master/icon_wolf3d.png">

# Wolfenstein 3D for iOS 11 and tvOS for Apple TV

&nbsp;

This is my update for Wolfenstein 3D for iOS to run on iOS 11, running in modern resolutions including the full width of the iPhone X. I have also made a target and version for tvOS to run on Apple TV

![screenshot](https://raw.githubusercontent.com/tomkidd/Wolf3d-iOS/master/ss_wolf3d.png)

Improvements/Changes

- Compiles and runs in iOS 11 SDK
- Orientation and coordinate system fixed to reflect iOS 8 changes
- C warnings fixed for Xcode 9.3
- Basic MFi controller support
- Deprecated APIs removed and replaced with modern equivalents
- Code locations reorganized and consolodated
- Second project target for tvOS that takes advantage of focus model and removes on-screen controls.

For a rundown of getting the code up and running in iOS 11, I wrote this [lengthy article](http://schnapple.com/wolfenstein-3d-and-doom-on-ios-11/) on the subject. For a rundown of the effort to get it running on tvOS, I wrote a [second lenghty article](http://schnapple.com/wolfenstein-3d-and-doom-on-tvos-for-apple-tv/) on the subject.

[Video of Wolfenstein 3-D running on an iPhone X](https://www.youtube.com/watch?v=O_tC5krFVZ8)

[Video of Wolfenstein 3-D running on an Apple TV](https://www.youtube.com/watch?v=ghkjUi_1Bos)

I have also made apps for [*DOOM*, *DOOM II* and *Final DOOM*](https://github.com/tomkidd/DOOM-iOS), [*Quake*](https://github.com/tomkidd/Quake-iOS), [*Quake II*](https://github.com/tomkidd/Quake2-iOS), [*Quake III: Arena*](https://github.com/tomkidd/Quake3-iOS), [*Return to Castle Wolfenstein*](https://github.com/tomkidd/RTCW-iOS) and [*DOOM 3*](https://github.com/tomkidd/DOOM3-iOS).

Have fun. For any questions I can be reached at [email protected]
Binary file removed __MACOSX/wolf3d/._README.txt
Binary file not shown.
Binary file removed __MACOSX/wolf3d/._readme_iWolf_v1x.txt
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/._wolfiphone.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._fileio.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._files.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._filesystem.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._openal_main.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._opengl_draw.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._opengl_local.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._opengl_main.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._sound.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._sound_local.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._sound_sfx_id.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._sound_stream.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._texture_manager.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._texture_manager.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._unix_file.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/env/._video.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._.DS_Store
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._CreditsViewController.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._CreditsViewController.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._EAGLView.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._EAGLView.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._EpisodeViewController.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._EpisodeViewController.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._Info.plist
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._LegalViewController.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._LegalViewController.m
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._MainMenuViewController.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._MainMenuViewController.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._MissionTableViewCell.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._MissionTableViewCell.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._SettingsViewController.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._SettingsViewController.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._SkillViewController.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._SkillViewController.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._TriviaViewController.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._TriviaViewController.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._UIFontButton.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._UIFontButton.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._UIFontLabel.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._UIFontLabel.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._UITableViewScrolling.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._UITableViewScrolling.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._WolfSlider.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._WolfSlider.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._gles_glue.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._gles_glue.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._hud.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_alerts.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_alerts.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_downloadSOD.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_downloadUserMap.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_loop.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_main.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_mapselector.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_menus.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_qgl.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_store.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_store.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_sys.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._iphone_wolf.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._main.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._wolf3dAppDelegate.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._wolf3dAppDelegate.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._wolf3dViewController.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._wolf3dViewController.m
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/iphone/._wolf3d_Prefix.pch
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/wolf/._wolf_ai_com.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/wolf/._wolf_client_main.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/wolf/._wolf_local.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/wolf/._wolf_math.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/wolf/._wolf_opengl.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/wolf/._wolf_player.c
Binary file not shown.
Binary file removed __MACOSX/wolf3d/code/wolf/._wolf_renderer.h
Binary file not shown.
Binary file removed __MACOSX/wolf3d/scripts/._scrubBase.pl
Binary file not shown.
Binary file added icon_wolf3d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ss_wolf3d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added wolf3d/base/maps/s00.map
Binary file not shown.
Binary file added wolf3d/base/maps/s01.map
Binary file not shown.
Binary file added wolf3d/base/maps/s02.map
Binary file not shown.
Binary file added wolf3d/base/maps/s03.map
Binary file not shown.
Binary file added wolf3d/base/maps/s04.map
Binary file not shown.
Binary file added wolf3d/base/maps/s05.map
Binary file not shown.
Binary file added wolf3d/base/maps/s06.map
Binary file not shown.
Binary file added wolf3d/base/maps/s07.map
Binary file not shown.
Binary file added wolf3d/base/maps/s08.map
Binary file not shown.
Binary file added wolf3d/base/maps/s09.map
Binary file not shown.
Binary file added wolf3d/base/maps/s10.map
Binary file not shown.
Binary file added wolf3d/base/maps/s11.map
Binary file not shown.
Binary file added wolf3d/base/maps/s12.map
Binary file not shown.
Binary file added wolf3d/base/maps/s13.map
Binary file not shown.
Binary file added wolf3d/base/maps/s14.map
Binary file not shown.
Binary file added wolf3d/base/maps/s15.map
Binary file not shown.
Binary file added wolf3d/base/maps/s16.map
Binary file not shown.
Binary file added wolf3d/base/maps/s17.map
Binary file not shown.
Binary file added wolf3d/base/maps/s18.map
Binary file not shown.
Binary file added wolf3d/base/maps/s19.map
Binary file not shown.
Binary file added wolf3d/base/maps/s20.map
Binary file not shown.
Binary file added wolf3d/base/pics/BJCOLLAPSE1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BJCOLLAPSE2PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BJCOLLAPSE3PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BJCOLLAPSE4PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BJOUCHPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BJWAITING0PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BJWAITING1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BOSSPIC1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BOSSPIC2PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BOSSPIC3PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/BOSSPIC4PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/COPYPROTBOXPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/COPYPROTTOPPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_BACKDROPPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_DISKLOADING0PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_DISKLOADING1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_HOWTOUGHPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_JOY1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_JOY2PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_JOYSTICKPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_KEYBOARDPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_MOUSEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/C_WONSPEARPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDPICPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN2PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN3PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN4PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN5PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN6PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN7PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN8PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/ENDSCREEN9PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE1APIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE1BPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE1CPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE2APIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE2BPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE2CPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE3APIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE3BPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE3CPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE4APIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE4BPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE4CPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE5APIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE5BPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE5CPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE6APIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE6BPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE6CPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE7APIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE7BPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE7CPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/FACE8APIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/GATLINGGUNPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/GODMODEFACE0PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/GODMODEFACE1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/GODMODEFACE2PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/GOLDKEYPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/GOTGATLINGPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/GUNPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/IDGUYSPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/KNIFEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/L_BJWINSPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/L_FONTPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/L_GUY0PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/L_GUY1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/MACHINEGUNPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/N_NUMPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/PAUSEDPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/PC13PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SCREDITSPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_CONTROLPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_CURSOR0PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_CURSOR1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_CUSTOMIZEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_DIGITITLEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_FXTITLEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_LOADGAMEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_MOUSELBACKPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_MUSICTITLEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_NOTSELECTEDPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_OPTIONSPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_SAVEGAMEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_SELECTEDPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_SKILL1PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_SKILL2PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_SKILL3PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SC_SKILL4PIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SHIGHSCORESPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/SILVERKEYPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/STATUSBARPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/STITLEPIC.tga
Binary file not shown.
Binary file added wolf3d/base/pics/font1.tga
Binary file not shown.
Binary file added wolf3d/base/pics/font2.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/000.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/001.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/002.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/003.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/004.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/005.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/006.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/007.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/008.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/009.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/010.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/011.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/012.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/013.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/014.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/015.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/016.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/017.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/018.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/019.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/020.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/021.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/022.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/023.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/024.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/025.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/026.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/027.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/028.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/029.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/030.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/031.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/032.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/033.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/034.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/035.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/036.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/037.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/038.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/039.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/040.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/041.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/042.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/043.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/044.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/045.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/046.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/047.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/048.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/049.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/050.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/051.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/052.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/053.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/054.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/055.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/056.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/057.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/058.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/059.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/060.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/061.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/062.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/063.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/064.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/065.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/066.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/067.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/068.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/069.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/070.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/071.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/072.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/073.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/074.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/075.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/076.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/077.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/078.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/079.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/080.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/081.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/082.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/083.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/084.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/085.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/086.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/087.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/088.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/089.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/090.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/091.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/092.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/093.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/094.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/095.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/096.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/097.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/098.tga
Binary file not shown.
Binary file added wolf3d/base/sodsprites/099.tga
Binary file not shown.
Loading