SadConsole.FNA 8.0.0

dotnet add package SadConsole.FNA --version 8.0.0
NuGet\Install-Package SadConsole.FNA -Version 8.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SadConsole.FNA" Version="8.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SadConsole.FNA --version 8.0.0
#r "nuget: SadConsole.FNA, 8.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SadConsole.FNA as a Cake Addin
#addin nuget:?package=SadConsole.FNA&version=8.0.0

// Install SadConsole.FNA as a Cake Tool
#tool nuget:?package=SadConsole.FNA&version=8.0.0

NOTE This is the last version to support FNA. You will need to download and compile the source for an FNA specific build (and fix any MonoGame incompatibilities) If the creator of FNA would support NuGet, I would probably add support back. Please ask the creator of FNA to publish .NET Core packages on NuGet.

02/24/2019 V8.0

Special thanks to the SadConsole Discord on all the feedback provided. Shout to the GoRogue project.

SadConsole GitHub SadConsole Documentation SadConsole Discord

File changes:

  • SadConsole and SadConsole.Universal have been replaced by the SadConsole for .NET Standard library.

Code changes:

  • Overhaul of the theme system.
  • Overhaul of the SurfaceBase/ScreenObject/Console system.
  • Changed Listbox.Slider to Listbox.Scrollbar. Also changed any property that used the word Slider to ScrollBar
  • Window messagebox and prompts have a library parameter to theme. If not specified, uses the default theme.
  • [Fixed #165] Window stealing mouse focus from scrollbar (thanks VGA256)
  • [Fixed #164] Controls should be aware of what theme is being used
  • Upgraded to MonoGame 3.7
  • Renamed base types and removed some others
  • SurfaceBase is now CellSurface and not abstract
  • ScreenObject is now Console and inherits from SurfaceBase
  • Console is now ScrollingConsole.
  • AnimatedSurface is now AnimatedConsole.
  • LayeredSurface is now LayeredConsole and has a new subtype, CellSurfaceLayer.
  • Mouse input works on all objects that inherit from Console, which is everything besodes CellSurface.
  • Added new ConsoleComponent types.
  • Consoles have a collection of Components that can hook into Update, Draw, Keyboard, Mouse methods.
  • EntityManager is now a ConsoleComponent.
  • Instructions reimplemented as ConsoleComponents.
  • InstructionSet has fluent-type methods to construct the set. See the SplashScreen console in the demo project.
  • [Fixed #199] New PredicateInstruction (thanks VGA256)
  • SurfaceBase.DefaultBackground is now Black instead of Transparent. You may need to use console.DefaultBackground = Color.Transparent; console.Clear(); to restore old behavior.
  • Control.CanFocus is now respected.
  • Fixed CellSurface JSON converter.
  • Fixed ControlsConsole renderer not respecting viewport.
  • Fixed inputbox not working with nummbers.
  • Redesigned ListboxItemTheme to be passable on Listbox ctor.
  • Consoles no longer use a cached drawcall.
  • Window resize option Settings.ResizeMode now supports Fit. (Thanks ajhmain)
  • Console.CalculatedPosition is now in pixels. Consoles of different font sizes now play nice with parenting. Things will be offset properly now.
  • Settings.ResizeWindow method allows you to easily resize the game window.
  • Added TextBox.KeyPressed event to allow you to cancel input of keys on a textbox.
  • MouseWheel support has been added to the listbox control.
  • Listbox.SingleClickItemExecute has been added to allow the ItemExecute event to trigger without a doubleclick.
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0 1,689 2/24/2019
7.3.0 1,384 12/29/2018
7.2.0 1,199 11/20/2018
7.1.0 1,237 10/19/2018
7.0.4 1,297 9/8/2018
7.0.3 1,251 9/8/2018
7.0.2 1,258 8/31/2018
7.0.1 1,271 8/29/2018
7.0.0 1,234 8/29/2018
6.5.0 1,448 6/12/2018
6.4.11 1,474 4/13/2018
6.4.10 1,351 3/18/2018
6.4.9 1,422 3/18/2018
6.4.8 1,446 3/18/2018
6.4.7 1,444 3/16/2018
6.4.6 1,482 2/14/2018
6.4.5 1,451 2/3/2018
6.4.3 1,315 11/14/2017
6.4.2 1,372 9/27/2017
6.4.1 1,355 9/27/2017

[BREAKING CHANGES]
[This list is just some of the major changes]
[See the documentation on NuGet for more information]
- Overhaul of the theme system.
- Overhaul of the SurfaceBase/ScreenObject/Console system.
- Overhaul of Instruction system.
- Added new ConsoleComponents system.
- EntityManager removed and will be added to GoRogue-SadConsole integration lib.