b0c83af092
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>
283 lines
6.2 KiB
GDScript
283 lines
6.2 KiB
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
const ROOT := "res://addons/netfox"
|
|
var SETTINGS: Array[Dictionary] = [
|
|
{
|
|
# Setting this to false will make Netfox keep its settings even when
|
|
# disabling the plugin. Useful for developing the plugin.
|
|
"name": "netfox/general/clear_settings",
|
|
"value": true,
|
|
"type": TYPE_BOOL
|
|
},
|
|
{
|
|
"name": "netfox/general/use_raw_commands",
|
|
"value": false,
|
|
"type": TYPE_BOOL
|
|
},
|
|
# Logging
|
|
NetfoxLogger._make_setting("netfox/logging/netfox_log_level"),
|
|
# Time settings
|
|
{
|
|
"name": "netfox/time/tickrate",
|
|
"value": 30,
|
|
"type": TYPE_INT
|
|
},
|
|
{
|
|
"name": "netfox/time/max_ticks_per_frame",
|
|
"value": 8,
|
|
"type": TYPE_INT
|
|
},
|
|
{
|
|
"name": "netfox/time/recalibrate_threshold",
|
|
"value": 8.0,
|
|
"type": TYPE_FLOAT
|
|
},
|
|
{
|
|
"name": "netfox/time/stall_threshold",
|
|
"value": 1.0,
|
|
"type": TYPE_FLOAT
|
|
},
|
|
{
|
|
# Time to wait between time syncs
|
|
"name": "netfox/time/sync_interval",
|
|
"value": 0.25,
|
|
"type": TYPE_FLOAT,
|
|
"hint": PROPERTY_HINT_RANGE,
|
|
"hint_string": "%s,2,or_greater" % [_NetworkTimeSynchronizer.MIN_SYNC_INTERVAL]
|
|
},
|
|
{
|
|
"name": "netfox/time/sync_samples",
|
|
"value": 8,
|
|
"type": TYPE_INT
|
|
},
|
|
{
|
|
"name": "netfox/time/sync_adjust_steps",
|
|
"value": 8,
|
|
"type": TYPE_INT
|
|
},
|
|
{
|
|
# !! Deprecated
|
|
# Time to wait between time sync samples
|
|
"name": "netfox/time/sync_sample_interval",
|
|
"value": 0.1,
|
|
"type": TYPE_FLOAT
|
|
},
|
|
{
|
|
"name": "netfox/time/sync_to_physics",
|
|
"value": false,
|
|
"type": TYPE_BOOL
|
|
},
|
|
{
|
|
"name": "netfox/time/max_time_stretch",
|
|
"value": 1.25,
|
|
"type": TYPE_FLOAT,
|
|
"hint": PROPERTY_HINT_RANGE,
|
|
"hint_string": "1,2,0.05,or_greater"
|
|
},
|
|
{
|
|
"name": "netfox/time/tickrate_mismatch_action",
|
|
"value": NetworkTickrateHandshake.WARN,
|
|
"type": TYPE_INT,
|
|
"hint": PROPERTY_HINT_ENUM,
|
|
"hint_string": "Warn,Disconnect,Adjust,Signal"
|
|
},
|
|
{
|
|
"name": "netfox/time/suppress_offline_peer_warning",
|
|
"value": false,
|
|
"type": TYPE_BOOL
|
|
},
|
|
# Rollback settings
|
|
{
|
|
"name": "netfox/rollback/enabled",
|
|
"value": true,
|
|
"type": TYPE_BOOL
|
|
},
|
|
{
|
|
"name": "netfox/rollback/history_limit",
|
|
"value": 64,
|
|
"type": TYPE_INT
|
|
},
|
|
{
|
|
"name": "netfox/rollback/input_redundancy",
|
|
"value": 3,
|
|
"type": TYPE_INT
|
|
},
|
|
{
|
|
"name": "netfox/rollback/display_offset",
|
|
"value": 0,
|
|
"type": TYPE_INT,
|
|
"hint": PROPERTY_HINT_RANGE,
|
|
"hint_string": "0,4,or_greater"
|
|
},
|
|
{
|
|
"name": "netfox/rollback/input_delay",
|
|
"value": 0,
|
|
"type": TYPE_INT,
|
|
"hint": PROPERTY_HINT_RANGE,
|
|
"hint_string": "0,4,or_greater"
|
|
},
|
|
{
|
|
"name": "netfox/rollback/enable_input_broadcast",
|
|
"value": false,
|
|
"type": TYPE_BOOL
|
|
},
|
|
{
|
|
"name": "netfox/rollback/enable_diff_states",
|
|
"value": true,
|
|
"type": TYPE_BOOL
|
|
},
|
|
{
|
|
"name": "netfox/rollback/full_state_interval",
|
|
"value": 24,
|
|
"type": TYPE_INT,
|
|
"hint": PROPERTY_HINT_RANGE,
|
|
"hint_string": "0,60,or_greater"
|
|
},
|
|
# StateSynchronizer
|
|
{
|
|
"name": "netfox/state_synchronizer/enable_diff_states",
|
|
"value": true,
|
|
"type": TYPE_BOOL
|
|
},
|
|
{
|
|
"name": "netfox/state_synchronizer/history_limit",
|
|
"value": 64,
|
|
"type": TYPE_INT
|
|
},
|
|
{
|
|
"name": "netfox/state_synchronizer/full_state_interval",
|
|
"value": 24,
|
|
"type": TYPE_INT,
|
|
"hint": PROPERTY_HINT_RANGE,
|
|
"hint_string": "0,60,or_greater"
|
|
},
|
|
# Events
|
|
{
|
|
"name": "netfox/events/enabled",
|
|
"value": true,
|
|
"type": TYPE_BOOL
|
|
}
|
|
]
|
|
|
|
const AUTOLOADS: Array[Dictionary] = [
|
|
{
|
|
"name": "NetworkTime",
|
|
"path": ROOT + "/network-time.gd"
|
|
},
|
|
{
|
|
"name": "NetworkTimeSynchronizer",
|
|
"path": ROOT + "/network-time-synchronizer.gd"
|
|
},
|
|
{
|
|
"name": "NetworkRollback",
|
|
"path": ROOT + "/rollback/network-rollback.gd"
|
|
},
|
|
{
|
|
"name": "NetworkEvents",
|
|
"path": ROOT + "/network-events.gd"
|
|
},
|
|
{
|
|
"name": "NetworkPerformance",
|
|
"path": ROOT + "/network-performance.gd"
|
|
},
|
|
{
|
|
"name": "RollbackSimulationServer",
|
|
"path": ROOT + "/servers/rollback-simulation-server.gd"
|
|
},
|
|
{
|
|
"name": "NetworkHistoryServer",
|
|
"path": ROOT + "/servers/network-history-server.gd"
|
|
},
|
|
{
|
|
"name": "NetworkSynchronizationServer",
|
|
"path": ROOT + "/servers/network-synchronization-server.gd"
|
|
},
|
|
{
|
|
"name": "NetworkIdentityServer",
|
|
"path": ROOT + "/servers/network-identity-server.gd"
|
|
},
|
|
{
|
|
"name": "NetworkCommandServer",
|
|
"path": ROOT + "/servers/network-command-server.gd"
|
|
}
|
|
]
|
|
|
|
const TYPES: Array[Dictionary] = [
|
|
{
|
|
"name": "RollbackSynchronizer",
|
|
"base": "Node",
|
|
"script": ROOT + "/rollback/rollback-synchronizer.gd",
|
|
"icon": ROOT + "/icons/rollback-synchronizer.svg"
|
|
},
|
|
{
|
|
"name": "StateSynchronizer",
|
|
"base": "Node",
|
|
"script": ROOT + "/state-synchronizer.gd",
|
|
"icon": ROOT + "/icons/state-synchronizer.svg"
|
|
},
|
|
{
|
|
"name": "TickInterpolator",
|
|
"base": "Node",
|
|
"script": ROOT + "/tick-interpolator.gd",
|
|
"icon": ROOT + "/icons/tick-interpolator.svg"
|
|
},
|
|
{
|
|
"name": "RewindableAction",
|
|
"base": "Node",
|
|
"script": ROOT + "/rewindable-action.gd",
|
|
"icon": ROOT + "/icons/rewindable-action.svg"
|
|
},
|
|
{
|
|
"name": "PredictiveSynchronizer",
|
|
"base": "Node",
|
|
"script": ROOT + "/rollback/predictive-synchronizer.gd",
|
|
"icon": ROOT + "/icons/predictive-synchronizer.svg"
|
|
},
|
|
]
|
|
|
|
func _enter_tree():
|
|
for setting in SETTINGS:
|
|
add_setting(setting)
|
|
|
|
for autoload in AUTOLOADS:
|
|
if not has_autoload(autoload.name):
|
|
add_autoload_singleton(autoload.name, autoload.path)
|
|
|
|
for type in TYPES:
|
|
add_custom_type(type.name, type.base, load(type.script), load(type.icon))
|
|
|
|
func _exit_tree() -> void:
|
|
if ProjectSettings.get_setting(&"netfox/general/clear_settings", false):
|
|
for setting in SETTINGS:
|
|
remove_setting(setting)
|
|
|
|
for autoload in AUTOLOADS:
|
|
if has_autoload(autoload.name):
|
|
remove_autoload_singleton(autoload.name)
|
|
|
|
for type in TYPES:
|
|
remove_custom_type(type.name)
|
|
|
|
func add_setting(setting: Dictionary) -> void:
|
|
if ProjectSettings.has_setting(setting.name):
|
|
return
|
|
|
|
ProjectSettings.set_setting(setting.name, setting.value)
|
|
ProjectSettings.set_initial_value(setting.name, setting.value)
|
|
ProjectSettings.add_property_info({
|
|
"name": setting.get("name"),
|
|
"type": setting.get("type"),
|
|
"hint": setting.get("hint", PROPERTY_HINT_NONE),
|
|
"hint_string": setting.get("hint_string", "")
|
|
})
|
|
|
|
func remove_setting(setting: Dictionary) -> void:
|
|
if not ProjectSettings.has_setting(setting.name):
|
|
return
|
|
|
|
ProjectSettings.clear(setting.name)
|
|
|
|
func has_autoload(name: String) -> bool:
|
|
return ProjectSettings.has_setting("autoload/" + name)
|