Mark has been putting a lot of work into improving our users’ experience on the website. We wanted to make things easier to register, to find things, and let you download all your software there, not just upgrades and patches. We also added rewards and offers, and made tech support easier and quicker. Log in here to see more. If you have any problems, let us know.

Here is what’s on offer.

  • The new tabbed layout makes it easy to find what you need
  • You can register for the first time from any order page, or add an new order to your registration at the click of a button
  • You can see exclusive offers for registered users only
  • You can download all your registered products, even if they are 10 years old
  • You can earn vouchers or cold, hard cash (paypal, actually) through our rewards scheme, with instant totals
  • Support is streamlined, with the most common issues covered, a knowledge base and easy access to personal email support if you need it

First a warning – The .FCW file format is BINARY!  If you do not feel comfortable playing with bits and bytes, this may not be for you.  But if you do enjoy this type of challenge, the .FCW file format is one of the best ways to output to CC3.
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.

Where as if you exported a .FCW file, simply the action of opening the file is all that is needed.
So … if you are still with me, here we go!

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
  1. public byte[] ConvertFileToByteArray(string fileName)
  2. {
  3.     byte[] buffer;
  4.  
  5.     using (var fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read))
  6.     {
  7.         using (var binaryReader = new BinaryReader(fileStream))
  8.         {
  9.             buffer = binaryReader.ReadBytes((int)new FileInfo(fileName).Length);
  10.  
  11.             binaryReader.Close();
  12.         }
  13.  
  14.         fileStream.Close();
  15.     }
  16.  
  17.     return buffer;
  18. }

Once the file is read into a byte array, I pull the first 128 bytes out of the file byte array, using an extension method to Arrays to create sub-arrays.

Code Snippet – SubArray extension method
  1. public static class Extensions
  2. {
  3.     public static T[] SubArray<T>(this T[] data, int index, int length)
  4.     {
  5.         var result = new T[length];
  6.  
  7.         Array.Copy(data, index, result, 0, length);
  8.  
  9.         return result;
  10.     }
  11. }

Then I feed the sub-array to my FILEID object.  This object converts the bytes into the fields of the FILEID object.  We can then check the Compressed property.  If the file is compressed, the rest of the data is meaningless, so if the file is compressed, I set the background color of the textbox to a Rose color.

Code Snippet
  1. using System;
  2. using System.Text;
  3.  
  4. namespace DisplayBinaryFile
  5. {
  6.     public class FILEID
  7.     {
  8.         #region Fields
  9.         public char[] ProgId = new char[26];
  10.         public char[] VerText = new char[4];
  11.         public char[] VerTextS = new char[14];
  12.         public byte[] DosChars = new byte[3];
  13.         public byte DBVer;
  14.         public bool Compressed;
  15.         public byte[] Filler = new byte[78];
  16.         public byte EndFileID;
  17.         #endregion
  18.  
  19.         public int Length { get; set; }
  20.  
  21.         public FILEID(byte[] buffer)
  22.         {
  23.             ProgId = Encoding.ASCII.GetChars(buffer.SubArray(0, 26));
  24.             VerText = Encoding.ASCII.GetChars(buffer.SubArray(26, 4));
  25.             VerTextS = Encoding.ASCII.GetChars(buffer.SubArray(30, 14));
  26.             DosChars = buffer.SubArray(44, 3);
  27.             DBVer = buffer.SubArray(47, 1)[0];
  28.             Compressed = BitConverter.ToBoolean(buffer.SubArray(48, 1), 0);
  29.             Filler = buffer.SubArray(49, 78);
  30.             EndFileID = buffer.SubArray(127, 1)[0];
  31.  
  32.             Length = 128;
  33.         }
  34.  
  35.         public byte[] GetBytes()
  36.         {
  37.             var returnValue = new byte[Length];
  38.  
  39.             Array.Copy(Encoding.ASCII.GetBytes(ProgId), 0, returnValue, 0, 26);
  40.             Array.Copy(Encoding.ASCII.GetBytes(VerText), 0, returnValue, 26, 4);
  41.             Array.Copy(Encoding.ASCII.GetBytes(VerTextS), 0, returnValue, 30, 14);
  42.             Array.Copy(DosChars, 0, returnValue, 44, 3);
  43.             Array.Copy(BitConverter.GetBytes(DBVer), 0, returnValue, 47, 1);
  44.             Array.Copy(BitConverter.GetBytes(Compressed), 0, returnValue, 48, 1);
  45.             Array.Copy(Filler, 0, returnValue, 49, 78);
  46.             Array.Copy(BitConverter.GetBytes(EndFileID), 0, returnValue, 127, 1);
  47.  
  48.             return returnValue;
  49.         }
  50.     }
  51. }

