@@ -17,6 +17,7 @@ string projFolder = GetFolder(FilePath) + GameName + ".gmx" + Path.DirectorySepa
17
17
TextureWorker worker = new TextureWorker ( ) ;
18
18
ThreadLocal < DecompileContext > DECOMPILE_CONTEXT = new ThreadLocal < DecompileContext > ( ( ) => new DecompileContext ( Data , false ) ) ;
19
19
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"
20
21
21
22
if ( Directory . Exists ( projFolder ) )
22
23
{
@@ -134,7 +135,7 @@ void ExportSprite(UndertaleSprite sprite)
134
135
}
135
136
}
136
137
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 ) ;
138
139
139
140
// Save sprite images
140
141
for ( int i = 0 ; i < sprite . Textures . Count ; i ++ )
@@ -179,7 +180,7 @@ void ExportBackground(UndertaleBackground background)
179
180
)
180
181
) ;
181
182
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 ) ;
183
184
184
185
// Save background images
185
186
if ( background . Texture != null )
@@ -296,7 +297,7 @@ void ExportGameObject(UndertaleGameObject gameObject)
296
297
}
297
298
}
298
299
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 ) ;
300
301
}
301
302
302
303
// --------------- Export Room ---------------
@@ -322,6 +323,7 @@ void ExportRoom(UndertaleRoom room)
322
323
new XElement ( "speed" , room . Speed . ToString ( ) ) ,
323
324
new XElement ( "persistent" , BoolToString ( room . Persistent ) ) ,
324
325
new XElement ( "colour" , room . BackgroundColor . ToString ( ) ) ,
326
+ new XElement ( "showcolour" , BoolToString ( room . DrawBackgroundColor ) ) ,
325
327
new XElement ( "code" , room . CreationCodeId != null ? Decompiler . Decompile ( room . CreationCodeId , DECOMPILE_CONTEXT . Value ) : "" ) ,
326
328
new XElement ( "enableViews" , BoolToString ( room . Flags . HasFlag ( UndertaleRoom . RoomEntryFlags . EnableViews ) ) ) ,
327
329
new XElement ( "clearViewBackground" , BoolToString ( room . Flags . HasFlag ( UndertaleRoom . RoomEntryFlags . ShowColor ) ) ) ,
@@ -374,7 +376,8 @@ void ExportRoom(UndertaleRoom room)
374
376
new XAttribute ( "objName" , i . ObjectId is null ? "<undefined>" : i . ObjectId . Name . Content ) ,
375
377
new XAttribute ( "xview" , i . ViewX . ToString ( ) ) ,
376
378
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 ( ) ) ,
378
381
new XAttribute ( "xport" , i . PortX . ToString ( ) ) ,
379
382
new XAttribute ( "yport" , i . PortY . ToString ( ) ) ,
380
383
new XAttribute ( "wport" , i . PortWidth . ToString ( ) ) ,
@@ -445,7 +448,7 @@ void ExportRoom(UndertaleRoom room)
445
448
new XElement ( "PhysicsWorldPixToMeters" , room . MetersPerPixel )
446
449
) ;
447
450
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 ) ;
449
452
}
450
453
451
454
// --------------- Export Sound ---------------
@@ -491,7 +494,7 @@ void ExportSound(UndertaleSound sound)
491
494
)
492
495
) ;
493
496
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 ) ;
495
498
496
499
// Save sound files
497
500
if ( sound . AudioFile != null )
@@ -561,7 +564,7 @@ void ExportFont(UndertaleFont font)
561
564
glyphsNode . Add ( glyphNode ) ;
562
565
}
563
566
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 ) ;
565
568
566
569
// Save font textures
567
570
worker . ExportAsPNG ( font . Texture , projFolder + "/fonts/" + font . Name . Content + ".png" ) ;
@@ -598,7 +601,7 @@ void ExportPath(UndertalePath path)
598
601
) ;
599
602
}
600
603
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 ) ;
602
605
}
603
606
604
607
// --------------- Export Timelines ---------------
@@ -649,7 +652,7 @@ void ExportTimeline(UndertaleTimeline timeline)
649
652
gmx . Element ( "timeline" ) . Add ( entryNode ) ;
650
653
}
651
654
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 ) ;
653
656
}
654
657
655
658
@@ -674,7 +677,7 @@ void GenerateProjectFile()
674
677
WriteIndexes < UndertalePath > ( gmx . Element ( "assets" ) , "paths" , "paths" , Data . Paths , "path" , "paths\\ " ) ;
675
678
WriteIndexes < UndertaleTimeline > ( gmx . Element ( "assets" ) , "timelines" , "timelines" , Data . Timelines , "timeline" , "timelines\\ " ) ;
676
679
677
- File . WriteAllText ( projFolder + GameName + ".project.gmx" , gmx . ToString ( ) ) ;
680
+ File . WriteAllText ( projFolder + GameName + ".project.gmx" , gmx . ToString ( ) + eol ) ;
678
681
}
679
682
680
683
void WriteIndexes < T > ( XElement rootNode , string elementName , string attributeName , IList < T > dataList , string oneName , string resourcePath , string fileExtension = "" )
0 commit comments