Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Showing
with 607692 additions and 341 deletions
File moved
using System.ComponentModel;
using System.Drawing.Design;
using System.Windows.Forms;
using System.Windows.Forms.Design;
using Wanderer.model;
namespace Wanderer.view.Controls
{
public class MapView : TableLayoutPanel
{
public static TileView SelectedTile;
private TileView[,] tileViews;
private IContainer components = null;
[Category("Model")]
[Browsable(true)]
[Description("La map correspondante.")]
[Editor(typeof(WindowsFormsComponentEditor), typeof(UITypeEditor))]
public Map Model {
set {
ColumnCount = value.Tiles.GetLength(0);
RowCount = value.Tiles.GetLength(1);
tileViews = new TileView[ColumnCount, RowCount];
for(int i = 0; i < ColumnCount; i++)
{
this.ColumnStyles.Add(new ColumnStyle());
}
for (int i = 0; i < RowCount; i++)
{
this.RowStyles.Add(new RowStyle());
}
for (int i = 0; i < ColumnCount; ++i)
{
for (int j = 0; j < RowCount; ++j)
{
tileViews[i, j] = new TileView(value.Tiles[i, j]);
Controls.Add(tileViews[i, j], i, j);
this.RowStyles[j].Height = 14;
}
this.ColumnStyles[i].Width = 14;
}
}
}
public MapView()
{
InitializeComponent();
}
protected override void Dispose(bool disposing)
{
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.SuspendLayout();
this.ResumeLayout(false);
}
}
}
\ No newline at end of file
using System;
using System.Drawing;
using System.Windows.Forms;
using Wanderer.model;
namespace Wanderer.view.Controls
{
public class TileView : Button
{
public Tile model { get; }
public TileView(Tile tile)
{
model = tile;
Height = Width;
FlatStyle = FlatStyle.Flat;
FlatAppearance.MouseOverBackColor = Color.Transparent;
BackColor = Color.Transparent;
MouseEnter += OnMouseEnterButton1;
MouseLeave += OnMouseLeaveButton1;
Click += OnClick;
//Image = imageFromTerrain();
}
private void OnMouseEnterButton1(object sender, EventArgs e)
{
this.FlatAppearance.BorderColor = Color.Yellow; // or Color.Red or whatever you want
//this.BackColor = Color.Transparent;
}
private void OnMouseLeaveButton1(object sender, EventArgs e)
{
this.FlatAppearance.BorderColor = Color.Black;
}
private void OnClick(object sender, EventArgs e)
{
MapView.SelectedTile = this;
}
}
}
\ No newline at end of file