Here is a link to the entire Visual Studio 2010 project

Both Profantasy and sister company Pelgrane Press are gearing up for GenCon. Here are some new posters that just arrived.

Poster Maps for Gencon

Have to climb a chair to take pics of these.


Book cover posters for GenCon

Looking forward to hold Ashen Stars in my hands ... I love the look of that book.


I also want to find out how my Ashen Stars galaxy map (created with Cosmographer 3) came out in the book…

At least 65% of our CC2 Pro customers have upgraded to CC3. Of those who tell us why they haven’t upgraded, the most common explanation is “CC2 Pro does everything I need. Why do I want this fancy new artwork?”

This unsolicited email from William Toporek, posted with permission, explains better than I ever could the reasons for an upgrade. It also offers Joe Sweeney a well deserved shout-out for his video tutorials.

I must say that I see some excellent improvements in the ease of use department. Many of the old CC1 and CC2 “way of doing things” have been streamlined and many of the “quirky” bits that CC2 had when drawing have been fixed. The cutting symbols work better than ever! I really like the Sheets and Effects and especially want to say thanks to Joseph Sweeney for putting together those superb tutorials. I never would have been able to figure out, let alone use the POWER of the Sheets and Effects. Adding shadows and using all those effects to take one map and turn it into many without having to redraw everything is worth the price of the upgrades. CC3 is such a powerful program with soooo many functions I’m glad your company is using those videos to help show off all that it can do. MORE PLEASE!!! I’m still a firm supporter of all your products. I know this was a bit of a speed bump with all these upgrade problems* but I’m happy I did it. I’ve been a customer for well over a decade and was there with you guys from CC1 and the 3.5″ disks. I have to admit that I was a bit hesitant to upgrade to CC3 with the extra cost and I just figured that I didn’t need any more power than CC2 or that I was just satisfied with the style of CC2 but after using it it was well worth it. So much easier to use than before and my maps are just spectacular!

Thanks for all the help getting me back up and running your customer service has been superfast, especially from across the pond. Tell Nigel thanks again for an excellent product. I’m sure he doesn’t remember me from the Gen Cons, GAMAs, and Origins of the late 90’s and early 2000’s when I used to work for Steve Jackson Games but I want to share my appreciation anyways. Just to show some more “love” I’m off to download the Cosmographer 3 and City Designer 3 upgrades right now from your online store! Thanks so much!

*William had some installation issues which we resolved

In the last post, I introduced Intercom with an old example I wrote using VB6.  This post will be a much more modern example using C#.
I’ve also included a “Round Trip” example where the command is initiated via CC3.  By adding this small macro, you now have a command that draws a diamond on the screen.

Code Snippet
  1. MACRO DIAMOND
  2. GP TEMP ^DCenter:
  3. SENDM 2 TEMP
  4. ENDM

What this does is as the user to get a point (GP) and then send it via Intercom to the c# application.
Once it gets to the c# code, it takes the string from CC3 (all data sent from CC3 via Intercom is in strings), splits it on the comma and converts the two substrings into doubles.  Then it creates a command string and passes it back to CC3.

