Remy Monsen | July 31, 2022 | CC3 Plus, macros
Most of you have heard about macros. If you are an existing CC3+ user you’ve used them, knowingly or not, and you might even have written your own. For some people, the word macro may sound a little scary because it is associated with programming, but they’re really not that complicated.
Macros are used in a lot of places in the program. For example, when you start a new map or load an existing map, CC3+ uses a macro (stored in the OnNewMacro/OnOpenMacro map notes) to show you the appropriate toolbars and load the filters needed for the style of the map. A lot of the drawing tools uses macros to accomplish the more complex stuff, for example the forest drawing tools use a macro to call the commands to fill the area with trees, or the fields drawing tools in several styles use a macro to align the fields to the first edge of the polygon (These macros are stored with the drawing tools).
Lastly, CC3+ also has a macro file that contains named macros. These are often called from the toolbar buttons and menu elements in the program, so editing this file may change how the program behave.
And then we have script files….
Continue reading »
Comments Off on Script Files (and Macros)
Remy Monsen | June 23, 2022 | CC3 Plus
There are several ways to organize your maps, both inside and outside of CC3+. We’ve previously talked about linking your maps together to make a navigable atlas, and how to index your maps to make them easy to search to find the map you want. Today, I’ll talk about the bookmark feature in CC3+. Using bookmarks, you can create lists of maps, for examples maps belonging together, or maps with a common theme. For example, in the community atlas, I have bookmarks for the different types of maps, for example one bookmark set that contains all the overland maps, one the contains all the dungeon maps, and so on.
Continue reading »
Comments Off on Bookmarks
Remy Monsen | April 7, 2022 | CC3 Plus, drawing tools, macros
A few weeks ago, I hosted a live stream taking a closer look at the drawing tools. Making this the perfect time to talk a bit more about the more advanced aspects of the drawing tools and how to utilize them properly and explaining a few things in more detail than appropriate for a stream.
Examples of advanced use of drawing tools is to draw aligned fills, drawing a path and have symbols placed along it or drawing a polygon and having it filled with randomly placed symbols. Basically, a lot of the things you can do using multiple steps with regular CC3+ commands can be automated and streamlined by making a drawing tool for it.
Continue reading »
Comments Off on Advanced Drawing Tools
Remy Monsen | March 3, 2022 | CC3 Plus, search
People who have browsed the Community Atlas website have probably noticed that you can search maps, not just by name, but also by text in the map. So, how to I manage to do that, the maps on the website is just images, right? Granted, there are tools available that tries to understand text in images, but these are not good with noisy backgrounds like a map is. However, the community atlas website is of course backed by the actual community atlas product, the .fcw files themselves, and this is where the text comes from.
This is all done by using an excellent command in CC3+, the create index command. This command was originally made for searching through multiple drawings quickly without the search function having to read each map file every time, but the index it generates is a nice plain text file which can also be used by other tools, such as a web search. If you own products such as the Forgotten Realms Interactive Atlas or World War II Interactive Atlas, these come with an index file out of the box allowing you to quickly search the maps therein, but of course, you can also easily make your own index file for your own set of maps.
Continue reading »
Comments Off on Indexing Maps
Remy Monsen | January 6, 2022 | CC3 Plus
If you have used Campaign Cartographer for some time, you’ve probably encountered the red X showing up in your map. Perhaps just as simple symbol missing and being replaced by a red X, or maybe your map was covered by them. Today, I’ll talk a little bit about why you may encounter this issue, what the reason behind it is, and what you can do to remedy the situation, as well as tips for avoiding it in the first place.
Hopefully after reading this, you will have a better idea on how CC3+ uses your images, and can avoid this situation in the future.
The Core Reason
The underlying reason this happens is rather simple. When you make a map in CC3+, the map will contain references to the image files used for symbols and fills. These files are not embedded in the map itself. So, every time you open up a CC3+ map, it will look at the references embedded in the map, and will then go and load these image files from your drive. However, if it cannot find these files in the location specified in the map, it won’t know what that image is supposed to look like, and it will display a red X instead indicating this. So, in other words, this happens because the image that was on your drive when you made the map is no longer there, simple as that. This isn’t an issue with CC3+ itself, it is simply a missing image file. So, what we need to look at now, is why this file may be missing. This will influence the best way to go about fixing your map.
Continue reading »
1 Comment
Remy Monsen | December 6, 2021 | CC3 Plus, XP Development
Last time in the developer series I started our Dynamic Dungeons project with the intention to showcase how to make some simple tools for a more fluid dungeon editing experience. In this issue, I will continue on with that project, and add some improvements to it, such as taking care that our entities are placed on the right sheets, meaning we will need to dive into sublists, and I will also automatically generate walls to go along with our floors.
As last time, I prepared a short video to show the tools in action. At the end of the video, you’ll also see that I show the classic dungeon tools correctly interacting with my entities.
To be able to follow this article series, you should have read my earlier articles in the series.
Continue reading »
Comments Off on Developing Add-Ons for CC3+ – Part 6: Dynamic Dungeon Tools 2
Remy Monsen | November 28, 2021 | CC3 Plus
One reason to import an image into your map is to use it as a guideline for your mapping. For example, maybe you want to import that scan of your old hand-drawn map, or importing a real world city map to re-map it in CC3+. Inserting the image is easy enough (Insert File from the Draw menu), but one of the important things when you want to use an image for reference (or using it as part of the final drawing) is to get it to scale. You could wing it, but that often comes back to bite you later, as a lot of the default sizes for effects, line widths and so on assume your map is to scale. I’ve talked about the importance of scale in an earlier article, but for this one, I’ll just focusing on scaling imported images.
Continue reading »
Comments Off on Scaling Imported Images
Remy Monsen | October 31, 2021 | CC3 Plus, dungeo, XP Development
In this article in the development series, I’ll start putting the things we have learned into some proper useful commands for CC3+. I’ll be going for designing a set of dynamic dungeon tools that focuses on making the drawing of a dungeon quick and easy. In particular, I am aiming at making a set of tools that lets you draw the floorplan in a more fluid manner, and easily do things like changing the shape of a room by adding a small alcove or similar, without manually manipulating the entities. I am also making sure that the floor will always be merged to a single polygon so we avoid breaks in the fill pattern.
This will be a series of several articles, so in this first article we will be getting started with the basics. We will start by writing the code for drawing polygons, and we will see how we can merge them automatically to a larger polygon. This should give us a great starting point, which we will build upon in future articles. This short YouTube video shows a demo of what the code below achieves in CC3+.
To be able to follow this article series, you should have read my earlier articles in the series.
Continue reading »
Comments Off on Developing Add-Ons for CC3+ – Part 5: Dynamic Dungeon Tools 1
Remy Monsen | September 26, 2021 | Campaign Cartographer, CC3 Plus, update
The latest CC3+ update is currently in beta, and you can download it from your registration page over at the main ProFantasy website if you wish to try it out. Of course, this is a beta, so only install it if you don’t mind potentially running into glitches and other issues (this is why we test new versions before releasing them after all)
In this article, I will take a short look at the new features that appear in this version. If you have the beta installed, you will have them right now, but if not, you will get access to them when we release the finished version of the update. In any case, there are several nice new features waiting for you in this update.
Continue reading »
2 Comments
Remy Monsen | August 29, 2021 | CC3 Plus
When mapping, there are times when precision matters a lot, and times when it doesn’t matter at all and simply eyeballing sizes and positions gives the best result. But in this article, I am going to talk a bit about the former, when we want perfect precision in our work, when we need that road to be exactly 10 feet wide, or entities needs to line up perfectly with each other. In CC3+ we have multiple tools available for that purpose, such as snap grid, modifiers and coordinates. I’ve talked about these things in other places before, but I’ll put all these into the context of precision work here.
Comments Off on Precision Tools in Campaign Cartographer