CardFramework.Maui 1.4.2

dotnet add package CardFramework.Maui --version 1.4.2                
NuGet\Install-Package CardFramework.Maui -Version 1.4.2                
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="CardFramework.Maui" Version="1.4.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CardFramework.Maui --version 1.4.2                
#r "nuget: CardFramework.Maui, 1.4.2"                
#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 CardFramework.Maui as a Cake Addin
#addin nuget:?package=CardFramework.Maui&version=1.4.2

// Install CardFramework.Maui as a Cake Tool
#tool nuget:?package=CardFramework.Maui&version=1.4.2                

Framework di numerone in maui per la realizzazione di giochi di carte. La codebase è in .net, con l'aggiunta di un resourcedictionary da passare. Il resource dictionary deve includere 4 campi: bastoni, coppe, spade e denari da tradurre dall'italiano nella lingua desiderata, i 4 semi dei mazzi di carte italiane, o eventualmente francesi. Il codice di apertura deve essere:

e = new ElaboratoreCarteBriscola(briscolaDaPunti, 0, 39, 40);
m = new Mazzo(e);
Carta.Inizializza(numerocarte, new org.altervista.numerone.framework.briscola.CartaHelper(e.GetCartaBriscola()), "bastoni", "coppe", "denari", "spade");
g = new Giocatore(new GiocatoreHelperUtente(), nomegiocatore, dimensionemano);
switch (indicatore di livello)
{
    case 1: helper = new GiocatoreHelperCpu0(e.GetCartaBriscola()); break;
    case 2: helper = new GiocatoreHelperCpu1(e.GetCartaBriscola()); break;
    default: helper = new GiocatoreHelperCpu2(e.GetCartaBriscola()); break;
}
cpu = new Giocatore(helper, nomegiocatore, dimensionemano);
briscola = Carta.GetCarta(ElaboratoreCarteBriscola.GetCartaBriscola());
for (UInt16 i = 0; i < dimensionemano; i++)
{
    g.AddCarta(m);
    cpu.AddCarta(m);
}

una volta fatto questo, in carta si avrà un vettore di numerocarte elementi, in g e cpu si avrà un vettore di tre dimensionemanoelementi corrispondenti alle prime 2*dimensionemano carte del mazzo, che saranno riempite con addcarta. Quando addcarta restituisce un IndexOutOfRangeException exception si avrà la fine del mazzo.

Product Compatible and additional computed target framework versions.
.NET net9.0-android35.0 is compatible.  net9.0-ios18.0 is compatible.  net9.0-maccatalyst18.0 is compatible.  net9.0-windows10.0.26100 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
1.4.2 91 12/4/2024
1.4.1 90 11/26/2024
1.4.0 96 11/12/2024
1.3.7 104 10/8/2024
1.3.6 94 10/3/2024
1.3.5 132 8/14/2024
1.3.4 119 7/9/2024
1.3.3 115 5/15/2024
1.3.2 142 5/7/2024
1.3.1 135 3/21/2024
1.3.0 124 3/21/2024
1.2.5 134 3/19/2024
1.2.4 133 3/13/2024
1.2.3 147 3/12/2024
1.2.1 135 3/5/2024
1.2.0 133 3/5/2024
1.1.5 135 3/5/2024
1.1.4 144 3/4/2024
1.1.3 129 3/4/2024
1.1.2 130 3/4/2024
1.1.1 122 3/4/2024
1.1.0 133 3/4/2024
1.0.0 138 3/4/2024

Ricompilato col .net 9.0.1 e maui 9.0.12