Code Snippet
  1. var strNumbers = System.Text.Encoding.ASCII.GetString(bytMsg).Split(‘,’);
  2. var x = double.Parse(strNumbers[0]);
  3. var y = double.Parse(strNumbers[1]);
  4. var strDiamond = “LINE \n” +
  5.                     (x – 100) + “,” + y + ” \n” +
  6.                     x + “,” + (y – 100) + ” \n” +
  7.                     (x + 100) + “,” + y + ” \n” +
  8.                     x + “,” + (y + 100) + ” \n” +
  9.                     (x – 100) + “,” + y + ” \n\n” +
  10.                     “ENDM”;
  11. icSendMsg(20, strDiamond);

Here is a link to the C# portion

Last week a 1760s map of Colonial Massachusetts, by an unnamed “professional cartographer”, was sold by auction at Bonhams in London for £84,000 / $135,000. Perhaps one day CC3 users will achieve a similar amount for their work, though I hope they don’t have to wait 250 years!

I think the most important lesson to learn, though is include the copyright notice when you start the New Map Wizard – imagine not getting a credit after all that time.

It has come to my attention that some of you are, let us say, not exclusive to CC3. You galavant off with other software such as Photoshop, GIMP, or even Fractal Mapper or Dundjinni. Some of you (I hestitate to say this) don’t use CC3 at all! However, in the face of such naughtiness, we turn the other cheek. In many of our products we offer our PNG art, with transparencies, to non-CC3 users, for commercial and non-commercial use.

  • Campaign Cartographer 3 includes a full set of overland map symbols for use with any software.
  • Dungeon Designer 3 will install its dungeon and floorplan artwork without CC3 installed. Read more here.
  • City Designer 3 installs its city building art to a convenient location. More here.
  • Fractal Terrains Pro is stand-alone and exports PNG files.
  • Our Source Maps series include a stand alone viewer which allows PNG export, as well as PDFs of all the maps, and HTML formatted linked information on all the maps.
  • We are rebuilding Cosmographer, Symbol Set 1 and Symbol Set 2 to install their artwork, too.
  • Some monthly issues of our annuals include PNG artwork, but in general you really need CC3 to make use of them.

The artwork consists of folders of high resolution PNG files of symbols, along with a variety of seamless tiles.

We’ve just released the June issue of the Cartographer’s Annual 2011, and we’re very happy to present another style created by map-making artist Jon Roberts.

This time we went for a dungeon/floorplan style and the result is really gorgeous again. Take a look at these beautiful maps: Continue reading »

The Profantasy user library is a very old feature of our website, where users can upload their own creations to share it with the community.

Despite its age, the quality of the stuff submitted there manages to surprise me again and again. Check out these great Perspectives symbols create by Pete Ludwig for his post-apocalyptic game:

ProFantasy Software has been producing cartography software since 1993. We’ve got this far by making software we are proud of, and treating our customers well. As a result, we offer a 14-day money-back guarantee, an upgrade guarantee and a ten-year download guarantee.

Our minimum ten year download guarantee
Since 2001, our mail order customers have been able to re-download any product they’ve ordered from us. We want you to continue using your software evenif you change computers, move, or lose track of what you’ve ordered. So, for at least ten years after ordering your software and probably a lot longer you’ll be able to re-download it. In the very unlikely event of download links being unavailable we’ll send you a DVD – this has never happened in ten years.

Our 14-day money-back guarantee
We are confident that you will be pleased with any software you buy from us. If you buy any of our software from our store and it doesn’t live up to your expectations for any reason, we’ll give you your money back. Please let us know within 14 days of receipt of the software that you would like to cancel your licence and get a refund.

Our upgrade guarantee
If a new version of our software comes out within three months of your purchase, you’ll get a free upgrade, within six months, 60% off the full price, up to a year, 40% off. Even if it’s more than a year, we still offer a substantial discount for upgrades up to at least five years.

Previous Entries Next Entries