CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: Engines

  1. #1
    Join Date
    Jul 2003
    Location
    Maryland
    Posts
    762

    Engines

    How exactly does someone create an engine in C++?

    I'm not talking about only 1 thing like a game engine, I'm talking about how to make 1 in general. Like say I have a user input a string and I want an engine that processes and evaltuates an equation the user enters.

    Just engines in general.

  2. #2
    Join Date
    Apr 2003
    Posts
    893

    Re: Engines

    Originally posted by kasracer
    How exactly does someone create an engine in C++?

    I'm not talking about only 1 thing like a game engine, I'm talking about how to make 1 in general. Like say I have a user input a string and I want an engine that processes and evaltuates an equation the user enters.

    Just engines in general.
    This will help tell you how to make it....

    Hope that helps

    Regards,
    -Nina

  3. #3
    Join Date
    Jul 2003
    Location
    Maryland
    Posts
    762

    Re: Re: Engines

    Originally posted by hometown
    This will help tell you how to make it....

    Hope that helps

    Regards,
    -Nina
    I didn't mean graphics engine, but engines in general.

    Like IE, firebird, ect have HTML rendering engines. I want to create a way to work with data and output it without like 500 if else statements.

  4. #4
    Join Date
    Jan 2001
    Posts
    588
    There is no such thing as a general "engine" for what you're talking about. Parsing a mathematical expression and rendering HTML are two completely different tasks with very different implementations. There is no golden engine that you can code to solve any problem that you want out there.

  5. #5
    Join Date
    Jul 2003
    Location
    Maryland
    Posts
    762
    Originally posted by Bob Davis
    There is no such thing as a general "engine" for what you're talking about. Parsing a mathematical expression and rendering HTML are two completely different tasks with very different implementations. There is no golden engine that you can code to solve any problem that you want out there.
    Yes I know this, I was using them as examples because I want to know if there are any online resource to developing my own engine to do things.

  6. #6
    Join Date
    Aug 2002
    Posts
    58
    developing my own engine to do things
    Before you start researching implementation techniques, you need to know exactly what it is going to do, and exactly how you want people to use it. Otherwise, you're just yelling in the wind.

    Is it a program that will run on a computer and have other computers send requests? Is it a separate process that takes requests from applications? Is it a library? A DLL? A class? All of these could be interpreted as 'engines' but are implemented and used in different ways.

    Regards,
    Bassman

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured