Cleanup, refactor, fix negative gmap dimension allowance

This commit is contained in:
Aaron Yarborough 2019-10-28 16:41:14 +00:00
parent 97597b086e
commit e2c5097b23
4 changed files with 12 additions and 45 deletions

View file

@ -1,11 +1,4 @@
using System; namespace GraalGmapGenerator
using System.Collections.Generic;
using System.Linq;
using System.Text;
// Test Comment
namespace GraalGmapGenerator
{ {
public class Gmap public class Gmap
{ {
@ -19,19 +12,12 @@ namespace GraalGmapGenerator
public bool LoadFullMap { get; set; } public bool LoadFullMap { get; set; }
#region Constructors
public Gmap()
{
}
public Gmap( public Gmap(
string name, string name,
int width, int width,
int height, int height,
bool noAutomapping = false, bool noAutomapping = false,
bool loadFullMap = false) bool loadFullMap = false)
: this()
{ {
Name = name; Name = name;
Width = width; Width = width;
@ -39,9 +25,5 @@ namespace GraalGmapGenerator
NoAutomapping = noAutomapping; NoAutomapping = noAutomapping;
LoadFullMap = loadFullMap; LoadFullMap = loadFullMap;
} }
#endregion
} }
} }

View file

@ -1,8 +1,4 @@
using System; namespace GraalGmapGenerator
using System.Collections.Generic;
using System.Text;
namespace GraalGmapGenerator
{ {
public class GmapBuilder public class GmapBuilder
{ {

View file

@ -7,11 +7,7 @@ namespace GraalGmapGenerator
{ {
public class GmapContentGenerator public class GmapContentGenerator
{ {
private LevelType _levelType = LevelType.Nw; readonly LevelType _levelType;
public GmapContentGenerator()
{
}
public GmapContentGenerator(LevelType levelType) public GmapContentGenerator(LevelType levelType)
{ {
@ -38,23 +34,16 @@ namespace GraalGmapGenerator
stringBuilder.AppendLine("LEVELNAMES"); stringBuilder.AppendLine("LEVELNAMES");
var levelNames = GetLevelNames(gmap); var levelNames = GetLevelNames(gmap).ToList();
for (var i = 0; i < levelNames.Count(); i++) for (var i = 0; i < levelNames.Count; i++)
{ {
// Start a new line once the current line has // Start a new line once the current line has hit the width of the gmap
// hit the width of the gmap
if (i > 0 && i % gmap.Width == 0) if (i > 0 && i % gmap.Width == 0)
stringBuilder.AppendLine(); stringBuilder.AppendLine();
var levelName = GetLevelName(i, gmap.Name, _levelType); var levelName = GetLevelName(i, gmap.Name, _levelType);
stringBuilder.Append($"\"{levelName}\""); stringBuilder.Append($"\"{levelName}\"");
// If at the end of the row
// lol hmmm no
// oh maybe
// we'll see 0.0)>[::]
// Only append a comma if its NOT the end of the row // Only append a comma if its NOT the end of the row
if (i % gmap.Width < (gmap.Width - 1)) if (i % gmap.Width < (gmap.Width - 1))
{ {

View file

@ -17,26 +17,26 @@ namespace GraalGmapGenerator
Console.WriteLine("Gmap width (in levels, for example: 8)..."); Console.WriteLine("Gmap width (in levels, for example: 8)...");
// need to handle errors // need to handle errors
int width = 0; int width;
do do
{ {
var isValid = int.TryParse(Console.ReadLine(), out width); var isValid = int.TryParse(Console.ReadLine(), out width) && width > 0;
if (!isValid) if (!isValid)
{ {
Console.WriteLine("Please enter a valid gmap width!"); Console.WriteLine("Please enter a valid gmap width!");
} }
} while (width == 0); } while (width <= 0);
Console.WriteLine("Gmap height (in levels, for example: 5)..."); Console.WriteLine("Gmap height (in levels, for example: 5)...");
int height = 0; int height;
do do
{ {
var isValid = int.TryParse(Console.ReadLine(), out height); var isValid = int.TryParse(Console.ReadLine(), out height) && height > 0;
if (!isValid) if (!isValid)
{ {
Console.WriteLine("Please enter a valid gmap height!"); Console.WriteLine("Please enter a valid gmap height!");
} }
} while (width == 0); } while (height <= 0);
mapBuilder.SetDimensions(width, height); mapBuilder.SetDimensions(width, height);