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 3596620
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:00:42+00:00 2026-05-18T20:00:42+00:00

How can I add multiple implementations to this header file: MoveAgent.h #ifndef _GAMEAGENT_ #define

  • 0

How can I add multiple implementations to this header file:

MoveAgent.h

#ifndef _GAMEAGENT_
#define _GAMEAGENT_

#include "Defs.h"
#include "GameModel.h"

MoveDirection takeDirection(GameState *gs);

#endif _GAMEAGENT_

MoveAgent.c: Let’s say that I have an implementation that will return a random move

MoveDirection takeDirection(GameState *gs) {    
    MoveDirection dir = DIR_NONE;       
    while (dir == DIR_NONE) {
        int index = arc4random() % gs->moves_total;     
        MoveDirection tempDir = gs->moves[index];       
        if (tempDir != oppDir(gs->car.direction)) {
            dir = tempDir;
        }
    }
    return dir;
}

What is practical way of having multiple implementations of that function?

As you might guess, I’m a Java programmer trying to make a basic game to learn C, so I’m trying to do this to simulate a Java interface.

Any ideas?

  • 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-05-18T20:00:42+00:00Added an answer on May 18, 2026 at 8:00 pm

    This maybe jumping in a bit too much at the deep end, but:

    You might be after a pointer to function plus several implementations of functions with different names that do the task.

    MoveAgent.h

    extern MoveDirection (*takeDirection)(GameState *gs);
    

    MoveAgent.c

    MoveDirection takeDirectionRandom(GameState *gs)
    {
        ...
    }
    
    MoveDirection takeDirectionSpiral(GameState *gs)
    {
        ...
    }
    

    Mover.c

    #include "MoveAgent.h"
    
    // Default move is random
    MoveDirection (*takeDirection)(GameState *gs) = takeDirectionRandom;
    
    void setRandomMover(void)
    {
        takeDirection = takeDirectionRandom;
    }
    
    void setSpiralMover(void)
    {
        takeDirection = takeDirectionSpiral;
    }
    
    void mover(GameState *gs)
    {
        ...;
        MoveDirection dir = takeDirection(gs);
        ...;
    }
    

    So, somewhere along the line, you call one of the setXxxxxMover() functions, and thereafter you move using the mechanism set by the last of the two functions called.

    You can also invoke the function using the long-hand notation:

        MoveDirection dir = (*takeDirection)(gs);
    

    Once upon a very long time ago (1980s and earlier), this notation was necessary. I still like it because it makes it clear (to me) that it is a pointer-to-function that is being used.

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

Sidebar

Related Questions

How can I add multiple implementations to this header file: MoveAgent.h #ifndef _GAMEAGENT_ #define
runat=server /> But this code is not working How can I add multiple controls
I want to add same field to multiple tables. Can I do this with
How i can add the multiple values from a datagrid to textbox in C#?
In the below code where T : WsgTypes.RouteRestriction, can I add multiple classes so
I am new to wxPython. Can someone help me in: How to add multiple
I know I can add a icon to the Resources.resx file of a project
Can Android's addHeaderView() be used to add multiple headers throughout a single ListView? Can
In .NET you can add multiple handlers to an event which an object declares
How can I add multiple paragraph tag, newly tag on top within div container.

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.