Slight bugfix in new preset mode

这个提交包含在:
Starbeamrainbowlabs 2018-08-09 22:37:42 +01:00
父节点 494e8c09fa
当前提交 f92154b228
签署人:: sbrl
GPG 密钥 ID: 1BE5172E637709C2
共有 2 个文件被更改,包括 6 次插入3 次删除

查看文件

@ -61,8 +61,10 @@ namespace SpritePacker
string presetFilename = args[++i];
if (File.Exists(presetFilename))
rawSourceLocations = File.ReadAllText(presetFilename);
else
else {
Console.Error.WriteLine("Warning: Couldn't find the preset csv file at {0}", presetFilename);
return 1;
}
break;
case "--csv":
outputFormat = OutputFormat.CSV;
@ -120,7 +122,7 @@ namespace SpritePacker
// Preset some locations if they were specified
if (rawSourceLocations != null) {
foreach (string[] line in parseCSV(rawSourceLocations).Skip(1)) { // Skip the header
// index,filename,x,y,width,height
// index,filename,x,y,width,height
Sprite currentSprite = sprites.Find((Sprite item) => item.Filename == line[1]);
currentSprite.Area = new Rectangle(
int.Parse(line[2]),
@ -129,6 +131,7 @@ namespace SpritePacker
int.Parse(line[5])
);
currentSprite.Placed = true;
if(Verbose) Console.WriteLine("Pre-placing {0}", currentSprite);
}
}
spritePacker.Add(sprites);

查看文件

@ -155,7 +155,7 @@ namespace SpritePacker
if (probSpr.Bottom > downProblem.Bottom)
downProblem = probSpr;
// If the current problem's right edge is further in than the current next scan line,
// move the enxt scan line up to meet it.
// move the next scan line up to meet it.
// Also make sure that the next scan line and the current scan line don't touch or cross.
if (probSpr.Right < nextScanLines.X && probSpr.Right > scanLines.X)
nextScanLines.X = probSpr.Right; // NOTE: Add one here?