Files
shawn b0c83af092 Fresh start: replace with naxIO/netfox-cs-sample foundation
Complete replacement of the tactical-shooter project with the
netfox-cs-sample (MIT) — a CS 1.6 inspired multiplayer FPS built
with Godot 4 and netfox.

## What's new
- Full CS-style gameplay: teams (T/CT), rounds, economy, buy menu
- 6 weapons: Knife, Glock, USP, AK-47, M4A1, AWP
- Bomb plant/defuse with 2 bombsites
- Flashbang & smoke grenades
- Proper netfox rollback netcode at 64 tick
- Network popup UI for host/join
- HUD, crosshair, round timer, scoreboard
- All netfox singletons registered as autoloads (works in exported builds)

## Architecture
- Listen-server (host from client, no dedicated server binary)
- Multiplayer-fps game lives at examples/multiplayer-fps/
- Netfox addons registered as autoloads for exported build compat
- Godot 4.7 with Forward+ renderer

## Removed
- Old headless-server architecture (client_main, server_main, player.gd, etc.)
- Custom netfox bootstrap with ENet fallback
- Old ChaffGames FPS template (2,420 lines, 844 KB)
- SimulationServer GDExtension stub
- Godot-jolt physics (netfox sample uses default Godot physics)
- Duplicate weapon_data.gd, anti_cheat.gd, round_manager.gd, etc.
- Server browser API Python venv (87 MB)
- test_range map and modular assets

## Preserved
- Git history
- Server config at config/default_server_config.cfg
- Windows export preset
- Build directory (gitignored)

Co-authored-by: naxIO <naxIO@users.noreply.github.com>
2026-07-02 20:55:20 -04:00

81 lines
2.7 KiB
YAML

site_name: netfox
site_url: 'https://foxssake.github.io/netfox/'
theme:
name: readthedocs
custom_dir: docs/custom_theme/
extra_css:
- css/version-selector.css
- css/twemoji.css
plugins:
- plantuml:
puml_url: !ENV [PLANTUML_URL, "http://www.plantuml.com/plantuml/"]
theme:
enabled: false
interaction:
enabled: false
markdown_extensions:
- admonition
- attr_list
- def_list
- md_in_html
- pymdownx.details
- pymdownx.highlight
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- 'index.md'
- 'upgrading.md'
- 'made-with-netfox.md'
- 'external-tutorials.md'
- 'press-kit.md'
- 'contributors.md'
- netfox:
- Tutorials:
- 'netfox/tutorials/responsive-player-movement.md'
- 'netfox/tutorials/input-gathering-tips-and-tricks.md'
- 'netfox/tutorials/predicting-input.md'
- 'netfox/tutorials/using-rollbacksynchronizer-without-inputs.md'
- 'netfox/tutorials/modifying-objects-during-rollback.md'
- 'netfox/tutorials/configuring-properties-from-code.md'
- 'netfox/tutorials/rollback-caveats.md'
- 'netfox/tutorials/interpolation-caveats.md'
- Concepts:
- 'netfox/concepts/servers-clients-ownership.md'
- 'netfox/concepts/authoritative-servers.md'
- Guides:
- 'netfox/guides/logging.md'
- 'netfox/guides/network-time.md'
- 'netfox/guides/network-time-synchronizer.md'
- 'netfox/guides/network-events.md'
- 'netfox/guides/interpolators.md'
- 'netfox/guides/property-paths.md'
- 'netfox/guides/network-rollback.md'
- 'netfox/guides/network-performance.md'
- 'netfox/guides/network-command-server.md'
- 'netfox/guides/network-schemas.md'
- 'netfox/guides/visibility-management.md'
- 'netfox/guides/netfox-sharp.md'
- Nodes:
- 'netfox/nodes/tick-interpolator.md'
- 'netfox/nodes/rollback-synchronizer.md'
- 'netfox/nodes/predictive-synchronizer.md'
- 'netfox/nodes/state-synchronizer.md'
- 'netfox/nodes/rewindable-action.md'
- netfox.noray:
- Guides:
- 'netfox.noray/guides/noray.md'
- 'netfox.noray/guides/packet-handshake.md'
- netfox.extras:
- Guides:
- 'netfox.extras/guides/physics.md'
- 'netfox.extras/guides/network-simulator.md'
- 'netfox.extras/guides/base-net-input.md'
- 'netfox.extras/guides/network-weapon.md'
- 'netfox.extras/guides/rewindable-state-machine.md'
- 'netfox.extras/guides/rewindable-random-number-generator.md'
- 'netfox.extras/guides/window-tiler.md'