mirror of
https://github.com/Wyrrrd/Gun_Turret_Alerts.git
synced 2026-07-01 20:51:08 +02:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 86820c48c3 | |||
| 037d321604 | |||
| c837b99a01 | |||
| 4c8b05b930 |
@@ -1,4 +1,13 @@
|
|||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.0.7
|
||||||
|
Date: 2024-11-10
|
||||||
|
Optimizations:
|
||||||
|
- Add cleanup of empty global tables
|
||||||
|
- Move global table creation from on_surface_created to on_built_entity to save on event
|
||||||
|
listeners
|
||||||
|
- Review force rename/removal handling
|
||||||
|
- Code cleanup and comments
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 2.0.6
|
Version: 2.0.6
|
||||||
Date: 2024-11-10
|
Date: 2024-11-10
|
||||||
Features:
|
Features:
|
||||||
|
|||||||
+17
-16
@@ -67,6 +67,13 @@ local function add_entity_to_list(event)
|
|||||||
--Whenever an ammo-turret, vehicle or artillery type entity is built, add it to the global table.
|
--Whenever an ammo-turret, vehicle or artillery type entity is built, add it to the global table.
|
||||||
local entity = event.created_entity or event.entity
|
local entity = event.created_entity or event.entity
|
||||||
local index = entity.surface.name.."_"..entity.force.name
|
local index = entity.surface.name.."_"..entity.force.name
|
||||||
|
|
||||||
|
-- Add table if it doesn't exist and a player of this force is connected
|
||||||
|
if entity.force.connected_players[1] and not storage.ammo_entities[index] then
|
||||||
|
storage.ammo_entities[index] = {}
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Add entity to table
|
||||||
if storage.ammo_entities[index] then
|
if storage.ammo_entities[index] then
|
||||||
table.insert(storage.ammo_entities[index], entity)
|
table.insert(storage.ammo_entities[index], entity)
|
||||||
end
|
end
|
||||||
@@ -125,24 +132,12 @@ local function remove_force_from_list(event)
|
|||||||
force = event.source
|
force = event.source
|
||||||
end
|
end
|
||||||
|
|
||||||
if force and not force.connected_players then
|
if force then
|
||||||
|
if not force.valid or (force.valid and table_is_empty(force.connected_players)) then
|
||||||
for surface_name,_ in pairs(game.surfaces) do
|
for surface_name,_ in pairs(game.surfaces) do
|
||||||
storage.ammo_entities[surface_name.."_"..force.name] = nil
|
storage.ammo_entities[surface_name.."_"..force.name] = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
local function add_surface_to_list(event)
|
|
||||||
--Whenever a surface is created, add an empty list to the global table for each force with a connected player.
|
|
||||||
local surface
|
|
||||||
if event.surface_index then
|
|
||||||
surface = game.surfaces[event.surface_index]
|
|
||||||
end
|
|
||||||
|
|
||||||
for _,force in pairs(game.forces) do
|
|
||||||
if surface and surface.valid and not storage.ammo_entities[surface.name.."_"..force.name] and force.connected_players[1] then
|
|
||||||
storage.ammo_entities[surface.name.."_"..force.name] = {}
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -193,7 +188,8 @@ local function generate_alerts()
|
|||||||
ammo_entities = storage.ammo_entities[surface.name.."_"..player.force.name]
|
ammo_entities = storage.ammo_entities[surface.name.."_"..player.force.name]
|
||||||
end
|
end
|
||||||
|
|
||||||
if ammo_entities and not table_is_empty(ammo_entities) then
|
if ammo_entities then
|
||||||
|
if not table_is_empty(ammo_entities) then
|
||||||
for index,entity in pairs(ammo_entities) do
|
for index,entity in pairs(ammo_entities) do
|
||||||
if entity.valid then
|
if entity.valid then
|
||||||
if entity.force == player.force then
|
if entity.force == player.force then
|
||||||
@@ -217,6 +213,7 @@ local function generate_alerts()
|
|||||||
if inventory and get_ammo_flag[mode] then
|
if inventory and get_ammo_flag[mode] then
|
||||||
if entity.type == "ammo-turret" or entity.type == "artillery-turret" or entity.type == "artillery-wagon" then
|
if entity.type == "ammo-turret" or entity.type == "artillery-turret" or entity.type == "artillery-wagon" then
|
||||||
ammo_flag = get_ammo_flag[mode](inventory, player_threshold)
|
ammo_flag = get_ammo_flag[mode](inventory, player_threshold)
|
||||||
|
-- Automated amme count override (if activated)
|
||||||
if auto_full and entity.prototype.automated_ammo_count then
|
if auto_full and entity.prototype.automated_ammo_count then
|
||||||
if entity.prototype.automated_ammo_count < player_threshold then
|
if entity.prototype.automated_ammo_count < player_threshold then
|
||||||
ammo_flag = get_ammo_flag[mode](inventory, entity.prototype.automated_ammo_count)
|
ammo_flag = get_ammo_flag[mode](inventory, entity.prototype.automated_ammo_count)
|
||||||
@@ -237,9 +234,14 @@ local function generate_alerts()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
-- Cleanup if entity is invalid
|
||||||
table.remove(ammo_entities, index)
|
table.remove(ammo_entities, index)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
else
|
||||||
|
-- Cleanup if table is empty
|
||||||
|
storage.ammo_entities[surface.name.."_"..player.force.name] = nil
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -258,7 +260,6 @@ script.on_event(defines.events.on_player_changed_force, remove_force_from_list)
|
|||||||
script.on_event(defines.events.on_force_created, add_force_to_list)
|
script.on_event(defines.events.on_force_created, add_force_to_list)
|
||||||
script.on_event(defines.events.on_forces_merged, remove_force_from_list)
|
script.on_event(defines.events.on_forces_merged, remove_force_from_list)
|
||||||
|
|
||||||
script.on_event(defines.events.on_surface_created, add_surface_to_list)
|
|
||||||
script.on_event(defines.events.on_surface_renamed, remove_surface_from_list)
|
script.on_event(defines.events.on_surface_renamed, remove_surface_from_list)
|
||||||
script.on_event(defines.events.on_pre_surface_deleted, remove_surface_from_list)
|
script.on_event(defines.events.on_pre_surface_deleted, remove_surface_from_list)
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Gun_Turret_Alerts",
|
"name": "Gun_Turret_Alerts",
|
||||||
"version": "2.0.6",
|
"version": "2.0.7",
|
||||||
"title": "Ammo Alerts",
|
"title": "Ammo Alerts",
|
||||||
"author": "Wyrrrd",
|
"author": "Wyrrrd",
|
||||||
"factorio_version": "2.0",
|
"factorio_version": "2.0",
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ gun-turret-alerts-mode-individually=Individually
|
|||||||
gun-turret-alerts-mode-selected=Selected
|
gun-turret-alerts-mode-selected=Selected
|
||||||
|
|
||||||
[gun-turret-alerts]
|
[gun-turret-alerts]
|
||||||
message-empty=__1__ out of ammo
|
message-empty=__1__ is out of ammo
|
||||||
message-low=__1__ low ammo
|
message-low=__1__ is low on ammo
|
||||||
|
|
||||||
[virtual-signal-name]
|
[virtual-signal-name]
|
||||||
ammo-icon-red=Out of ammo signal
|
ammo-icon-red=Out of ammo signal
|
||||||
|
|||||||
Reference in New Issue
Block a user