namespace Wanderer.view
{
partial class FormAide
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAide));
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.lblTexte = new System.Windows.Forms.Label();
this.btnConstruction = new System.Windows.Forms.Button();
this.btnContexte = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.btnGagner = new System.Windows.Forms.Button();
this.lblTitre = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.BackColor = System.Drawing.Color.Transparent;
this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.Color.White;
this.button1.Location = new System.Drawing.Point(1050, 635);
this.button1.Margin = new System.Windows.Forms.Padding(2);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(184, 56);
this.button1.TabIndex = 0;
this.button1.Text = "Reprendre le jeu";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 35.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(531, 18);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(118, 56);
this.label1.TabIndex = 1;
this.label1.Text = "Aide";
//
// lblTexte
//
this.lblTexte.AutoSize = true;
this.lblTexte.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblTexte.Location = new System.Drawing.Point(2, 0);
this.lblTexte.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblTexte.Name = "lblTexte";
this.lblTexte.Size = new System.Drawing.Size(62, 25);
this.lblTexte.TabIndex = 2;
this.lblTexte.Text = "Texte";
//
// btnConstruction
//
this.btnConstruction.BackColor = System.Drawing.Color.Transparent;
this.btnConstruction.FlatAppearance.BorderSize = 2;
this.btnConstruction.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.btnConstruction.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnConstruction.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnConstruction.ForeColor = System.Drawing.Color.White;
this.btnConstruction.Location = new System.Drawing.Point(11, 295);
this.btnConstruction.Margin = new System.Windows.Forms.Padding(2);
this.btnConstruction.Name = "btnConstruction";
this.btnConstruction.Size = new System.Drawing.Size(159, 63);
this.btnConstruction.TabIndex = 4;
this.btnConstruction.Text = "Construction";
this.btnConstruction.UseVisualStyleBackColor = false;
this.btnConstruction.Click += new System.EventHandler(this.button2_Click);
//
// btnContexte
//
this.btnContexte.BackColor = System.Drawing.Color.Transparent;
this.btnContexte.FlatAppearance.BorderSize = 2;
this.btnContexte.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.btnContexte.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnContexte.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnContexte.ForeColor = System.Drawing.Color.White;
this.btnContexte.Location = new System.Drawing.Point(11, 213);
this.btnContexte.Margin = new System.Windows.Forms.Padding(2);
this.btnContexte.Name = "btnContexte";
this.btnContexte.Size = new System.Drawing.Size(159, 65);
this.btnContexte.TabIndex = 5;
this.btnContexte.Text = "Contexte historique";
this.btnContexte.UseVisualStyleBackColor = false;
this.btnContexte.Click += new System.EventHandler(this.btnContexte_Click);
this.btnContexte.MouseHover += new System.EventHandler(this.btnContexte_MouseHover);
//
// button4
//
this.button4.BackColor = System.Drawing.Color.Transparent;
this.button4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button4.ForeColor = System.Drawing.Color.White;
this.button4.Location = new System.Drawing.Point(834, 635);
this.button4.Margin = new System.Windows.Forms.Padding(2);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(164, 56);
this.button4.TabIndex = 6;
this.button4.Text = "Quitter";
this.button4.UseVisualStyleBackColor = false;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// btnGagner
//
this.btnGagner.BackColor = System.Drawing.Color.Transparent;
this.btnGagner.FlatAppearance.BorderSize = 2;
this.btnGagner.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.btnGagner.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnGagner.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnGagner.ForeColor = System.Drawing.Color.White;
this.btnGagner.Location = new System.Drawing.Point(11, 382);
this.btnGagner.Margin = new System.Windows.Forms.Padding(2);
this.btnGagner.Name = "btnGagner";
this.btnGagner.Size = new System.Drawing.Size(159, 67);
this.btnGagner.TabIndex = 7;
this.btnGagner.Text = "Comment gagner ?";
this.btnGagner.UseVisualStyleBackColor = false;
this.btnGagner.Click += new System.EventHandler(this.btnGagner_Click);
//
// lblTitre
//
this.lblTitre.AutoSize = true;
this.lblTitre.BackColor = System.Drawing.Color.Transparent;
this.lblTitre.Font = new System.Drawing.Font("Microsoft Sans Serif", 25F);
this.lblTitre.ForeColor = System.Drawing.Color.White;
this.lblTitre.Location = new System.Drawing.Point(225, 131);
this.lblTitre.Name = "lblTitre";
this.lblTitre.Size = new System.Drawing.Size(85, 39);
this.lblTitre.TabIndex = 8;
this.lblTitre.Text = "Titre";
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.lblTexte);
this.flowLayoutPanel1.Location = new System.Drawing.Point(203, 197);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(974, 406);
this.flowLayoutPanel1.TabIndex = 9;
//
// FormAide
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(1280, 720);
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.lblTitre);
this.Controls.Add(this.btnGagner);
this.Controls.Add(this.button4);
this.Controls.Add(this.btnContexte);
this.Controls.Add(this.btnConstruction);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "FormAide";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Aide";
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label lblTexte;
private System.Windows.Forms.Button btnConstruction;
private System.Windows.Forms.Button btnContexte;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button btnGagner;
private System.Windows.Forms.Label lblTitre;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
}
}
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Wanderer.view
{
public partial class FormAide : Form
{
public FormAide()
{
InitializeComponent();
lblTitre.Text = "Contexte historique";
lblTexte.Text = "Nous sommes en 1875, toute l’Allemagne connaît une grande période d’industrialisation. De ce fait, la démographie du pays se voit exploser, les villes se remplissent et" +
"rapidement beaucoup souhaitent s’échapper de la ville et se ressourcer à la nature.\n\n" +
"Quelle autre bonne manière de le faire que de s’essayer à la randonnée!\n\n" +
"Ainsi, c’est votre rôle, en tant que ministre allemand, de développer au plus rapidement votre territoire dans ce domaine pour battre les autres régions dans la course à l’aménagement" +
" de votre région, pour que chacun de ces habitants puisse s’épanouir à son gré sur les chemins de randonnée.";
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
}
private void button2_Click(object sender, EventArgs e)
{
Button b = (Button)sender;
lblTitre.Text = b.Text;
lblTexte.Text = "En début de partie vous aurez le choix de l'endroit où vous voulez construire votre gare. Celle ci doit etre placée en bord de terrain.\n\n" +
"Afin d'augmenter le nombre de marcheurs sur votre terrain vous devrez placer :\n" +
" - des usines : pour fabriquer du matériel de randonnée, et donc gagner de l'argent\n" +
" - des chemins : pour augmenter la superficie de votre territoire de randonnée\n" +
" - des refuges : pour attirer plus de marcheur \n\n" +
"Vous aurez également la possibilité de financer des clubs de randonnées et d'améliorer vos chemins ferroviaires afin d'attirer plus de randonneurs.\n\n" +
"Lorsque vous placez 5 chemins vous obtiendrez un bonus d'un marcheur à chaque nouveau chemin placé, de deux marcheurs si vous en placez etc. Il en est de" +
" meme avec les clubs mais le bonus est doublé !\n\n"+
"Pour placer les différents éléments, cliquez sur la case où vous voulez vous placer puis cliquez sur l'item que vous voulez placer dans cette case.";
}
private void btnContexte_Click(object sender, EventArgs e)
{
Button b = (Button)sender;
lblTitre.Text = b.Text;
lblTexte.Text = "Nous sommes en 1875, toute l’Allemagne connaît une grande période d’industrialisation. De ce fait, la démographie du pays se voit exploser, les villes se remplissent et" +
"rapidement beaucoup souhaitent s’échapper de la ville et se ressourcer à la nature.\n\n"+
"Quelle autre bonne manière de le faire que de s’essayer à la randonnée!\n\n"+
"Ainsi, c’est votre rôle, en tant que ministre allemand, de développer au plus rapidement votre territoire dans ce domaine pour battre les autres régions dans la course à l’aménagement" +
" de votre région, pour que chacun de ces habitants puisse s’épanouir à son gré sur les chemins de randonnée.";
}
private void button4_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void btnGagner_Click(object sender, EventArgs e)
{
Button b = (Button)sender;
lblTitre.Text = b.Text;
lblTexte.Text = "Vous devrez atteindre un nombre de 50 marcheurs sur votre territoire avant votre adversaire.\n\n"+
"Pour cela aménagez votre territoire ! \n" +
"(Rendez-vous dans la rubrique Construction)";
}
private void btnContexte_MouseHover(object sender, EventArgs e)
{
}
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.

namespace Wanderer.view
{
partial class FormFin
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormFin));
this.label1 = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.lblWinner = new System.Windows.Forms.Label();
this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
this.lblLooser = new System.Windows.Forms.Label();
this.lblTour = new System.Windows.Forms.Label();
this.btnContexte = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.flowLayoutPanel1.SuspendLayout();
this.flowLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 30F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(409, 61);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(363, 46);
this.label1.TabIndex = 0;
this.label1.Text = "Le joueur a gagné !";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.lblWinner);
this.flowLayoutPanel1.Font = new System.Drawing.Font("Microsoft Tai Le", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.flowLayoutPanel1.Location = new System.Drawing.Point(164, 183);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(369, 220);
this.flowLayoutPanel1.TabIndex = 1;
//
// lblWinner
//
this.lblWinner.AutoSize = true;
this.lblWinner.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblWinner.Location = new System.Drawing.Point(3, 0);
this.lblWinner.Name = "lblWinner";
this.lblWinner.Size = new System.Drawing.Size(64, 25);
this.lblWinner.TabIndex = 0;
this.lblWinner.Text = "label2";
//
// flowLayoutPanel2
//
this.flowLayoutPanel2.Controls.Add(this.lblLooser);
this.flowLayoutPanel2.Font = new System.Drawing.Font("Microsoft Tai Le", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.flowLayoutPanel2.Location = new System.Drawing.Point(785, 192);
this.flowLayoutPanel2.Name = "flowLayoutPanel2";
this.flowLayoutPanel2.Size = new System.Drawing.Size(366, 204);
this.flowLayoutPanel2.TabIndex = 2;
//
// lblLooser
//
this.lblLooser.AutoSize = true;
this.lblLooser.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblLooser.Location = new System.Drawing.Point(3, 0);
this.lblLooser.Name = "lblLooser";
this.lblLooser.Size = new System.Drawing.Size(64, 25);
this.lblLooser.TabIndex = 0;
this.lblLooser.Text = "label3";
//
// lblTour
//
this.lblTour.AutoSize = true;
this.lblTour.BackColor = System.Drawing.Color.Transparent;
this.lblTour.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.lblTour.Font = new System.Drawing.Font("Microsoft Sans Serif", 30F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblTour.ForeColor = System.Drawing.Color.White;
this.lblTour.Location = new System.Drawing.Point(446, 462);
this.lblTour.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblTour.Name = "lblTour";
this.lblTour.Size = new System.Drawing.Size(406, 46);
this.lblTour.TabIndex = 3;
this.lblTour.Text = "Nombre de tour total :";
//
// btnContexte
//
this.btnContexte.BackColor = System.Drawing.Color.Transparent;
this.btnContexte.FlatAppearance.BorderSize = 2;
this.btnContexte.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.btnContexte.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnContexte.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnContexte.ForeColor = System.Drawing.Color.White;
this.btnContexte.Location = new System.Drawing.Point(732, 602);
this.btnContexte.Margin = new System.Windows.Forms.Padding(2);
this.btnContexte.Name = "btnContexte";
this.btnContexte.Size = new System.Drawing.Size(159, 65);
this.btnContexte.TabIndex = 6;
this.btnContexte.Text = "Quitter";
this.btnContexte.UseVisualStyleBackColor = false;
this.btnContexte.Click += new System.EventHandler(this.btnContexte_Click);
//
// button1
//
this.button1.BackColor = System.Drawing.Color.Transparent;
this.button1.FlatAppearance.BorderSize = 2;
this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.Color.White;
this.button1.Location = new System.Drawing.Point(374, 602);
this.button1.Margin = new System.Windows.Forms.Padding(2);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(159, 65);
this.button1.TabIndex = 7;
this.button1.Text = "Rejouer";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// FormFin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(1280, 700);
this.Controls.Add(this.button1);
this.Controls.Add(this.btnContexte);
this.Controls.Add(this.lblTour);
this.Controls.Add(this.flowLayoutPanel2);
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "FormFin";
this.Text = "Fin";
this.Load += new System.EventHandler(this.FormFin_Load);
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.flowLayoutPanel2.ResumeLayout(false);
this.flowLayoutPanel2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Label lblWinner;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
private System.Windows.Forms.Label lblLooser;
private System.Windows.Forms.Label lblTour;
private System.Windows.Forms.Button btnContexte;
private System.Windows.Forms.Button button1;
}
}
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Wanderer.controller;
using Wanderer.model;
using Wanderer.view.Controls;
namespace Wanderer.view
{
public partial class FormFin : Form
{
public FormFin(Player currentPlayer, int nombreTour)
{
InitializeComponent();
CenterToScreen();
if (currentPlayer.Color == Color.Brown)
{
label1.Text = "Le joueur Rouge a gagné !";
label1.BackColor = currentPlayer.Color;
}
else
{
label1.Text = "Le joueur Bleu a gagné !";
label1.BackColor = currentPlayer.Color;
}
lblTour.Text = lblTour.Text + nombreTour;
afficheResultat(currentPlayer);
}
private void label1_Click(object sender, EventArgs e)
{
}
private void afficheResultat(Player p)
{
lblWinner.Text = "Marcheurs : " + p.randonneurs +
"\n\nMarks : " + p.marks;
flowLayoutPanel1.BackColor = p.Color;
Game.Instance.currentPlayerIndex = (Game.Instance.currentPlayerIndex + 1) % Game.Instance.Players.Count;
Player p2= Game.Instance.Players[Game.Instance.currentPlayerIndex];
lblLooser.Text = "Marcheurs : " + p2.randonneurs +
"\n\nMarks : " + p2.marks;
flowLayoutPanel2.BackColor = p2.Color;
}
private void FormFin_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
FormJeu f = new FormJeu();
f.Show();
this.Hide();
}
private void btnContexte_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.

namespace Wanderer.view
{
partial class FormJeu
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormJeu));
this.pbAide = new System.Windows.Forms.PictureBox();
this.panel1 = new System.Windows.Forms.Panel();
this.lblMarcheurBleu = new System.Windows.Forms.Label();
this.lblArgentBleu = new System.Windows.Forms.Label();
this.lblMarcheursUp = new System.Windows.Forms.Label();
this.lblArgentUp = new System.Windows.Forms.Label();
this.lblMarcheurRouge = new System.Windows.Forms.Label();
this.lblArgentRouge = new System.Windows.Forms.Label();
this.lblTour = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.pbPersonnes = new System.Windows.Forms.PictureBox();
this.btnUsine = new System.Windows.Forms.Button();
this.btnTrain = new System.Windows.Forms.Button();
this.btnRefuge = new System.Windows.Forms.Button();
this.btnChemin = new System.Windows.Forms.Button();
this.btnClub = new System.Windows.Forms.Button();
this.lblRefuge = new System.Windows.Forms.Label();
this.lblChemins = new System.Windows.Forms.Label();
this.lblClub = new System.Windows.Forms.Label();
this.lblTrain = new System.Windows.Forms.Label();
this.lblUsine = new System.Windows.Forms.Label();
this.mapView1 = new Wanderer.view.Controls.MapView();
this.label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pbAide)).BeginInit();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pbPersonnes)).BeginInit();
this.SuspendLayout();
//
// pbAide
//
this.pbAide.Image = ((System.Drawing.Image)(resources.GetObject("pbAide.Image")));
this.pbAide.Location = new System.Drawing.Point(8, 10);
this.pbAide.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.pbAide.Name = "pbAide";
this.pbAide.Size = new System.Drawing.Size(46, 42);
this.pbAide.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbAide.TabIndex = 0;
this.pbAide.TabStop = false;
this.pbAide.Click += new System.EventHandler(this.pictureBox1_Click);
//
// panel1
//
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.lblMarcheurBleu);
this.panel1.Controls.Add(this.lblArgentBleu);
this.panel1.Controls.Add(this.lblMarcheursUp);
this.panel1.Controls.Add(this.lblArgentUp);
this.panel1.Controls.Add(this.lblMarcheurRouge);
this.panel1.Controls.Add(this.lblArgentRouge);
this.panel1.Controls.Add(this.lblTour);
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Controls.Add(this.pbAide);
this.panel1.Controls.Add(this.pbPersonnes);
this.panel1.Location = new System.Drawing.Point(29, 8);
this.panel1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1218, 65);
this.panel1.TabIndex = 1;
//
// lblMarcheurBleu
//
this.lblMarcheurBleu.AutoSize = true;
this.lblMarcheurBleu.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.lblMarcheurBleu.ForeColor = System.Drawing.Color.Blue;
this.lblMarcheurBleu.Location = new System.Drawing.Point(922, 24);
this.lblMarcheurBleu.Name = "lblMarcheurBleu";
this.lblMarcheurBleu.Size = new System.Drawing.Size(105, 25);
this.lblMarcheurBleu.TabIndex = 18;
this.lblMarcheurBleu.Text = "Marcheurs";
//
// lblArgentBleu
//
this.lblArgentBleu.AutoSize = true;
this.lblArgentBleu.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.lblArgentBleu.ForeColor = System.Drawing.Color.Blue;
this.lblArgentBleu.Location = new System.Drawing.Point(616, 23);
this.lblArgentBleu.Name = "lblArgentBleu";
this.lblArgentBleu.Size = new System.Drawing.Size(70, 25);
this.lblArgentBleu.TabIndex = 17;
this.lblArgentBleu.Text = "Argent";
//
// lblMarcheursUp
//
this.lblMarcheursUp.AutoSize = true;
this.lblMarcheursUp.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.lblMarcheursUp.Location = new System.Drawing.Point(1108, 24);
this.lblMarcheursUp.Name = "lblMarcheursUp";
this.lblMarcheursUp.Size = new System.Drawing.Size(0, 25);
this.lblMarcheursUp.TabIndex = 16;
//
// lblArgentUp
//
this.lblArgentUp.AutoSize = true;
this.lblArgentUp.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.lblArgentUp.Location = new System.Drawing.Point(889, 27);
this.lblArgentUp.Name = "lblArgentUp";
this.lblArgentUp.Size = new System.Drawing.Size(0, 25);
this.lblArgentUp.TabIndex = 15;
//
// lblMarcheurRouge
//
this.lblMarcheurRouge.AutoSize = true;
this.lblMarcheurRouge.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.lblMarcheurRouge.ForeColor = System.Drawing.Color.Red;
this.lblMarcheurRouge.Location = new System.Drawing.Point(779, 24);
this.lblMarcheurRouge.Name = "lblMarcheurRouge";
this.lblMarcheurRouge.Size = new System.Drawing.Size(105, 25);
this.lblMarcheurRouge.TabIndex = 14;
this.lblMarcheurRouge.Text = "Marcheurs";
//
// lblArgentRouge
//
this.lblArgentRouge.AutoSize = true;
this.lblArgentRouge.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.lblArgentRouge.ForeColor = System.Drawing.Color.Red;
this.lblArgentRouge.Location = new System.Drawing.Point(506, 23);
this.lblArgentRouge.Name = "lblArgentRouge";
this.lblArgentRouge.Size = new System.Drawing.Size(70, 25);
this.lblArgentRouge.TabIndex = 13;
this.lblArgentRouge.Text = "Argent";
//
// lblTour
//
this.lblTour.AutoSize = true;
this.lblTour.Font = new System.Drawing.Font("Microsoft Sans Serif", 30F);
this.lblTour.Location = new System.Drawing.Point(61, 9);
this.lblTour.Name = "lblTour";
this.lblTour.Size = new System.Drawing.Size(354, 46);
this.lblTour.TabIndex = 12;
this.lblTour.Text = "Nombre d\'actions :";
this.lblTour.Click += new System.EventHandler(this.label1_Click);
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(462, 18);
this.pictureBox1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(32, 33);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 11;
this.pictureBox1.TabStop = false;
//
// pbPersonnes
//
this.pbPersonnes.Image = ((System.Drawing.Image)(resources.GetObject("pbPersonnes.Image")));
this.pbPersonnes.Location = new System.Drawing.Point(737, 19);
this.pbPersonnes.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.pbPersonnes.Name = "pbPersonnes";
this.pbPersonnes.Size = new System.Drawing.Size(32, 33);
this.pbPersonnes.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbPersonnes.TabIndex = 10;
this.pbPersonnes.TabStop = false;
//
// btnUsine
//
this.btnUsine.BackColor = System.Drawing.Color.Transparent;
this.btnUsine.FlatAppearance.BorderSize = 2;
this.btnUsine.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnUsine.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.btnUsine.ForeColor = System.Drawing.Color.White;
this.btnUsine.Image = ((System.Drawing.Image)(resources.GetObject("btnUsine.Image")));
this.btnUsine.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnUsine.Location = new System.Drawing.Point(1029, 598);
this.btnUsine.Margin = new System.Windows.Forms.Padding(2);
this.btnUsine.Name = "btnUsine";
this.btnUsine.Size = new System.Drawing.Size(167, 77);
this.btnUsine.TabIndex = 5;
this.btnUsine.Tag = "4";
this.btnUsine.Text = "Usine";
this.btnUsine.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.btnUsine.UseVisualStyleBackColor = false;
this.btnUsine.Click += new System.EventHandler(this.btn_Click);
//
// btnTrain
//
this.btnTrain.BackColor = System.Drawing.Color.Transparent;
this.btnTrain.FlatAppearance.BorderSize = 2;
this.btnTrain.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnTrain.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.btnTrain.ForeColor = System.Drawing.Color.White;
this.btnTrain.Image = ((System.Drawing.Image)(resources.GetObject("btnTrain.Image")));
this.btnTrain.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnTrain.Location = new System.Drawing.Point(548, 598);
this.btnTrain.Margin = new System.Windows.Forms.Padding(2);
this.btnTrain.Name = "btnTrain";
this.btnTrain.Size = new System.Drawing.Size(167, 77);
this.btnTrain.TabIndex = 6;
this.btnTrain.Tag = "3";
this.btnTrain.Text = "Train";
this.btnTrain.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.btnTrain.UseVisualStyleBackColor = false;
this.btnTrain.Click += new System.EventHandler(this.btn_Click);
//
// btnRefuge
//
this.btnRefuge.BackColor = System.Drawing.Color.Transparent;
this.btnRefuge.FlatAppearance.BorderSize = 2;
this.btnRefuge.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnRefuge.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.btnRefuge.ForeColor = System.Drawing.Color.White;
this.btnRefuge.Image = ((System.Drawing.Image)(resources.GetObject("btnRefuge.Image")));
this.btnRefuge.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnRefuge.Location = new System.Drawing.Point(73, 598);
this.btnRefuge.Margin = new System.Windows.Forms.Padding(2);
this.btnRefuge.Name = "btnRefuge";
this.btnRefuge.Size = new System.Drawing.Size(167, 77);
this.btnRefuge.TabIndex = 7;
this.btnRefuge.Tag = "0";
this.btnRefuge.Text = "Refuge";
this.btnRefuge.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.btnRefuge.UseVisualStyleBackColor = false;
this.btnRefuge.Click += new System.EventHandler(this.btn_Click);
//
// btnChemin
//
this.btnChemin.BackColor = System.Drawing.Color.Transparent;
this.btnChemin.FlatAppearance.BorderSize = 2;
this.btnChemin.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnChemin.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.btnChemin.ForeColor = System.Drawing.Color.White;
this.btnChemin.Image = ((System.Drawing.Image)(resources.GetObject("btnChemin.Image")));
this.btnChemin.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnChemin.Location = new System.Drawing.Point(367, 598);
this.btnChemin.Margin = new System.Windows.Forms.Padding(2);
this.btnChemin.Name = "btnChemin";
this.btnChemin.Size = new System.Drawing.Size(167, 77);
this.btnChemin.TabIndex = 8;
this.btnChemin.Tag = "1";
this.btnChemin.Text = "Chemins";
this.btnChemin.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.btnChemin.UseVisualStyleBackColor = false;
this.btnChemin.Click += new System.EventHandler(this.btn_Click);
//
// btnClub
//
this.btnClub.BackColor = System.Drawing.Color.Transparent;
this.btnClub.FlatAppearance.BorderSize = 2;
this.btnClub.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnClub.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.btnClub.ForeColor = System.Drawing.Color.White;
this.btnClub.Image = ((System.Drawing.Image)(resources.GetObject("btnClub.Image")));
this.btnClub.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnClub.Location = new System.Drawing.Point(708, 598);
this.btnClub.Margin = new System.Windows.Forms.Padding(2);
this.btnClub.Name = "btnClub";
this.btnClub.Size = new System.Drawing.Size(167, 77);
this.btnClub.TabIndex = 9;
this.btnClub.Tag = "2";
this.btnClub.Text = "Club";
this.btnClub.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.btnClub.UseVisualStyleBackColor = false;
this.btnClub.Click += new System.EventHandler(this.btn_Click);
//
// lblRefuge
//
this.lblRefuge.AutoSize = true;
this.lblRefuge.BackColor = System.Drawing.SystemColors.ButtonShadow;
this.lblRefuge.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblRefuge.Location = new System.Drawing.Point(142, 683);
this.lblRefuge.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblRefuge.Name = "lblRefuge";
this.lblRefuge.Size = new System.Drawing.Size(64, 25);
this.lblRefuge.TabIndex = 12;
this.lblRefuge.Tag = "0";
this.lblRefuge.Text = "label1";
//
// lblChemins
//
this.lblChemins.AutoSize = true;
this.lblChemins.BackColor = System.Drawing.SystemColors.ControlDark;
this.lblChemins.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblChemins.Location = new System.Drawing.Point(430, 682);
this.lblChemins.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblChemins.Name = "lblChemins";
this.lblChemins.Size = new System.Drawing.Size(64, 25);
this.lblChemins.TabIndex = 13;
this.lblChemins.Tag = "1";
this.lblChemins.Text = "label2";
//
// lblClub
//
this.lblClub.AutoSize = true;
this.lblClub.BackColor = System.Drawing.SystemColors.ButtonShadow;
this.lblClub.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblClub.Location = new System.Drawing.Point(780, 682);
this.lblClub.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblClub.Name = "lblClub";
this.lblClub.Size = new System.Drawing.Size(64, 25);
this.lblClub.TabIndex = 14;
this.lblClub.Tag = "2";
this.lblClub.Text = "label3";
//
// lblTrain
//
this.lblTrain.AutoSize = true;
this.lblTrain.BackColor = System.Drawing.SystemColors.ButtonShadow;
this.lblTrain.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblTrain.Location = new System.Drawing.Point(610, 682);
this.lblTrain.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblTrain.Name = "lblTrain";
this.lblTrain.Size = new System.Drawing.Size(64, 25);
this.lblTrain.TabIndex = 15;
this.lblTrain.Tag = "3";
this.lblTrain.Text = "label4";
//
// lblUsine
//
this.lblUsine.AutoSize = true;
this.lblUsine.BackColor = System.Drawing.SystemColors.ButtonShadow;
this.lblUsine.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblUsine.Location = new System.Drawing.Point(1104, 680);
this.lblUsine.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblUsine.Name = "lblUsine";
this.lblUsine.Size = new System.Drawing.Size(64, 25);
this.lblUsine.TabIndex = 16;
this.lblUsine.Tag = "4";
this.lblUsine.Text = "label5";
//
// mapView1
//
this.mapView1.AutoScroll = true;
this.mapView1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("mapView1.BackgroundImage")));
this.mapView1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.mapView1.ColumnCount = 2;
this.mapView1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.mapView1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.mapView1.Location = new System.Drawing.Point(29, 87);
this.mapView1.Margin = new System.Windows.Forms.Padding(2);
this.mapView1.Name = "mapView1";
this.mapView1.RowCount = 2;
this.mapView1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 13.81032F));
this.mapView1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 86.18968F));
this.mapView1.Size = new System.Drawing.Size(1218, 488);
this.mapView1.TabIndex = 11;
this.mapView1.Click += new System.EventHandler(this.mapView1_Click);
this.mapView1.Paint += new System.Windows.Forms.PaintEventHandler(this.mapView1_Paint);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.label1.Location = new System.Drawing.Point(1077, 24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(116, 25);
this.label1.TabIndex = 19;
this.label1.Text = "Objectif : 50";
//
// FormJeu
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(1280, 720);
this.Controls.Add(this.lblUsine);
this.Controls.Add(this.lblTrain);
this.Controls.Add(this.lblClub);
this.Controls.Add(this.lblChemins);
this.Controls.Add(this.lblRefuge);
this.Controls.Add(this.mapView1);
this.Controls.Add(this.btnClub);
this.Controls.Add(this.btnChemin);
this.Controls.Add(this.btnRefuge);
this.Controls.Add(this.btnTrain);
this.Controls.Add(this.btnUsine);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.Name = "FormJeu";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "FormJeu";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormJeu_FormClosed);
this.Load += new System.EventHandler(this.FormJeu_Load);
((System.ComponentModel.ISupportInitialize)(this.pbAide)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pbPersonnes)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pbAide;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button btnUsine;
private System.Windows.Forms.Button btnTrain;
private System.Windows.Forms.Button btnRefuge;
private System.Windows.Forms.Button btnChemin;
private System.Windows.Forms.Button btnClub;
private System.Windows.Forms.PictureBox pbPersonnes;
private Controls.MapView mapView1;
private System.Windows.Forms.Label lblTour;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label lblMarcheurRouge;
private System.Windows.Forms.Label lblArgentRouge;
private System.Windows.Forms.Label lblMarcheursUp;
private System.Windows.Forms.Label lblArgentUp;
private System.Windows.Forms.Label lblMarcheurBleu;
private System.Windows.Forms.Label lblArgentBleu;
private System.Windows.Forms.Label lblRefuge;
private System.Windows.Forms.Label lblChemins;
private System.Windows.Forms.Label lblClub;
private System.Windows.Forms.Label lblTrain;
private System.Windows.Forms.Label lblUsine;
private System.Windows.Forms.Label label1;
}
}
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Wanderer.controller;
using Wanderer.model;
using Wanderer.view.Controls;
namespace Wanderer.view
{
public partial class FormJeu : Form
{
int nombreTour=-1;
const int limiteRandonneur = 100;
const int limiteTerritoire = 200;
//TODO enlever bonus +10 quand une usine est build
int[] tbCouts = new int[] { 30, 10, 35, 15, 100 }; //Refuge,Chemin,Club,Train,Usine
int[] tbGains = new int[] { 5, 0, 0, 0, 10 };
int[] tbRandonneur = new[] { 3, 2, 6, 0, -10 };
int[] tbConstruct = new int[]{0, 0, 0, 0, 0}; //Refuge,Chemin,Club,Train,Usine
/**
* Action updateButtons()
* - vérifie si fond suffisant pour les éléments
* - si oui, enable + fond transparent
* - si non, disable + fond gris
* - premier tour grise tout sauf btn Train
* */
public void updateButtons()
{
Player currentPlayer = Game.Instance.Players[Game.Instance.currentPlayerIndex];
foreach (Object o in Controls)
{
if (o is Button b && b.Tag != null)
{
if (tbCouts[Convert.ToInt32(b.Tag)] > currentPlayer.marks)
{
b.Enabled = false;
b.BackColor = Color.Gray;
}
else
{
b.Enabled = true;
b.BackColor = Color.Transparent;
}
//Premier tour
if(nombreTour==0)
{
b.Visible = false;
btnTrain.Visible = true;
}
else
{
b.Visible = true;
btnTrain.Visible = false;
}
}
}
if (nombreTour % 10 ==0 && nombreTour != 0)
{
for( int i=0; i < tbConstruct.Length; i++)
{
if(i!=1)
tbCouts[i] += 5;
}
}
}
private void updateLabels()
{
foreach (Object o in Controls)
{
if (o is Label l && l.Tag != null)
{
//Premier tour
if (nombreTour == 0)
{
l.Visible = false;
lblTrain.Visible = true;
}
else
{
l.Visible = true;
lblTrain.Visible = false;
}
}
}
}
/**
* Action btnClick
* - vérifie si fond suffisant
* - mise en place de l'image
* - calculs des bonus des chemins et club
* - lance update()
**/
private void btn_Click(object sender, EventArgs e)
{
Player currentPlayer = Game.Instance.Players[Game.Instance.currentPlayerIndex];
Button b = (Button)sender;
Int32 i = Convert.ToInt32(b.Tag);
int cout = tbCouts[i];
currentPlayer.gain += tbGains[i];
//Calcul des marks et randonneurs, ajout d'image sur la map
if (currentPlayer.marks >= cout && MapView.SelectedTile != null && MapView.SelectedTile.model.Improvement == 0)
{
MapView.SelectedTile.model.Improvement = (Improvement) i;
if (!MapView.SelectedTile.model.HasChanged) return;
MapView.SelectedTile.model.Owner = currentPlayer;
tbConstruct[i]++;
if (tbConstruct[1] % 5 ==0 && tbConstruct[1]!=0)
{
currentPlayer.bonusCh += 1;
}
if (tbConstruct[2] % 5 == 0 && tbConstruct[2] != 0)
{
currentPlayer.bonusCl += 2;
}
currentPlayer.marks -= cout- currentPlayer.gain - 10;
currentPlayer.randonneurs += tbRandonneur[i]+currentPlayer.bonusCh+currentPlayer.bonusCl;
if (currentPlayer.randonneurs < 0)
{
currentPlayer.randonneurs = 0;
}
update();
}
}
/**
* Mise à jour des Lables et du MapView
**/
private void update()
{
Player currentPlayer = Game.Instance.Players[Game.Instance.currentPlayerIndex];
lblRefuge.Text = tbCouts[0].ToString();
lblChemins.Text = tbCouts[1].ToString();
lblClub.Text = tbCouts[2].ToString();
lblTrain.Text = tbCouts[3].ToString();
lblUsine.Text = tbCouts[4].ToString();
if (Game.Instance.currentPlayerIndex == 0)
{
lblArgentRouge.Text = "Argent :" + currentPlayer.marks;
lblMarcheurRouge.Text = "Marcheurs : " + currentPlayer.randonneurs;
nombreTour++;
}
if (Game.Instance.currentPlayerIndex == 1)
{
lblArgentBleu.Text = "Argent :" + currentPlayer.marks;
lblMarcheurBleu.Text = "Marcheurs : " + currentPlayer.randonneurs;
}
lblTour.Text = "Nombre d'action : " + nombreTour;
if (MapView.SelectedTile != null && MapView.SelectedTile.model.HasChanged)
{
MapView.SelectedTile.Image = image();
MapView.SelectedTile.BackColor = MapView.SelectedTile.model.Owner.Color;
MapView.SelectedTile.model.HasChanged = false;
}
updateButtons();
updateLabels();
if (currentPlayer.randonneurs >= 50)
{
FormFin f = new FormFin(currentPlayer,nombreTour);
f.Show();
this.Hide();
}
Game.Instance.currentPlayerIndex = (Game.Instance.currentPlayerIndex + 1) % Game.Instance.Players.Count;
currentPlayer = Game.Instance.Players[Game.Instance.currentPlayerIndex];
lblTour.ForeColor = currentPlayer.Color;
}
public void updateTailleTerritoire(int nombreClub, int nombreChemins, int nombreRefuges)
{
Player currentPlayer = Game.Instance.Players[Game.Instance.currentPlayerIndex];
currentPlayer.tailleTerritoire = nombreChemins * 5 + nombreRefuges * 10;
}
public void disable()
{
this.Enabled = false;
}
public FormJeu()
{
InitializeComponent();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
FormAide formAide = new FormAide();
formAide.Show();
}
private void FormJeu_Load(object sender, EventArgs e)
{
mapView1.Model = new Map(20, 10);
lblArgentBleu.Text = "Argent :" + 50;
lblMarcheurBleu.Text = "Marcheurs : " + 0;
update();
}
private void FormJeu_FormClosed(object sender, FormClosedEventArgs e)
{
Application.Exit();
}
public Image image()
{
switch (MapView.SelectedTile.model.Improvement)
{
case Improvement.Club:
return btnClub.Image;
case Improvement.Factory:
return btnUsine.Image;
case Improvement.Path:
return btnChemin.Image;
case Improvement.Refuge:
return btnRefuge.Image;
case Improvement.TrainStation:
return btnTrain.Image;
}
return null;
}
private void btnUsine_Click(object sender, EventArgs e)
{
}
private void btnTrain_Click(object sender, EventArgs e)
{
}
private void btnRefuge_Click(object sender, EventArgs e)
{
}
private void btnChemin_Click(object sender, EventArgs e)
{
}
private void btnClub_Click(object sender, EventArgs e)
{
}
private void mapView1_Paint(object sender, PaintEventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void mapView1_Click(object sender, EventArgs e)
{
}
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -33,52 +33,92 @@
this.btnPlay = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.btnAide = new System.Windows.Forms.Button();
this.lbltitre = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnPlay
//
this.btnPlay.Location = new System.Drawing.Point(322, 76);
this.btnPlay.BackColor = System.Drawing.Color.Transparent;
this.btnPlay.FlatAppearance.BorderSize = 3;
this.btnPlay.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.btnPlay.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnPlay.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPlay.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.btnPlay.Location = new System.Drawing.Point(637, 213);
this.btnPlay.Margin = new System.Windows.Forms.Padding(1);
this.btnPlay.Name = "btnPlay";
this.btnPlay.Size = new System.Drawing.Size(90, 34);
this.btnPlay.Size = new System.Drawing.Size(397, 158);
this.btnPlay.TabIndex = 0;
this.btnPlay.Text = "Jouer";
this.btnPlay.UseVisualStyleBackColor = true;
this.btnPlay.UseVisualStyleBackColor = false;
this.btnPlay.Click += new System.EventHandler(this.btnPlay_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(322, 251);
this.button1.BackColor = System.Drawing.Color.Transparent;
this.button1.FlatAppearance.BorderSize = 3;
this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.button1.Location = new System.Drawing.Point(637, 594);
this.button1.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(90, 34);
this.button1.Size = new System.Drawing.Size(397, 158);
this.button1.TabIndex = 1;
this.button1.Text = "Quitter";
this.button1.UseVisualStyleBackColor = true;
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// btnAide
//
this.btnAide.Location = new System.Drawing.Point(322, 167);
this.btnAide.BackColor = System.Drawing.Color.Transparent;
this.btnAide.FlatAppearance.BorderSize = 3;
this.btnAide.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Moccasin;
this.btnAide.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnAide.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAide.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.btnAide.Location = new System.Drawing.Point(637, 400);
this.btnAide.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5);
this.btnAide.Name = "btnAide";
this.btnAide.Size = new System.Drawing.Size(90, 34);
this.btnAide.Size = new System.Drawing.Size(397, 158);
this.btnAide.TabIndex = 2;
this.btnAide.Text = "Aide";
this.btnAide.UseVisualStyleBackColor = true;
this.btnAide.UseVisualStyleBackColor = false;
this.btnAide.Click += new System.EventHandler(this.btnAide_Click);
//
// lbltitre
//
this.lbltitre.AutoSize = true;
this.lbltitre.BackColor = System.Drawing.Color.Transparent;
this.lbltitre.Font = new System.Drawing.Font("Microsoft Sans Serif", 70F);
this.lbltitre.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.lbltitre.Location = new System.Drawing.Point(511, 44);
this.lbltitre.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lbltitre.Name = "lbltitre";
this.lbltitre.Size = new System.Drawing.Size(568, 132);
this.lbltitre.TabIndex = 3;
this.lbltitre.Text = "Wanderer";
//
// FormMainMenu
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(800, 450);
this.ClientSize = new System.Drawing.Size(1707, 862);
this.Controls.Add(this.lbltitre);
this.Controls.Add(this.btnAide);
this.Controls.Add(this.button1);
this.Controls.Add(this.btnPlay);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(1);
this.Name = "FormMainMenu";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Form1";
this.Text = "s";
this.Load += new System.EventHandler(this.FormMainMenu_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
......@@ -87,5 +127,6 @@
private System.Windows.Forms.Button btnPlay;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button btnAide;
private System.Windows.Forms.Label lbltitre;
}
}
\ No newline at end of file
......@@ -7,6 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Wanderer.controller;
using Wanderer.view;
namespace Wanderer
......@@ -21,6 +22,8 @@ namespace Wanderer
private void btnPlay_Click(object sender, EventArgs e)
{
FormJeu formJeu = new FormJeu();
Game.Instance = new Game();
this.Hide();
formJeu.Show();
}
......@@ -34,5 +37,16 @@ namespace Wanderer
FormAide formAide = new FormAide();
formAide.Show();
}
private void FormMainMenu_Load(object sender, EventArgs e)
{
}
private void btnPlay_MouseEnter(object sender, EventArgs e)
{
Button btn = sender as Button;
btn.BackColor = Color.Yellow;
}
}
}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.

