Imagine you have a random maze generator and you want to output it to CC3. You could export a script. It would redraw your maze one line at a time.
But there are also some problems with scripts:
- You have to run them. This may sound obvious but consider that you have to either know the text command to open and run a script file, or you need to know where in the menu system it is.
- Scripts are slow. CC3 will have to take your script and run it line-by-line. Its as if you had set down and typed in the commands directly into CC3.
- Scripts are not exactly fragile, but they are not very robust either. And, if your script fails, your users are the ones that are going to get frustrated.
One last twist – the .FCW file could be compressed.
The .FCW file format is made up of many different “Blocks” of data. The first 4 bytes of each block (except for the first block) contains the number of bytes that the following block contains. It starts with the FileID block. The FileID block is the only block that is guaranteed to be uncompressed. This 128 byte block contains quite a bit of general info on the file. It identifies what type of file it is to other programs, and the version and sub-version number of the file format is was built with. Last, but not least, it informs the reader that bytes after byte 128 are compressed or not. (To save an uncompressed file, after you have clicked "Save As ...", you will be presented with the save file dialog. If you click on the options button, you will be presented with a small dialog box. Uncheck the "File Compression" option)
For this first blog post on the .FCW file format, I will show you how to read a binary file into a byte array and how to display it, byte-by-byte in a textbox similar to all the binary editors display it. Being able to look inside a binary file will come in very handy in the future. Last but not least I will show you FILEID object.
Code Snippet – How to read an entire file into a byte array
- public byte[] ConvertFileToByteArray(string fileName)
- {
- byte[] buffer;
- using (var fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read))
- {
- using (var binaryReader = new BinaryReader(fileStream))
- {
- buffer = binaryReader.ReadBytes((int)new FileInfo(fileName).Length);
- binaryReader.Close();
- }
- fileStream.Close();
- }
- return buffer;
- }
Code Snippet – SubArray extension method
- public static class Extensions
- {
- public static T[] SubArray<T>(this T[] data, int index, int length)
- {
- var result = new T[length];
- Array.Copy(data, index, result, 0, length);
- return result;
- }
- }
Code Snippet
- using System;
- using System.Text;
- namespace DisplayBinaryFile
- {
- public class FILEID
- {
- #region Fields
- public char[] ProgId = new char[26];
- public char[] VerText = new char[4];
- public char[] VerTextS = new char[14];
- public byte[] DosChars = new byte[3];
- public byte DBVer;
- public bool Compressed;
- public byte[] Filler = new byte[78];
- public byte EndFileID;
- #endregion
- public int Length { get; set; }
- public FILEID(byte[] buffer)
- {
- ProgId = Encoding.ASCII.GetChars(buffer.SubArray(0, 26));
- VerText = Encoding.ASCII.GetChars(buffer.SubArray(26, 4));
- VerTextS = Encoding.ASCII.GetChars(buffer.SubArray(30, 14));
- DosChars = buffer.SubArray(44, 3);
- DBVer = buffer.SubArray(47, 1)[0];
- Compressed = BitConverter.ToBoolean(buffer.SubArray(48, 1), 0);
- Filler = buffer.SubArray(49, 78);
- EndFileID = buffer.SubArray(127, 1)[0];
- Length = 128;
- }
- public byte[] GetBytes()
- {
- var returnValue = new byte[Length];
- Array.Copy(Encoding.ASCII.GetBytes(ProgId), 0, returnValue, 0, 26);
- Array.Copy(Encoding.ASCII.GetBytes(VerText), 0, returnValue, 26, 4);
- Array.Copy(Encoding.ASCII.GetBytes(VerTextS), 0, returnValue, 30, 14);
- Array.Copy(DosChars, 0, returnValue, 44, 3);
- Array.Copy(BitConverter.GetBytes(DBVer), 0, returnValue, 47, 1);
- Array.Copy(BitConverter.GetBytes(Compressed), 0, returnValue, 48, 1);
- Array.Copy(Filler, 0, returnValue, 49, 78);
- Array.Copy(BitConverter.GetBytes(EndFileID), 0, returnValue, 127, 1);
- return returnValue;
- }
- }
- }
No comments:
Post a Comment