Home

Awesome

<p align="center"><img src="Media/banner.png"/></p> <br> <p align="center"> <a style="text-decoration:none"> <img src="https://img.shields.io/github/package-json/v/FronkonGames/GameWork-Foundation?style=flat-square" alt="version" /> </a> <a style="text-decoration:none"> <img src="https://img.shields.io/github/license/FronkonGames/GameWork-Foundation?style=flat-square" alt="license" /> </a> <a style="text-decoration:none"> <img src="https://img.shields.io/github/languages/top/FronkonGames/GameWork-Foundation?style=flat-square" alt="top language" /> </a> <a style="text-decoration:none"> <img src="https://img.shields.io/codacy/grade/5ee510ac2f9d411583a0eb248744d75f?style=flat-square" alt="code quality" /> </a> </p>

A set of code useful for developing Unity based games. It is independent of any architecture, so you can use it together with your favorite framework.

These are the foundations on which Game:Work Core is built.

🎇 Features

🔧 Requisites

⚙️ Installation

Editing your 'manifest.json'

{
  ...
  "dependencies":
  {
    ...
    "FronkonGames.GameWork.Foundation": "git+https://github.com/FronkonGames/GameWork-Foundation.git"
  }
  ...
}

Git

Just clone the repository into your Assets folder:

git clone https://github.com/FronkonGames/GameWork-Foundation.git 

Zip

Download the latest release and unzip it into the Assets directory.

🚀 Use

The functionality is divided into folders, this is its structure:

|
|\_Runtime......................... Utilities for the game.
|   |\_Algorithms.................. Algorithms.
|   |    \_Structures.............. Data structures.
|   |\_Attributes.................. Attributes for fields and class properties.
|   |\_Components.................. Components.
|   |\_Development................. Developer utilities.
|   |   |\_Check................... Assert extension.
|   |   |\_Console................. Development console.
|   |   |\_Draw.................... Utilities for drawing gameplay information.
|   |   |\_Profiling............... To find bottlenecks.
|   |    \_Prototype............... Useful components for prototypes.
|   |\_Extensions.................. Utility extensions.
|   |   |\_System.................. C# extensions.
|   |    \_Unity................... Unity extensions.
|   |\_Math........................ Mathematical utilities.
|   |\_Patterns.................... Design patterns.
|   |   |\_Behavioral.............. Behavioural patterns.
|   |   |\_Creational.............. Creation patterns.
|   |    \_Structural.............. Structure patterns.
|    \_Utils....................... Utilities.
|
|\_Editor.......................... Editor utilities.
|   |\_Drawers..................... Custom attribute viewers.
|   |\_Fonts....................... Font for debug.
|    \_Inspector................... Editor appearance utilities.
|
|\_Settings........................ Project settings.
|\_Demos........................... Demo scenes.
|\_Media........................... Misc resources.
 \_Test............................ Unit tests code.

Check the comments for each file for more information.

Attributes

<table> <tr><th align="left">
[Title("Attributes Demo")]
</th><th><img src="Media/attributes.title.png"/></th></tr><tr><th align="left">
[MessageBox("MessageBox test", MessageType.Info)]
</th><th><img src="Media/attributes.messagebox.png"/></th></tr><tr><th align="left">
[Label("Int field")]
[Field(50)]
public int intField;

[Label("Int less than 0")]
[FieldLess(0, -1)]
public int intLess = -1;

[Label("Int less equal than 0")]
[FieldLessEqual(0, 0)]
public int intLessEqual;

[Label("Int greater than 0")]
[FieldGreat(0, 10)]
public int intGreater;

[Label("Int greater equal than 10")]
[FieldGreat(10, 10)]
public int intGreaterEqual;

[Label("Int")]
[Slider(0, 10, 10)]
public int intSlider;

[Label("Int snap 10")]
[Slider(0, 100, 50, 10)]
public int intSnap;

[Label("Ints min/max")]
[MinMaxSlider(0, 100, 0, 100)]
public int intMin = 0;

[HideInInspector]
public int intMax = 100;

[Label("Float field")]
[Field(1.0f)]
public float floatField;

[Label("Float less than 0")]
[FieldLess(0.0f, -1.0f)]
public float floatLess = 1.0f;

[Label("Float less equal than 0")]
[FieldLessEqual(0.0f, 0.0f)]
public float floatLessEqual;

[Label("Float greater than 0")]
[FieldGreat(0.0f, 1.0f)]
public float floatGreater;

[Label("Float greater equal than 0")]
[FieldGreatEqual(0.0f, 0.0f)]
public float floatGreaterEqual;

[Label("Float")]
[Slider(0.0f, 1.0f, 1.0f)]
public float floatSlider;

[Label("Float snap 0.5")]
[Slider(0.0f, 1.0f, 0.5f, 0.1f)]
public float floatSnap;

[Label("Floats min/max")]
[MinMaxSlider(0.0f, 1.0f)]
public float floatMin = 0.0f;

