Grid Sage Forums

Cogmind => General Discussion => Topic started by: Quinn Reilly on November 07, 2016, 09:17:10 AM

Title: Questions About CogMind
Post by: Quinn Reilly on November 07, 2016, 09:17:10 AM
Hi there.

I am an early stage Java developer. I recently came across RexPaint,
then saw that there was a game called CogMind. I really like the
look of these two programs.

I have a few questions about CogMind. What code language does it
use? Is it an independent window, or does it use command Prompt?
Can I copy designs from RexPaint into a word document?

The reason for my second and third question is that I was thinking of making
my own game and using ASCII graphics.

Thanks!
Title: Re: Questions About CogMind
Post by: Kyzrati on November 07, 2016, 05:54:48 PM
Cogmind is written in C++ (as is REXPaint--same engine). I've talked about just about every aspect of development on the dev blog (http://www.gridsagegames.com/blog/), and also in r/roguelikedev (https://www.reddit.com/r/roguelikedev/) FAQ Friday (https://www.reddit.com/r/roguelikedev/search?q=title%3A%22FAQ+Friday%22&restrict_sr=on&sort=new&t=all) posts. I talked a bit about the language/library choices in the first one (https://www.reddit.com/r/roguelikedev/comments/2tcvaj/faq_friday_1_languages_and_libraries/cnxvpo9/), though technically you can use any language to create a roguelike.

r/roguelikedev is definitely the place to be if you're looking into working on a roguelike in particular (though it sounds like maybe you're not--just ASCII). (I do plan to one day write an introduction on how to get started with roguelike development, as well as cover (on the blog) some of the more basic architectural components of Cogmind and the engine.)

Quote from: Quinn Reilly on November 07, 2016, 09:17:10 AM
Can I copy designs from RexPaint into a word document?
Sure, you just press ctrl-t to export an image to a text file and can copy it into a Word document, although as text it won't retain color information... To get color info into a Word doc you'd have to write a converter from one of the other color-including export methods. (But why would you want to use Word? It's not a good approach for art. Or maybe you just meant a text doc?)

Good luck!