Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8965429
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T16:48:01+00:00 2026-06-15T16:48:01+00:00

I was reading an article on a ‘tag based’ resource system implemented by Bungie

  • 0

I was reading an article on a ‘tag based’ resource system implemented by Bungie for the BLAM! game engine. And I came across a mysterious syntax (C structs I think?) and I was wondering what permits this? How can this syntax be valid? And by what method is it achieved?

I have pasted the snippet that is of question below.

TAG_GROUP(
sound_environment,
SOUND_ENVIRONMENT_TAG,
sizeof(sound_environment))
{
     {_field_real, "room intensity"},
     {_field_real, "room intensity hf"},
     {_field_real, "room rolloff (0 to 10)"},
     {_field_real, "decay time (.1 to 20)" },
     {_field_real, "decay hf ratio (.1 to 2)"},
     {_field_real, "reflections intensity:dB[-100,10]"},
     {_field_real, "reflections delay (0 to .3):seconds" },
     {_field_real, "reverb intensity:dB[-100,20]"},
     {_field_real, "reverb delay (0 to .1):seconds"},
     {_field_real, "diffusion"},
     {_field_real, "density"},
     {_field_real, "hf reference(20 to 20,000)},
}; 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T16:48:02+00:00Added an answer on June 15, 2026 at 4:48 pm

    TAG_GROUP looks like a macro; if so, then it’s expanding to something else, in which case the syntax could be correct depending on what it’s expanding to.

    For instance, if TAG_GROUP is expanding to a 2D array or even an array of structs, then that initialization is valid, as it’s a standard initialzation list.

    Take the following program, which compiles:

    int main() 
    {
        const char* _field_real = "xyz";
        const char* a[12][2] = {
            {_field_real, "room intensity"},
            {_field_real, "room intensity hf"},
            {_field_real, "room rolloff (0 to 10)"},
            {_field_real, "decay time (.1 to 20)" },
            {_field_real, "decay hf ratio (.1 to 2)"},
            {_field_real, "reflections intensity:dB[-100,10]"},
            {_field_real, "reflections delay (0 to .3):seconds" },
            {_field_real, "reverb intensity:dB[-100,20]"},
            {_field_real, "reverb delay (0 to .1):seconds"},
            {_field_real, "diffusion"},
            {_field_real, "density"},
            {_field_real, "hf reference(20 to 20,000)"},
        };     
        return 0;
    }
    

    Now, imagine if TAG_NAME used the parameters to build up the appropriate definitions and tacked on an =. Then essentially, it built up the equivalent of the const char* a[12][2] (or whatever types it’s using).

    A good rule of thumb when you see code like this is to think macro, and think of what substitutions can lead to legal code. Also, a convention I have often seen is that names that look like functions, but are in all caps are macros.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was reading this article on handling corrupted state exceptions and I came across
While reading an article, I came across the following syntax: template <typename T> class
Reading an article on the <article> tag on HTML5, I really think my biggest
Reading this article http://support.microsoft.com/kb/813878 I have a question: Where can I get ipseccmd.exe for
After reading this article, it makes sense to rebase to gather changes from the
After reading this article I don't have a clear answer: http://palizine.plynt.com/issues/2010Oct/bypass-xss-filters/ Will browsers interpret
After reading this article on thedailywtf.com, I'm not sure that I really got the
After reading this article http://lukast.mediablog.sk/log/?p=155 I decided to use mingw on linux to compile
After reading an article about fonts, i tried the code and i am getting
I was reading this article by Brian Goetz. Under the section Don't start threads

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.