GithubHelp home page GithubHelp logo

budak7273 / freesamples Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 2.71 MB

Satisfactory mod. Recieve some free sample items when you unlock new technologies.

Home Page: https://ficsit.app/mod/FreeSamples

C# 12.41% C++ 87.59%
archipelago satisfactory satisfactory-game-mod

freesamples's Introduction

Free Samples

Multiplayer compatible!

Whenever you unlock a technology that grants you a recipe, receive a configurable amount of 'free samples' of that recipe. For equipment and component crafting recipes, this is the output product. For buildings, this is the ingredients for the building. Every player in multiplayer gets a copy of the free sample items.

For example, under the mod's default settings, unlocking the Nobelisk Detonator MAM node will give you one Nobelisk Detonator and 50 Nobelisk, unlocking the Jump Pads T2 milestone will give you the ingredients to construct 5 Jump Pads and 5 U-Jelly Landing Pads, etc.

The free sample packages will be inserted directly into your player inventory. If there isn't enough space, they will be held for claiming later. You can also opt to require manually claiming them via the /claimSamples chat command, and use /claimSamples force to drop them near you in crates if they can't fit in your inventory. You can see what packages you have pending via the /listUnclaimed chat command.

Should be compatible with all mods that add recipes and schematics, including those that do so via runtime content generation like ContentLib. The mod does not retroactively provide samples for schematics unlocked before it was installed.

Inspired by Archipelago's Free Samples system for Factorio

Configuration

Customize the following via the mod's config options:

  • If the mod's functionality is enabled at all
  • The amount of free samples you receive
    • Separate quantity controls for equipment items, buildings, and components
    • By default: 1 equipment item, 5 sets of building ingredients, and 1 stack of component items
  • If items will be given automatically, or if you must claim them via the /claimSamples chat command.
    • By default: Items automatically given
  • How often the mod will attempt to give you items (or remind you about items you haven't claimed yet)
    • By default: Every 60 seconds, or whenever a new schematic is unlocked.
    • Set to 601 seconds to turn off the reminder timer.
  • If 'force claimed' samples will be dropped as crates or item pickups
    • By default: Dropped as crates
  • If the mod will give you radioactive items as samples
    • By default: Exclude radioactive items
  • Specific Schematics, Recipes, and Items to exclude from free sample consideration
    • By default: Don't supply the construction cost of the Space Elevator, and don't supply samples when you unlock the default recipes for Project Parts.
    • Easy-to-use config interface helps you make these exclude lists yourself by searching for loaded recipes
    • Screenshot of widget

Known Bugs

None, but the following base-game bugs affect this mod's functionality:

Questions? Suggestions? Join the Nog's Mods Discord server or leave an issue on the GitHub issues page (slower response time)

For Developers

This mod automatically functions with every schematic except those granted before the subsystem initializes, so schematics rewarded very early (ex. Starting Recipes) will not be considered for samples. You can also add schematics, recipes, and items to the mod's exclude lists via the C++ or Blueprint API, or via specially-named fields on your Game World Module (see dedicated header below).

The source code is public.

By enabling debug mode you gain access to the chat command /cc_resetSamples which will reset the subsystem's saved reward data, as well as the caller's. This is useful for testing the mod's functionality. You can also use /cc_samplesDebugData to send info to the logs about the global and command caller's samples. Using Mam Enhancer's debug mode makes it very easy to grant/revoke schematics for testing the exclude lists, for example.

This mod implements some features in C++ to allow for C++ only mods to affect the mod's configuration. Highlights include:

  • A getter exists for the mod's subsystem, which is backed by a C++ class
  • The config struct C++ header is generated
  • Mods can interact with the subsystem's ignore lists to add/remove items from them separate from the user's selected configuration options

Zero Dependency Interaction

If you don't want your mod's code to in any way reference FreeSamples but you still wish to influence its behavior, you can fields on your mod's Root Game World Module with specific names and types. FreeSamples will check all mods' Root Game World Modules for fields of the following names at Game World Module Initialization time:

  • TArray<TSoftClassPtr<UObject>> FreeSamplesAPI_SkipSchematics
  • TArray<TSoftClassPtr<UObject>> FreeSamplesAPI_SkipRecipes
  • TArray<TSoftClassPtr<UObject>> FreeSamplesAPI_SkipItems
  • TMap<TSoftClassPtr<UObject>, int> FreeSamplesAPI_ItemQuantityOverrides

If any of these fields are found, the mod will use them to determine which schematics, recipes, and items to skip when generating samples, and will use the quantity overrides to determine how many of each item to give.

In order to interface with FreeSamples in this manner, simply create a field on your mod's Root Game World Module with one of the above names and populate it with the values you wish to be skipped or overridden. FreeSamples will use reflection to find and process these values at runtime. Do note that the game will crash if you have a field with this name that does not match the type above. (ex. an array of Booleans instead of Soft Class Pointers)

Soft Class References are used so that runtime-generated content (ex. ContentLib) can be listed before it is created.

Example: (TMap of TSoftClassPtr<UFGItemDescriptor> to Integer in blueprint)

Power Shard example

Future Plans

  • Ability to add arbitrary item packages to the sample system (that aren't associated with schematics)

freesamples's People

Contributors

budak7273 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.