2024-11-09 06:00:12 +02:00
ACTIVE NOTES:
2024-08-28 07:36:02 +02:00
2024-11-08 05:27:12 +02:00
2024-11-09 06:00:12 +02:00
- What happens to multiple unique spawn hosts on "main force" when they go to a new planet?
- They get unique spawn areas, but they have to coordinate regarding the landing pad, OR they can install a mod to have multiple but it is still up to them to coordinate.
2024-11-08 05:27:12 +02:00
2024-11-09 06:00:12 +02:00
- Change permissions to be enabled/disabled when entering/leaving the holding pen (use custom surface changed event?)
2024-11-08 05:27:12 +02:00
2024-11-09 06:00:12 +02:00
- Get rid of storage.buddy_pairs ?? Is basically duplicate info inside the spawns right?
2024-09-10 17:40:19 +02:00
------------------------------------------------------------------------------------------------------------------------
BACKLOG:
2024-09-07 03:10:29 +02:00
2024-09-19 02:11:51 +02:00
Minor:
2024-09-14 19:59:28 +02:00
- If dead when resetting spawn... possibly delay the opening of the welcome GUI or block spawning until character is spawned?
2024-09-19 20:05:29 +02:00
- Expose old enemy scaling as an option? And/or remove unnecessary checks/logs
2024-09-23 04:18:22 +02:00
- Refresh players in admin controls when dropdown is clicked
Performance:
- User on_nth_tick for any tick % (modulo) operations.
- SeparateSpawnsGenerateChunk should only search for closest spawn once and pass to sub functions!
- Rework world eater to use less find_entities_filtered
2024-09-11 18:49:23 +02:00
2024-09-19 02:11:51 +02:00
Major:
2024-11-04 20:57:36 +02:00
- Space Age Support (In Progress)
2024-09-23 19:00:37 +02:00
2024-09-17 20:19:41 +02:00
2024-09-23 04:18:22 +02:00
------------------------------------------------------SPACE AGE---------------------------------------------------------
- Map Settings changes?
- Pollution changes (regrowth)?
- Enemy changes?
- Landing pad locations per FORCE limited to 1?
- Spawner health tied to evolution?
2024-10-05 15:44:56 +02:00
- Source: https://forums.factorio.com/115737
- Specifics that I might need to investigate:
Added LuaPlayer::land_on_planet() method.
Added LuaPlayer::enter_space_platform() and leave_space_platform() method.
Added cargo-landing-pad prototype.
Added space-platform-starter-pack, space-location, planet and space-connection prototypes.
Added surface-property and surface prototypes.
Added new controller type (remote), which is to build space platforms, so it allows ghost building but not any physical manipulation.
Added LuaPlayer::physical_surface, physical_surface_index, physical_vehicle and physical_position read.
LuaGameScript::print, LuaPlayer::print, LuaSurface::print and LuaForce::print no longer accept Color as a second parameter.
Added LuaSurface::set_property() and get_property() methods.
Added LuaSurface::execute_lightning() method.
Added LuaSurface::create_global_electric_network() and destroy_global_electric_network() methods.
Added LuaSurface::has_global_electric_network read.
Added LuaSurface::platform read.
Added LuaSurface::pollutant_type read.
Added airborne-pollutant prototype and changed various pollution related properties to support multiple pollution types.
Added LuaForce::set_surface_hidden() and get_surface_hidden() methods.
Added LuaSurfacePrototype::surface_properties read.
Added on_player_controller_changed event.
Added LuaGameScript::technology_notifications_enabled (read/write).
Added LuaForce::copy_from() and copy_chart() methods.
2024-09-10 17:40:19 +02:00
------------------------------------------------------------------------------------------------------------------------
2024-08-28 07:36:02 +02:00
2024-08-13 20:25:47 +02:00
Other Ideas, Not Committed:
2024-10-21 19:48:42 +02:00
- Look into checking if a force has a chunk visible (for regrowth)
2024-08-21 20:03:48 +02:00
- Add option to spawn on existing chunks (look for chunks with any entities in them, or use regrowth logic)
2024-09-21 03:39:01 +02:00
- Add option for spawn pen to be on a specified surface (not sure this serves any real purpose)
2024-08-21 20:03:48 +02:00
- Change "search for ungenerated spawn point" to be a "roll" button that the player can re-roll? Maybe it shows on the map in an icon where they might go first?
- Make players join a "holding_pen" force instead of the main force? Might cause issues with chat and vision?
- Separate chest sharing and electricity ()
2024-08-23 20:16:11 +02:00
- Consider scrapping any overlapping mod settings from the config. ONLY keep the part that can't easily be done in the mod settings menu... NOT SURE about this.
2024-08-25 03:06:43 +02:00
- Change enable_shared_team_vision to allow players to change this per player (like BNO)
- Change enable_friendly_fire to be per team?
2024-09-05 19:18:47 +02:00
- Allow players to spawn "near" an existing player (by request)
2024-09-10 17:40:19 +02:00
- Change regrowth to be list of surfaces indexed by surface name?
2024-09-11 18:49:23 +02:00
- Figure out how to reset player inventory on player reset to avoid extra items? (save and load items?)
- Work on space ex support?
2024-09-12 03:20:00 +02:00
- Profile regrowth and try to improve performance ?
2024-09-17 20:19:41 +02:00
- Possibly adjust easy/medium evo factors on new player joined?
2024-09-19 02:11:51 +02:00
- Convert regrowth to a proper mod
2024-09-21 03:39:01 +02:00
- Create shared electricty with a LIMITED output transfer rate using a custom accumulator?
2024-09-23 04:18:22 +02:00
- Cleanup offline protection (Lots of commented out code)
- Custom tips and tricks??
2024-08-21 20:03:48 +02:00
--------------------------------------------------------DONE------------------------------------------------------------
2024-09-13 02:58:19 +02:00
- First setup the mod settings and lua global settings.
- Test out removing the creation of a custom surface and ensure map settings can be set as needed. Possibly create a separate surface, or just a separate area away from the origin, for starting players.
- Start copying in the core pieces required for the primary spawning mechanic.
- Document config and mod settings using Lua annotation as a custom class
- Document global ocore as a custom class (with subclasses/types as needed)
- Add multiple surfaces to options/settings [As a single boolean.]
- Convert scenario to a mod.
- Add multiple surfaces to Spawn GUI (Drop down selection?)
- Configurable welcome/server messages in mod settings.
- Check and update all functions using surfaces to clearly use either the LuaSurface obj OR a string name.
- Create server settings admin GUI tab
- Figure out how to define custom lua table/data structs to make syntax/linting work?
- Setup multiplayer testing using multiple instances and some batch files.
- Change Near/Far buttons to radio selection w/ text explanation and have a single Spawn button.
- Refactor the spawn menu GUI (don't destroy the menu unless we need to, refresh only the elements we need to, save data to a global using tags?)
- Remove separate buddy spawn menu?
- Remove the shared spawn separate GUI window?
- Redo DisplayBuddySpawnRequestMenu and DisplayBuddySpawnWaitMenu and move their events to the new event handlers
- Refresh the spawn controls GUI when player accepts/rejects
- Redo FindUngeneratedCoordinates to pick a random direction, and use the distance to get a starting point, instead of multiple tries.
- Fix all GUI styling (buttons outside of content)
- Force enable_world_eater to require enable_regrowth
2024-09-10 17:40:19 +02:00
- Add warning for modifying surface settings after gameplay has started
2024-09-13 02:58:19 +02:00
- Tooltips for GUI elements in spawn menu options!
- Check all settings to see which CAN'T be changed during runtime. Possibly move these to startup.
- FIGURE OUT CHUNK NOT IN MAP REGROWTH ISSUE!
- Add validation for default starting surface name
- Make server info headings consistent / Add heading for spawn controls (change button?)
- Confirm regrowth should add new chunks when found (not only on chunk generate?)
- Make disable main team setting work (hide radio button)
- Support run time toggling of enable_shared_team_vision
- Support run time toggling of enable_friendly_fire
2024-09-11 18:49:23 +02:00
- Watch for chunks being generated to be able to move the player to their spawn as soon as it is done with the last chunk.
- If this is their first spawn, give them items. Otherwise don't give new items and don't clear items either?
- Change enable_spawning_on_other_surfaces to a start up setting?
2024-09-13 02:58:19 +02:00
- Test out space expansion
- Compare GUI mod button icons to space ex (looks better??)
- Create surface blacklist setting.
- Enable/Disable and show information about shared spawn based on shared spawn dropdown interactions.
- Ensure updates to regrowth surfaces don't cause errors (update indexes)
- Confirm regrowth does or does not delete chunks with robots in them?
- Show the surface name in shared spawn join GUI
2024-09-14 19:59:28 +02:00
- Show the surface name in the share spawn controls tab
- Add rich text map location in spawn controls tab for current home location
- Move sharedspawns data under unique spawns
- "uniqueSpawns" should have a "primary" flag and be indexed by surface FIRST
- Make respawn locations first be indexed by player, then surface
2024-09-15 04:23:59 +02:00
- Offline protection re-implement!
2024-09-15 19:50:07 +02:00
- Resolve regrowth issue with radars and confirm that when we mark chunks for removal, they can be refreshed still. (trace logic!)
- Move "buddy" info to unique_spawns as well.
2024-09-17 20:19:41 +02:00
- Fix search vector to use more variable vector'ing, always normalize vector, and then ensure the other reliant functions work still.
- Add regrowth settings GUI tab? Not sure how the other settings fit in with a dedicated regrowth tab? Need to be able to enable/disable other surfaces during runtime?
2024-09-19 02:11:51 +02:00
- Test multiple enemy forces to provide a way to scale evolution locally (need to continually set the evo factor back)
- Change main_force_name to a startup setting! New players in spawn area should stay on default "player" force to avoid mod conflicts on player init?
2024-09-19 19:19:57 +02:00
- In spawn controls, add a note if spawn is full (and maybe disable the shared spawn checkbox?)
- Add rich text map location links for new spawns (print to chat)
- Add in square bases again
- TEST resizing spawn areas and moat sizes!
2024-09-19 20:05:29 +02:00
- Create a function to create secondary uniqueSpawns for the same player
2024-09-21 03:39:01 +02:00
- Expose primary AND secondary spawn info in spawn controls GUI tab
- Shared items (proper)
- Shared electricity (proper) (with configurable settings)
- Add a show current respawn location button (same as show spawn location)
2024-09-23 04:18:22 +02:00
- Expose some settings for adjusting easy and medium enemy evolution values
- Add FAQ for enemy modifications
- Add FAQ for item and energy sharing
- FIX GetNextPlayerIndex!
- Lots of localizations!
2024-09-23 04:21:50 +02:00
- List all TO-DOs in code here.
- Remove testing surfaces before release!
2024-09-23 05:04:52 +02:00
- Change default surface selection to be the default surface if multiple are enabled
2024-09-23 19:00:37 +02:00
- Test and make sure scenario settings overrides get written back to mod settings to avoid any out of sync settings.
- Test teleporting to other surfaces
- Test on_player_changed_surface
2024-09-24 04:48:08 +02:00
- Run the profiler
- Pull out general spawn config from surfaces config
- Redo resource placement to be simpler (and make a linear layout for square base)
2024-09-25 04:28:45 +02:00
- Default to selecting SELF in admin controls player dropdown?
2024-11-09 06:00:12 +02:00
- Add refresh chunks around spidertrons based on their vision
- Allow players to restart at anytime via GUI button (configurable setting by admin)