vote up 3 vote down star
3

Hi,

I am working on a game and have an interesting question. I have some game-wide constant values that I want to implement in one file. Right now I have something like this:

constants.cpp

extern const int BEGINNING_HEALTH = 10;
extern const int BEGINNING_MANA = 5;

constants.hpp

extern const int BEGINNING_HEALTH;
extern const int BEGINNING_MANA;

And then files just #include "constants.hpp" This was working great, until I needed to use one of the constants as a template parameter, because externally-linked constants are not valid template parameters. So my question is, what is the best way to implement these constants? I am afraid that simply putting the constants in a header file will cause them to be defined in each translation unit. And I don't want to use macros.

Thanks

flag

8 Answers

vote up 11 vote down check

Get rid of the extern and you're set.

This code works perfectly fine in a header, because everything is "truly constant" and therefore has internal linkage:

const int BEGINNING_HEALTH = 10;
const int BEGINNING_MANA = 5;
const char BEGINNING_NAME[] = "Fred";
const char *const BEGINNING_NAME2 = "Barney";

This code cannot safely be put in a header file because each line has external linkage (either explicitly or because of not being truly constant):

extern const int BEGINNING_HEALTH = 10;
extern const int BEGINNING_MANA = 5;
const char *BEGINNING_NAME = "Wilma";  // the characters are const, but the pointer isn't
link|flag
i suspect a copy/paste bug in last BEGINNING_NAME[] one. did you want to write it as BEGINNING_NAME ? – Johannes Schaub - litb Mar 13 at 4:45
you are correct, fixed. Thanks. – Tom Mar 13 at 11:48
You need "static", otherwise you do not get internal linkage or, more ideally, the equivalent of a "#define" with the values inlined. – Jim Buck Mar 18 at 5:07
vote up 8 vote down

How about enums?

constants.hpp

  enum {
    BEGINNING_HEALTH = 10,
    BEGINNING_MANA = 5
  }
link|flag
vote up -2 vote down

perhaps something along the lines of a static class?

class CONSTANTS {
public:
static inline int getMana() { return 10;};
};
link|flag
That doesn't help. Function values cannot be used as template parameters. C++0x keyword constexpr is supposed to work around that. Besides, C++ has namespaces, which are superioer to a static class for "namespacing" constants. – Tom Mar 13 at 4:06
superior... I lack basic proofreading skills :) – Tom Mar 13 at 4:07
vote up 0 vote down

Most compilers simply don't allocate space for const POD values. They optimize them out and treat them as if they had been #defined, don't they?

link|flag
Close, but still not quite the same. Example where macros work but constants don't: #define FOO "foo"; \ const char *str = "bar" FOO; C and C++ allow concatenation of string literal tokens, but not string constants. – Tom Mar 13 at 4:40
This is only true for integral constants. Floats, doubles, char*s, and other types will be allocated storage if optimization is disabled. – Adam Rosenfield Mar 13 at 4:46
@Tom: That's not what I meant. I meant for POD constants, not preprocessor majicks. I meant in the sense that the symbol and the space for the value don't exist unless you attempt to take its address. – greyfade Mar 13 at 6:12
I think POD officially includes floats and doubles, but floats and doubles are generally not optimized in this way. – Max Lybbert Mar 13 at 8:52
vote up -4 vote down

As a quick answer to the title question, a singleton pattern is a possible best, C++ way to define cross-file constants and insure only one instance of the object.

As far as the template parameter problem, you need to pass a type not a value. Your type is "int".

link|flag
This seems like overkill for a set of simple constants, and is not likely to solve his problems with template instantiation. – Eclipse Mar 13 at 4:15
Why wouldn't is solve his problem with template instantiation, since it wouldn't be an extern, it would be a local. Overkill is relative, what is the quality perspective $100M, $100K, or $100 game budget? – jeffD Mar 13 at 6:26
jeffD, the problem is that your answer does not make sense. do you want to make an "int" a singleton? an int is comprised by value, not by identity. another thing that probably made people downvote you is that he doesn't want to pass a type, but a value to his template. Why do you say he can't? – Johannes Schaub - litb Mar 13 at 6:44
The title to the question is a good question by itself. Maybe I do need to see more of his code. See cplusplus.com/doc/tutorial/… for a ref. "A template parameter is a special kind of parameter that can be used to pass a type as argument". Wish comments allowed hyperlinks. – jeffD Mar 13 at 6:55
Nice, the http address automatically becomes hyperized. – jeffD Mar 13 at 7:02
show 5 more comments
vote up 5 vote down

Use "static const int" in your .hpp file, and put nothing in the .cpp file (except whatever other code you have there of course).

link|flag
vote up 0 vote down

What ever happened to a simple:

#define BEGINNING_HEALTH 10

Man, those were the days.
Oh wait, those still are the days!

link|flag
That might not do what you're expecting in the context of template parameters... :) rlbond needs that. – Mihai Limbasan Mar 13 at 7:29
Some of us like our debuggers to show 'BEGINNING_HEALTH' instead of '10'. – Joe Gauterin Mar 13 at 12:13
<sarcastic> When needs debuggers when you have printf()? </sarcastic> – slacy Mar 13 at 20:53
vote up 1 vote down

make use of namespaces:

namespace GameBeginning {
    const int HEALTH = 10;
    const int MANA   = 5; 
};

then u can use as player.health = GameBeginning::HEALTH;

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.