namespace Wanderer.view
{
partial class FormAide
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(694, 385);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(94, 53);
this.button1.TabIndex = 0;
this.button1.Text = "Reprendre le jeu";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.label1.Location = new System.Drawing.Point(374, 31);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 19);
this.label1.TabIndex = 1;
this.label1.Text = "Aide";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(46, 17);
this.label2.TabIndex = 2;
this.label2.Text = "label2";
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.label2);
this.flowLayoutPanel1.Location = new System.Drawing.Point(149, 72);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(542, 307);
this.flowLayoutPanel1.TabIndex = 3;
//
// button2
//
this.button2.Location = new System.Drawing.Point(22, 157);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(101, 53);
this.button2.TabIndex = 4;
this.button2.Text = "Construction";
this.button2.UseVisualStyleBackColor = true;
//
// button3
//
this.button3.Location = new System.Drawing.Point(22, 82);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(101, 53);
this.button3.TabIndex = 5;
this.button3.Text = "Contexte historique";
this.button3.UseVisualStyleBackColor = true;
//
// button4
//
this.button4.Location = new System.Drawing.Point(22, 234);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(101, 53);
this.button4.TabIndex = 6;
this.button4.Text = "Blabla randoneurs";
this.button4.UseVisualStyleBackColor = true;
//
// button5
//
this.button5.Location = new System.Drawing.Point(22, 311);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(101, 53);
this.button5.TabIndex = 7;
this.button5.Text = "Comment gagner";
this.button5.UseVisualStyleBackColor = true;
//
// FormAide
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.button5);
this.Controls.Add(this.button4);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Name = "FormAide";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Aide";
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button button5;
}
}
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Wanderer.view
{
public partial class FormAide : Form
{
public FormAide()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
\ No newline at end of file

namespace Wanderer.view
{
partial class FormFin
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.SuspendLayout();
//
// FormFin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Name = "FormFin";
this.Text = "Fin";
this.ResumeLayout(false);
}
#endregion
}
}
\ No newline at end of file