Strings in enums?

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

User avatar
JaxDragon
Chaos Rift Junior
Chaos Rift Junior
Posts: 395
Joined: Mon Aug 04, 2008 2:03 pm
Current Project: Kanoba Engine
Favorite Gaming Platforms: PS3, PC
Programming Language of Choice: C++
Location: Northeast NC

Strings in enums?

Post by JaxDragon »

I was reading my C++ book, when I stumbled across enums. I understand them enough, although I cant figure out how to use a string as one of its values. Any help?
User avatar
Falco Girgis
Elysian Shadows Team
Elysian Shadows Team
Posts: 10294
Joined: Thu May 20, 2004 2:04 pm
Current Project: Elysian Shadows
Favorite Gaming Platforms: Dreamcast, SNES, NES
Programming Language of Choice: C/++
Location: Studio Vorbis, AL
Contact:

Re: Strings in enums?

Post by Falco Girgis »

Well, think about what they are.

eNUMERATED types. Meaning what? Numbers. You can't do that. XD
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Strings in enums?

Post by MarauderIIC »

...in C++. In some other languages you can. Dunno why it can't be done in C++ if you overload the == operator to use strcmp, or something, besides the fact that the language doesn't support it.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
trufun202
Game Developer
Game Developer
Posts: 1105
Joined: Sun Sep 21, 2008 12:27 am
Location: Dallas, TX
Contact:

Re: Strings in enums?

Post by trufun202 »

Yeah, worst case you could always create a lookup. Take the value of the enum and use it as an index in the array of corresponding strings.
-Chris

YouTube | Twitter | Rad Raygun

“REAL ARTISTS SHIP” - Steve Jobs
User avatar
JaxDragon
Chaos Rift Junior
Chaos Rift Junior
Posts: 395
Joined: Mon Aug 04, 2008 2:03 pm
Current Project: Kanoba Engine
Favorite Gaming Platforms: PS3, PC
Programming Language of Choice: C++
Location: Northeast NC

Re: Strings in enums?

Post by JaxDragon »

GyroVorbis wrote:Well, think about what they are.

eNUMERATED types. Meaning what? Numbers. You can't do that. XD
Lol...guess my book doesn't tell me that much. It requires a GyroVorbis(sold seperately). And i'll try trufun202's theory when I get to arrays.

If you're wondering "What crap book teaches about classes and enums before arrays?" Well, that book is C++ for dummies, All-in-one.
User avatar
programmerinprogress
Chaos Rift Devotee
Chaos Rift Devotee
Posts: 632
Joined: Wed Oct 29, 2008 7:31 am
Current Project: some crazy stuff, i'll tell soon :-)
Favorite Gaming Platforms: PC
Programming Language of Choice: C++!
Location: The UK
Contact:

Re: Strings in enums?

Post by programmerinprogress »

JaxDragon wrote: If you're wondering "What crap book teaches about classes and enums before arrays?" Well, that book is C++ for dummies, All-in-one.
I believe most books do, it's imperative that you know about constants and their uses before you move onto arrays, mainly because you tend to initialise static arrays using constants, and loops (mainly the for loop) usually rely on you to specify a maximum/minimum value, and constants help A LOT.

I'm surprised they actually covered strings before all of that, most books usually wait till further on to introduce that stuff, because the old style C-string is a pointer to a char and the newer C++ style string is an object of the string class, so those two topics(pointers and classes) are usually way further on in the books considering you need to know how to just program before you start messing around with memory or dip your feet into OOP...

Apologies, I went on a bit, I hope it all goes well ;)
---------------------------------------------------------------------------------------
I think I can program pretty well, it's my compiler that needs convincing!
---------------------------------------------------------------------------------------
And now a joke to lighten to mood :D

I wander what programming language anakin skywalker used to program C3-PO's AI back on tatooine? my guess is Jawa :P
User avatar
Falco Girgis
Elysian Shadows Team
Elysian Shadows Team
Posts: 10294
Joined: Thu May 20, 2004 2:04 pm
Current Project: Elysian Shadows
Favorite Gaming Platforms: Dreamcast, SNES, NES
Programming Language of Choice: C/++
Location: Studio Vorbis, AL
Contact:

Re: Strings in enums?

Post by Falco Girgis »

Coming from a C background, I do find that pretty weird.

Structs are like towards the end of the book. :lol:
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: Strings in enums?

