BreakGOLD: PoC Asset transplanting

Leave a Comment
BreakGOLD: PoC Asset Transplanting


Nope! BreakGOLD modding and development on Sonic CD Breakout is not dead yet! Although development of both has been put on the backburner, I did determine how to transplant a custom BreakGOLD table mod (such as Sonic CD Breakout) to the Android version, and Android-exclusive assets to the PC version. The results and method are not streamlined yet, but as a PoC, it works. Bugs with the transplant include no audio, lack of transparency on images, and a higher paddle. Such transplanting features will (eventually) be implemented into the next version of the BreakGOLD Editor. The next demo release of Sonic CD Breakout may have an Android port once I perfect the issues.



More coming soon!

Quick 8.3 filename conversion

Leave a Comment
Quick 8.3 filename conversion

   It has been sometime since I have posted some Windows Tips at this blog. The other day, I was tinkering around with a Windows 95 Virtual Machine, in order to try and install/play a CD copy of Megaman X I found at Goodwill two years ago. Unfortunately, the video game installer and the game itself on the CD were MS-DOS based, and would only accept 8.3 filenames for the installation directory ;_;. Whatever shall we do?!

   As I found in a MSDN forum, you could create a VB script, and then drag n' drop a file from another window on it, or simply cut/paste the original path directory in the script's pop box. Just open up Notepad, paste the following script code, save as .vbs, and chug away!

Set fso=CreateObject("Scripting.FileSystemObject")

' Is object a file or folder?
If fso.FolderExists(WScript.Arguments(0)) Then
'It's a folder
Set objFolder = fso.GetFolder(WScript.Arguments(0))
rtrn = InputBox("Here's your short path:", "SHORT PATH", objFolder.ShortPath)
End If

If fso.FileExists(WScript.Arguments(0)) Then
'It's a file
Set objFile = fso.GetFile(WScript.Arguments(0))
rtrn = InputBox("Here's your short path:", "SHORT PATH", objFile.ShortPath)
End If 

Have fun! (Now to get back and kick some robot butt!)



 
Copyright EagleSoft Ltd. Powered by Blogger.