Skip to content

Commit 924c4a1

Browse files
Merge branch 'master' into fix/bbox_right-repeated
2 parents 39b8958 + 0985450 commit 924c4a1

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

ExportToGMS1Project.csx

+13-10
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ string projFolder = GetFolder(FilePath) + GameName + ".gmx" + Path.DirectorySepa
1717
TextureWorker worker = new TextureWorker();
1818
ThreadLocal<DecompileContext> DECOMPILE_CONTEXT = new ThreadLocal<DecompileContext>(() => new DecompileContext(Data, false));
1919
string gmxDeclaration = "This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!";
20+
string eol = "\n"; // Linux: "\n", Windows: "\r\n"
2021

2122
if (Directory.Exists(projFolder))
2223
{
@@ -134,7 +135,7 @@ void ExportSprite(UndertaleSprite sprite)
134135
}
135136
}
136137

137-
File.WriteAllText(projFolder + "/sprites/" + sprite.Name.Content + ".sprite.gmx", gmx.ToString());
138+
File.WriteAllText(projFolder + "/sprites/" + sprite.Name.Content + ".sprite.gmx", gmx.ToString() + eol);
138139

139140
// Save sprite images
140141
for (int i = 0; i < sprite.Textures.Count; i++)
@@ -179,7 +180,7 @@ void ExportBackground(UndertaleBackground background)
179180
)
180181
);
181182

182-
File.WriteAllText(projFolder + "/background/" + background.Name.Content + ".background.gmx", gmx.ToString());
183+
File.WriteAllText(projFolder + "/background/" + background.Name.Content + ".background.gmx", gmx.ToString() + eol);
183184

184185
// Save background images
185186
if (background.Texture != null)
@@ -296,7 +297,7 @@ void ExportGameObject(UndertaleGameObject gameObject)
296297
}
297298
}
298299

299-
File.WriteAllText(projFolder + "/objects/" + gameObject.Name.Content + ".object.gmx", gmx.ToString() + "\n");
300+
File.WriteAllText(projFolder + "/objects/" + gameObject.Name.Content + ".object.gmx", gmx.ToString() + eol);
300301
}
301302

302303
// --------------- Export Room ---------------
@@ -322,6 +323,7 @@ void ExportRoom(UndertaleRoom room)
322323
new XElement("speed", room.Speed.ToString()),
323324
new XElement("persistent", BoolToString(room.Persistent)),
324325
new XElement("colour", room.BackgroundColor.ToString()),
326+
new XElement("showcolour", BoolToString(room.DrawBackgroundColor)),
325327
new XElement("code", room.CreationCodeId != null ? Decompiler.Decompile(room.CreationCodeId, DECOMPILE_CONTEXT.Value) : ""),
326328
new XElement("enableViews", BoolToString(room.Flags.HasFlag(UndertaleRoom.RoomEntryFlags.EnableViews))),
327329
new XElement("clearViewBackground", BoolToString(room.Flags.HasFlag(UndertaleRoom.RoomEntryFlags.ShowColor))),
@@ -374,7 +376,8 @@ void ExportRoom(UndertaleRoom room)
374376
new XAttribute("objName", i.ObjectId is null ? "<undefined>" : i.ObjectId.Name.Content),
375377
new XAttribute("xview", i.ViewX.ToString()),
376378
new XAttribute("yview", i.ViewY.ToString()),
377-
new XAttribute("wview", i.ViewHeight.ToString()),
379+
new XAttribute("wview", i.ViewWidth.ToString()),
380+
new XAttribute("hview", i.ViewHeight.ToString()),
378381
new XAttribute("xport", i.PortX.ToString()),
379382
new XAttribute("yport", i.PortY.ToString()),
380383
new XAttribute("wport", i.PortWidth.ToString()),
@@ -445,7 +448,7 @@ void ExportRoom(UndertaleRoom room)
445448
new XElement("PhysicsWorldPixToMeters", room.MetersPerPixel)
446449
);
447450

448-
File.WriteAllText(projFolder + "/rooms/" + room.Name.Content + ".room.gmx", gmx.ToString() + "\n");
451+
File.WriteAllText(projFolder + "/rooms/" + room.Name.Content + ".room.gmx", gmx.ToString() + eol);
449452
}
450453

451454
// --------------- Export Sound ---------------
@@ -491,7 +494,7 @@ void ExportSound(UndertaleSound sound)
491494
)
492495
);
493496

494-
File.WriteAllText(projFolder + "/sound/" + sound.Name.Content + ".sound.gmx", gmx.ToString() + "\n");
497+
File.WriteAllText(projFolder + "/sound/" + sound.Name.Content + ".sound.gmx", gmx.ToString() + eol);
495498

496499
// Save sound files
497500
if (sound.AudioFile != null)
@@ -561,7 +564,7 @@ void ExportFont(UndertaleFont font)
561564
glyphsNode.Add(glyphNode);
562565
}
563566

564-
File.WriteAllText(projFolder + "/fonts/" + font.Name.Content + ".font.gmx", gmx.ToString());
567+
File.WriteAllText(projFolder + "/fonts/" + font.Name.Content + ".font.gmx", gmx.ToString() + eol);
565568

566569
// Save font textures
567570
worker.ExportAsPNG(font.Texture, projFolder + "/fonts/" + font.Name.Content + ".png");
@@ -598,7 +601,7 @@ void ExportPath(UndertalePath path)
598601
);
599602
}
600603

601-
File.WriteAllText(projFolder + "/paths/" + path.Name.Content + ".path.gmx", gmx.ToString());
604+
File.WriteAllText(projFolder + "/paths/" + path.Name.Content + ".path.gmx", gmx.ToString() + eol);
602605
}
603606

604607
// --------------- Export Timelines ---------------
@@ -649,7 +652,7 @@ void ExportTimeline(UndertaleTimeline timeline)
649652
gmx.Element("timeline").Add(entryNode);
650653
}
651654

652-
File.WriteAllText(projFolder + "/timelines/" + timeline.Name.Content + ".timeline.gmx", gmx.ToString());
655+
File.WriteAllText(projFolder + "/timelines/" + timeline.Name.Content + ".timeline.gmx", gmx.ToString() + eol);
653656
}
654657

655658

@@ -674,7 +677,7 @@ void GenerateProjectFile()
674677
WriteIndexes<UndertalePath>(gmx.Element("assets"), "paths", "paths", Data.Paths, "path", "paths\\");
675678
WriteIndexes<UndertaleTimeline>(gmx.Element("assets"), "timelines", "timelines", Data.Timelines, "timeline", "timelines\\");
676679

677-
File.WriteAllText(projFolder + GameName + ".project.gmx", gmx.ToString());
680+
File.WriteAllText(projFolder + GameName + ".project.gmx", gmx.ToString() + eol);
678681
}
679682

680683
void WriteIndexes<T>(XElement rootNode, string elementName, string attributeName, IList<T> dataList, string oneName, string resourcePath, string fileExtension = "")

0 commit comments

Comments
 (0)