Post by avansc »

http://elysianshadows.com/phpBB3/viewto ... art=999999

i dont know if you would call that using strings as enums, but its definitely lexical.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Strings in enums?

Post by MarauderIIC »

With enumerators, you can do this :)

Code: Select all

enum myEnumerator {
    SOMETHING_1,
    SOMETHING_2,
    NUM_SOMETHINGS
};

int array[NUM_SOMETHINGS];
for (int i = 0; i < NUM_SOMETHINGS; ++i) {
}

for (int i = SOMETHING_1; i < NUM_SOMETHINGS; ++i) {
}

cout << array[SOMETHING_1] << array[SOMETHING_2] << endl;
/*
But you cannot do cout << array[NUM_SOMETHINGS]
*/
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
JaxDragon
Chaos Rift Junior
Chaos Rift Junior
Posts: 395
Joined: Mon Aug 04, 2008 2:03 pm
Current Project: Kanoba Engine
Favorite Gaming Platforms: PS3, PC
Programming Language of Choice: C++
Location: Northeast NC

Re: Strings in enums?

Post by JaxDragon »

Ah thanks for the brief tutorial on enum arrays.
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Strings in enums?

Post by MarauderIIC »

Well, enum arrays implies an array of enums. Rather you just use the enum to iterate through the array and declare the size of it, which is what my post exemplifies.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
Innerscope
Chaos Rift Junior
Chaos Rift Junior
Posts: 200
Joined: Mon May 04, 2009 5:15 pm
Current Project: Gridbug
Favorite Gaming Platforms: NES, SNES
Programming Language of Choice: Obj-C, C++
Location: Emeryville, CA
Contact:

Re: Strings in enums?

Post by Innerscope »

/*
But you cannot do cout << array[NUM_SOMETHINGS]
*/
I haven't used iostream.h in a while... but is this true? Can you not "cout" the last element of an array?
If not, then do you mean:
/*
But you cannot do cout << array[myEnumerator]
*/
Right?
Current Project: Gridbug
Website (under construction) : http://www.timcool.me
User avatar
programmerinprogress
Chaos Rift Devotee
Chaos Rift Devotee
Posts: 632
Joined: Wed Oct 29, 2008 7:31 am
Current Project: some crazy stuff, i'll tell soon :-)
Favorite Gaming Platforms: PC
Programming Language of Choice: C++!
Location: The UK
Contact:

Re: Strings in enums?

Post by programmerinprogress »

look carefully, you can NEVER access the maximum value in an array (in the context you're referring to), but the compiler won't stop you because C++ deliberately has no bounds checking.

values you can access in an array go from 0 to (n-1) you access the nth element in an array with (n-1), trying to access an element with the index n would make you access the element after the last one, if that makes any sense.

const int MAX = 5 for example could be used in a for loop to iterate through elements 0 to (MAX-1), but you would never access element MAX, because you are infact accessing the (MAXth +1) element, which of course, doesn't exist :lol:
---------------------------------------------------------------------------------------
I think I can program pretty well, it's my compiler that needs convincing!
---------------------------------------------------------------------------------------
And now a joke to lighten to mood :D

I wander what programming language anakin skywalker used to program C3-PO's AI back on tatooine? my guess is Jawa :P
User avatar
Innerscope
Chaos Rift Junior
Chaos Rift Junior
Posts: 200
Joined: Mon May 04, 2009 5:15 pm
Current Project: Gridbug
Favorite Gaming Platforms: NES, SNES
Programming Language of Choice: Obj-C, C++
Location: Emeryville, CA
Contact:

Re: Strings in enums?

Post by Innerscope »

programmerinprogress wrote:look carefully, you can NEVER access the maximum value in an array (in the context you're referring to), but the compiler won't stop you because C++ deliberately has no bounds checking.
Oh yea, I forgot that's how c++ handles arrays.

Another thing is that in Marauder's example he hasn't assigned any values to any of the elements. Is the default value, the smallest integer like -214*10^6? (i could be confusing languages again)
Current Project: Gridbug
Website (under construction) : http://www.timcool.me
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Strings in enums?

Post by MarauderIIC »

In C/C++, default values are garbage, IIRC. Behavior undefined, etc.

But you could assign that way, too. I was trying to show how you could access array members using enumerators and make your code all friendly, and if you didn't need friendly (loop), you could loop using one, as well.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
Post Reply