diff --git a/DotNet/ASP.NET/Blazor.md b/DotNet/ASP.NET/Blazor.md index a8cff95..8d1975a 100644 --- a/DotNet/ASP.NET/Blazor.md +++ b/DotNet/ASP.NET/Blazor.md @@ -148,7 +148,7 @@ Project ```cs - // for component routing + diff --git a/DotNet/ASP.NET/REST API.md b/DotNet/ASP.NET/REST API.md index a96e6f5..843f3e2 100644 --- a/DotNet/ASP.NET/REST API.md +++ b/DotNet/ASP.NET/REST API.md @@ -48,25 +48,28 @@ namespace .Profiles } ``` -In `StartUp.cs`: +## Controller (No View) + +Uses [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection) to recieve a suitable implementation of `IEntityRepo`, + +### Service Lifetimes + +- `AddSingleton`: same for every request +- `AddScoped`: created once per client +- `Transient`: new instance created every time + +In `Startup.cs`: ```cs +// This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { - // other services - - // let AutoMapper know in what assemblies are the profiles defined - services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies()); - - // or create a MapperConfiguration - services.AddAutoMapper(cfg => { - cfg.CreateMap(); - cfg.AddProfile(); - }) + services.AddControllers(); + services.AddScoped(); // map the interface to its implementation, needed for dependency injection } ``` -### Controller with DTOs +### Request Mappings ```cs using .Model; diff --git a/DotNet/ASP.NET/WebForms/Page.aspx.cs.md b/DotNet/ASP.NET/WebForms/Page.aspx.cs.md new file mode 100644 index 0000000..c529db2 --- /dev/null +++ b/DotNet/ASP.NET/WebForms/Page.aspx.cs.md @@ -0,0 +1,26 @@ +# Page.aspx.cs + +```cs +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace Project +{ + public partial class Default : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void Control_Event(object sender, EventAtgs e) + { + // actions on event trigger + } + } +} +``` diff --git a/DotNet/ASP.NET/WebForms/Page.aspx.md b/DotNet/ASP.NET/WebForms/Page.aspx.md new file mode 100644 index 0000000..d3f505e --- /dev/null +++ b/DotNet/ASP.NET/WebForms/Page.aspx.md @@ -0,0 +1,58 @@ +# Page.aspx + +The fist loaded page is `Default.aspx` and its undelying code. + +```html + +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Project.Default" %> + + + + + + + + + +
+
+
+
+ + +``` + +## ASP.NET Directives + +### Page Directive + +```cs +<%@ Page Language="C#" // define language used (can be C# or VB) + AutoEventWireup="true" // automatically create and setup event handlers + CodeBehind="Default.aspx.cs" // define the underlying code file + Inherits="EmptyWebForm.Default" %> +``` + +## Web Controls + +```xml + + + + + + + + + +LINK TEXT + +BUTTON TEXT + + + + + + + +``` diff --git a/DotNet/C#/Async Programming.md b/DotNet/C#/Async Programming.md index 48a3e39..6981fb9 100644 --- a/DotNet/C#/Async Programming.md +++ b/DotNet/C#/Async Programming.md @@ -160,4 +160,4 @@ protected async void MyButton_Click(object sender, EventArgs e) // We may actually be on another *thread*, but we have the same ASP.NET request context. Response.Write("File downloaded!"); } -``` \ No newline at end of file +``` diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index b11307c..00763b9 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -2907,4 +2907,4 @@ In this case, the method must also be declared as `static`. ```cs [DllImport("avifil32.dll")] private static extern void AVIFileInit(); -``` \ No newline at end of file +``` diff --git a/DotNet/C#/Reactive Extensions.md b/DotNet/C#/Reactive Extensions.md index f86eadd..3da0dfc 100644 --- a/DotNet/C#/Reactive Extensions.md +++ b/DotNet/C#/Reactive Extensions.md @@ -12,7 +12,7 @@ of an Rx source demand to be given the next item. Instead, Rx uses a *push* mode Because Rx implements standard LINQ operators, it's possible to write queries against a live source. Rx goes beyond standard LINQ, adding its own operators that take into account the temporal nature of a live event source. -## Foundamental Interfaces +## Fundamental Interfaces The two most important types in Rx are the `IObservable` and `IObserver` interfaces. They are important enough to be in the System namespace. The other parts of Rx are in the `System.Reactive` NuGet package. diff --git a/DotNet/Godot/Scripting.md b/DotNet/Godot/Scripting.md new file mode 100644 index 0000000..8fcf91a --- /dev/null +++ b/DotNet/Godot/Scripting.md @@ -0,0 +1,140 @@ +# Godot Scripting + +## Basics + +```cs +using Godot; + + +public class NodeName : NodeType +{ + [Export] // make variable visible in inspector + Type variable = value; + + + + // Called when the node enters the scene tree for the first time. + public override void _Ready() + { + GetNode("NodeName"); // fetch a child node in the scene + GetNode("ParentNode/ChildNode"); // fetch a child node in the scene + + AddToGroup("Group"); // add a node to a group (similar to tags) + + GetTree().CallGroup("Group", "Function"); // call Function on all group members + var groupMembers = GetTree().GetNodesInGroup("Group"); + } + + // Called every frame. 'delta' is the elapsed time since the previous frame. + public override void _Process(float delta) + { + + } + + public void _OnEmitterSignal() { } +} +``` + +### Overridable Functions + +```cs +public override void _EnterTree() +{ + // When the node enters the Scene Tree, it becomes active and this function is called. + // Children nodes have not entered the active scene yet. + // In general, it's better to use _ready() for most cases. + base._EnterTree(); +} + +public override void _Ready() +{ + // This function is called after _enter_tree, but it ensures + // that all children nodes have also entered the Scene Tree, + // and became active. + base._Ready(); +} + +public override void _ExitTree() +{ + // When the node exits the Scene Tree, this function is called. + // Children nodes have all exited the Scene Tree at this point and all became inactive. + base._ExitTree(); +} + +public override void _Process(float delta) +{ + // This function is called every frame. + base._Process(delta); +} + +public override void _PhysicsProcess(float delta) +{ + // This is called every physics frame. + base._PhysicsProcess(delta); +} +``` + +### Creating Nodes + +```cs +private Sprite _sprite; + +public override void _Ready() +{ + base._Ready(); + + _sprite = new Sprite(); // Create a new sprite + + AddChild(_sprite); // Add it as a child of this node + _sprite.Free(); // Immediately removes the node from the scene and frees it. +} +``` + +**Note**: When a node is freed, it also frees all its child nodes. + +The safest way to delete a node is by using `Node.QueueFree()`. This erases the node safely during idle. + +### Instantiating Scenes + +```cs +// STEP 1: load the scene +var scene = GD.Load("res://scene.tscn"); // Will load when the script is instanced. + +// STEP 2: instantiate the scene-node +var node = scene.Instance(); +AddChild(node); +``` + +The advantage of this two-step process is that a packed scene may be kept loaded and ready to use so that it's possible to create as many instances as desired. +This is especially useful to quickly instance several enemies, bullets, and other entities in the active scene. + +## Signals + +Signals are Godot's version of the *observer* pattern. They allow a node to send out a message that other nodes can listen for and respond to. + +Signals are a way to decouple game objects, which leads to better organized and more manageable code. Instead of forcing game objects to expect other objects to always be present, they can instead emit signals that all interested objects can subscribe to and respond to. + +```cs +public override _Ready() +{ + GetNode("Node").Connect("signal", targetNode, nameof(TargetFunction)); // connect node and signal +} + +// Signal Handler +public void OnEmitterSignal() { } +``` + +### Custom Signals + +```cs +public class Node : Node2D +{ + [Signal] + public delegate void CustomSignal(Type arg, ...); + + public override void _Ready() + { + EmitSignal(nameof(CustomSignal), args); + } +} +```