[HideInInspector]
public float floatMax = 1.0f;
</th><th><img src="Media/attributes.variables.png"/></th></tr><tr><th align="left">
[Label("Nice name")]
public string badName;
</th><th><img src="Media/attributes.label.png"/></th></tr><tr><th align="left">
[Password]
public string password;
</th><th><img src="Media/attributes.password.png"/></th></tr><tr><th align="left">
[Indent(0)]
public string noIndent;

[Indent(1)]
public string indented;
</th><th><img src="Media/attributes.indent.png"/></th></tr><tr><th align="left">
[NotNull]
public GameObject cantBeNull;
</th><th><img src="Media/attributes.notnull.png"/></th></tr><tr><th align="left">
[File]
public string filePath;

[Folder]
public string folderPath;
</th><th><img src="Media/attributes.file.png"/></th></tr><tr><th align="left">
[Scene]
public int sceneIndex;
</th><th><img src="Media/attributes.scene.png"/></th></tr><tr><th align="left">
[NotEditable]
public string notEditable;

[OnlyEditableInEditor]
public string editableInEdit;

[OnlyEditableInPlay]
public string editableInPlay;
</th><th><img src="Media/attributes.noteditable.png"/></th></tr><tr><th align="left">
public bool toggle;

[EnableIf(nameof(toggle))]
public string enableIf;

[DisableIf(nameof(toggle))]
public string disableIf;
</th><th><img src="Media/attributes.enableif.png"/></th></tr><tr><th align="left">
public bool toggle;

[ShowIf(nameof(toggle))]
public string showIf;
</th><th><img src="Media/attributes.showif.png"/></th></tr><tr><th align="left">
public bool toggle;

[HideIf(nameof(toggle))]
public string hideIf;
</th><th><img src="Media/attributes.hideif.png"/></th></tr><tr><th align="left">
[KeyCode]
public KeyCode keyCode;
</th><th><img src="Media/attributes.keycode.gif"/></th></tr><tr><th align="left">
[NotEditable]
public int counter;

[Button(nameof(Increase))]
public string buttonInc;

[Button(nameof(Reset))]
public string buttonReset;

public void Increase() => counter++;
public void Reset()    => counter = 0;
</th><th><img src="Media/attributes.button.gif"/></th></tr> </table>

Custom Inspector

A simple way to create your own inspectors by quickly accessing all the private fields of your components.

<p align="center"><img src="Media/inspector.png"/></p>

Check

Checks the values of the variables that a function receives. If the condition is not met, an exception is thrown. Only active when 'UNITY_ASSERTIONS' is defined (default only in the Editor).

public void GetImpact(GameObject gameObject, float damage, Vector3 impact)
{
    Check.IsNotNull(gameObject);
    Check.IsWithin(damage, 0.0f, 100.0f);
    Check.Greater(impact, Vector3.zero);
    
    ...
}

Take a look at the Check class folder.

Draw

Visualize in the Editor Scene window useful information of your game, in a simple way and without affecting the final performance of the game.

<p align="center"><img src="Media/debug.draw.gif"/></p>
// Displays an array of points.
points.Draw();

// Displays the player's direction.
player.transform.Draw();

// Displays the name of the GameObject.
player.DrawName();

// Displays RaycastHits.
int hits = Physics.RaycastNonAlloc(playerRay, playerHits, 100.0f);
if (hits > 0)
  playerHits.Draw(playerRay);

Prototype

Useful components to support the development of prototypes:

<p align="center"><img src="Media/development.components.gif"/></p>

Development Console

A developer console for executing commands.

<p align="center"><img src="Media/development.console.gif"/></p>

Simply add a GameObject with the DevelopmentConsole component and assign the commands you want to use to it.

Commands are ScriptableObjects that you can create from DevelopmentCommand. See the commands included in this folder.

/// <summary>
/// Quit application.
/// </summary>
[CreateAssetMenu(fileName = "Quit", menuName = "Game:Work/Development/Command/Quit")]
public class QuitCommand : DevelopmentCommand
{
    public QuitCommand()
    {
      Id = "quit";
      Usage = "quit";
      Description = "Quit application.";
    }

    public override bool Execute(string[] args)
    {
        Application.Quit();
    
        return true;
    }
}

Profiling

It measures in a simple way the time it takes for a block of code to execute, or the memory it consumes.

using (Profiling.Time("Some slow code"))
{
    ...
}

Output the message: "Task 'Some slow code' took 27.66ms (0 frames)"

using (Profiling.Memory("Some hungry code"))
{
    ...
}

Output the message: "Task 'Some hungry code' consume 4.00 kb".

Algorithms

Algorithms and data structures.

Patterns

The most used design patterns:

All using generics.

Unit tests

<p align="center"><img src="Media/unittests.png"/></p>

📜 License

Code released under MIT License.

'Prototype Asset Pack' by AssetHunts.

'Prototype Textures' and 'Mannequin Character Pack' by AssetHunts.