PotatoPlan/Game1/Sources/Crops/Crops.cs

290 lines
9.4 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
2020-05-06 16:22:30 +02:00
using Microsoft.Xna.Framework.Input;
class Crops
{
2020-05-05 16:27:45 +02:00
private int Status;
private int originalStatus;
private int cropType = 0;
2020-05-07 13:53:07 +02:00
private float Timer = 1;
2020-05-07 01:55:52 +02:00
private int UpdateCrop;
2020-05-07 13:53:07 +02:00
private float fullTimer;
2020-05-05 16:27:45 +02:00
private bool housePos = false;
2020-05-06 16:22:30 +02:00
private Vector2 Size;
2020-05-07 01:55:52 +02:00
private CropTypes DataSet;
2020-05-06 16:22:30 +02:00
SoilProperties soilProperties = new SoilProperties();
private float ProductionRate;
2020-05-06 16:22:30 +02:00
2020-05-03 13:05:05 +02:00
2020-05-06 16:22:30 +02:00
public void updateCrop(Vector2 newSize)
{
2020-05-07 13:53:07 +02:00
getProductionRate();
if (UpdateCrop == 60)
{
degradeSoil();
UpdateCrop = 0;
}
2020-05-07 01:55:52 +02:00
if (Status == 3 && Timer != 1)
2020-05-06 16:22:30 +02:00
{
Timer = Timer - 1f * ProductionRate;
2020-05-06 16:22:30 +02:00
}
Size = newSize;
2020-05-07 01:55:52 +02:00
UpdateCrop++;
2020-05-07 13:53:07 +02:00
if (Timer < 1)
{
Timer = 1;
}
2020-05-07 01:55:52 +02:00
}
public SoilProperties getSoilProperties()
{
return soilProperties;
}
2020-05-07 13:53:07 +02:00
public float getCropTimer()
{
return Timer;
}
2020-05-05 16:27:45 +02:00
public int getCropTimerBar(int tileSize)
{
2020-05-06 16:22:30 +02:00
int x = (int)((1 - ((float)Timer / fullTimer)) * (tileSize - tileSize / 3));
2020-05-05 16:27:45 +02:00
return x;
}
2020-05-06 16:22:30 +02:00
public void init()
{
soilProperties.setSoilProperties();
}
2020-05-05 16:27:45 +02:00
// Changes the time required for the crops to be harvestable
public void setCropTimer()
{
if (cropType == 0) // Carrots
{
Timer = 300;
fullTimer = Timer;
}
else if (cropType == 1) // Wheat
{
Timer = 600;
fullTimer = Timer;
}
else if (cropType == 2) // Berries
{
Timer = 1200;
fullTimer = Timer;
}
else // Fruit Trees
{
Timer = 2400;
fullTimer = Timer;
2020-05-06 16:22:30 +02:00
}
2020-05-05 16:27:45 +02:00
}
2020-05-03 13:05:05 +02:00
public int getCostOnMovement()
{
if (Status == 1) //grass
2020-05-03 13:05:05 +02:00
{
return 1;
}
else if (Status == 2) //dirt
2020-05-03 13:05:05 +02:00
{
return 8;
2020-05-03 13:05:05 +02:00
}
2020-05-07 01:55:52 +02:00
else
2020-05-03 13:05:05 +02:00
{
2020-05-05 16:27:45 +02:00
if (cropType == 0)
{
return 15; //Carrots
}
else if (cropType == 1)
{
return 30; //Wheat
}
else if (cropType == 2)
{
return 40; //Berries
}
else
{
return 50; //Fruit Trees
}
2020-05-03 13:05:05 +02:00
}
2020-05-07 01:55:52 +02:00
}
public void degradeSoil()
{
if (soilProperties.Nitrogen > 4.0f)
2020-05-03 13:05:05 +02:00
{
2020-05-07 01:55:52 +02:00
soilProperties.Nitrogen = soilProperties.Nitrogen - soilProperties.NitrogenDegradeRate;
2020-05-03 13:05:05 +02:00
}
2020-05-07 01:55:52 +02:00
if (soilProperties.Phosphorous > 0.1f)
{
soilProperties.Phosphorous = soilProperties.Phosphorous - soilProperties.PhosphorousDegradeRate;
}
if (soilProperties.Potassium > 0.1f)
{
soilProperties.Potassium = soilProperties.Potassium - soilProperties.PotassiumDegradeRate;
}
}
2020-05-06 16:22:30 +02:00
2020-05-07 01:55:52 +02:00
public void setCropType(int Type, CropTypes nCropType)
{
2020-05-07 01:55:52 +02:00
DataSet = nCropType;
2020-05-05 16:27:45 +02:00
cropType = Type;
}
2020-05-03 13:05:05 +02:00
2020-05-05 16:27:45 +02:00
public int getStatus()
{
2020-05-07 01:55:52 +02:00
if (Status != 3)
2020-05-05 16:27:45 +02:00
{
return Status;
}
else
{
return Status; // + cropType; When unique crop textures have been added
}
}
public int getCropType()
{
return cropType;
}
public void setStatus(int newStatus)
{
Status = newStatus;
}
public void setOriginalStatus()
{
originalStatus = Status;
}
public void setHousePos(bool state)
{
housePos = state;
if (state)
{
Status = 1;
}
else
{
Status = originalStatus;
}
}
public bool getHousePos()
2020-05-03 13:05:05 +02:00
{
2020-05-05 16:27:45 +02:00
return housePos;
2020-05-03 13:05:05 +02:00
}
2020-05-06 16:22:30 +02:00
public float getProductionRate(CropTypes Sample)
2020-05-07 01:55:52 +02:00
{
2020-05-07 13:53:07 +02:00
ProductionRate = 1;
2020-05-07 01:55:52 +02:00
if (DataSet != null)
{
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Temperature, DataSet.Temparature));
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Moisture, DataSet.Moisture));
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Humidity, DataSet.Humidity));
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Phosphorous, DataSet.Phosphorous));
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Potassium, DataSet.Potassium));
ProductionRate = ProductionRate + (ProductionRate * compareToDatset(soilProperties.Nitrogen, DataSet.Nitrogen));
2020-05-07 01:55:52 +02:00
if (ProductionRate < 0)
{
2020-05-07 13:53:07 +02:00
ProductionRate = 0;
2020-05-07 01:55:52 +02:00
}
ProductionRate = ProductionRate / 20;
2020-05-07 01:55:52 +02:00
}
return ProductionRate;
2020-05-07 01:55:52 +02:00
}
public float compareToDatset(float i, float j)
{
if (i < j)
2020-05-07 13:53:07 +02:00
{
return (i / j);
2020-05-07 01:55:52 +02:00
}
else
{
return (j / i);
2020-05-07 01:55:52 +02:00
}
2020-05-07 01:55:52 +02:00
}
2020-05-06 16:22:30 +02:00
public void Inspect(int tileSize, int Spacing, SpriteFont Bold, SpriteBatch spriteBatch, string[] cropTypesNames)
{
spriteBatch.Begin();
if (housePos)
{
spriteBatch.DrawString(Bold, "Tiletype: House", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
}
else if (Status == 0)
{
spriteBatch.DrawString(Bold, "Tiletype: Boulders", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
}
else if (Status == 1)
{
spriteBatch.DrawString(Bold, "Tiletype: Grassfield", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
}
else if (Status == 2)
{
spriteBatch.DrawString(Bold, "Tiletype: Soil", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
}
else if (Status == 3)
{
int x = (int)(((float)Timer / fullTimer) * 100);
x = 100 - x;
spriteBatch.DrawString(Bold, "Tiletype: Crop ", new Vector2(240, Size.Y * (tileSize + Spacing) + 42), Color.DarkBlue);
spriteBatch.DrawString(Bold, "Completion: " + x + "%", new Vector2(240, Size.Y * (tileSize + Spacing) + 82), Color.DarkBlue);
}
2020-05-07 01:55:52 +02:00
if (Status != 3)
2020-05-06 16:22:30 +02:00
{
spriteBatch.DrawString(Bold, "-------------", new Vector2(240, Size.Y * (tileSize + Spacing) + 82), Color.DarkRed);
}
if (Status > 1)
{
spriteBatch.DrawString(Bold, "Prefered Crop: " + cropTypesNames[cropType], new Vector2(240, Size.Y * (tileSize + Spacing) + 62), Color.DarkBlue);
}
else
{
spriteBatch.DrawString(Bold, "None", new Vector2(240, Size.Y * (tileSize + Spacing) + 62), Color.DarkBlue);
}
spriteBatch.DrawString(Bold, "Soil Properties:", new Vector2(240, Size.Y * (tileSize + Spacing) + 122), Color.DarkRed);
2020-05-07 01:55:52 +02:00
spriteBatch.DrawString(Bold, "Soil Type: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 142), Color.DarkRed);
spriteBatch.DrawString(Bold, soilProperties.soilType, new Vector2(370, Size.Y * (tileSize + Spacing) + 142), Color.DarkBlue);
spriteBatch.DrawString(Bold, "Temparature: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 162), Color.DarkRed);
spriteBatch.DrawString(Bold, soilProperties.Temperature.ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 162), Color.DarkBlue);
spriteBatch.DrawString(Bold, "Moisture: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 182), Color.DarkRed);
spriteBatch.DrawString(Bold, soilProperties.Moisture.ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 182), Color.DarkBlue);
spriteBatch.DrawString(Bold, "Humidity: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 202), Color.DarkRed);
spriteBatch.DrawString(Bold, soilProperties.Humidity.ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 202), Color.DarkBlue);
spriteBatch.DrawString(Bold, "Phosphorous: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 222), Color.DarkRed);
2020-05-07 13:53:07 +02:00
spriteBatch.DrawString(Bold, Math.Round(soilProperties.Phosphorous,1).ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 222), Color.DarkBlue);
2020-05-07 01:55:52 +02:00
spriteBatch.DrawString(Bold, "Potassium: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 242), Color.DarkRed);
2020-05-07 13:53:07 +02:00
spriteBatch.DrawString(Bold, Math.Round(soilProperties.Potassium, 1).ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 242), Color.DarkBlue);
2020-05-07 01:55:52 +02:00
spriteBatch.DrawString(Bold, "Nitrogen: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 262), Color.DarkRed);
2020-05-07 13:53:07 +02:00
spriteBatch.DrawString(Bold, Math.Round(soilProperties.Nitrogen, 1).ToString(), new Vector2(370, Size.Y * (tileSize + Spacing) + 262), Color.DarkBlue);
2020-05-07 01:55:52 +02:00
spriteBatch.DrawString(Bold, "Production Rate: ", new Vector2(240, Size.Y * (tileSize + Spacing) + 282), Color.DarkRed);
2020-05-07 13:53:07 +02:00
spriteBatch.DrawString(Bold, Math.Round((ProductionRate * 100), 1).ToString() + "%", new Vector2(370, Size.Y * (tileSize + Spacing) + 282), Color.DarkBlue);
2020-05-06 16:22:30 +02:00
spriteBatch.End();
}
}