|
-
August 7th, 2003, 09:50 PM
#1
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.
-
August 8th, 2003, 12:05 AM
#2
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
-
August 8th, 2003, 12:27 AM
#3
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.
-
August 8th, 2003, 11:42 AM
#4
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.
-
August 8th, 2003, 12:11 PM
#5
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.
-
August 8th, 2003, 01:08 PM
#6
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|