How to make the app whose GUI is separated from the engine

This forum can be used to talk about general design strategies, new ideas and questions in general related to wxWidgets. If you feel your questions doesn't fit anywhere, put it here.
Post Reply
buddhist
In need of some credit
In need of some credit
Posts: 3
Joined: Mon Aug 01, 2005 12:45 am

How to make the app whose GUI is separated from the engine

Post by buddhist »

If I need to design an application whose GUI can completely run in a separate process and the actual engine runs in another process, generally what architecture I need?

Looks like I have to conceive a communication protocol for GUI and the engine. All data should be cross-processes, hmm? If there is much data, it would be really bad. Then how to?
FlyingIsFun1217
Super wx Problem Solver
Super wx Problem Solver
Posts: 497
Joined: Mon Nov 06, 2006 9:58 pm

Post by FlyingIsFun1217 »

Hard to tell exactly what you want separated from the GUI, but your best bet (from what I can tell) would be to create the gui, and have it use a .dll file to access all of the code for... whatever it does...

FlyingIsFun1217 :)
Ryan Wilcox
I live to help wx-kind
I live to help wx-kind
Posts: 194
Joined: Mon Aug 30, 2004 1:26 pm
Location: PA, USA
Contact:

Post by Ryan Wilcox »

Ryan Wilcox
Wilcox Development Solutions
http://www.wilcoxd.com
buddhist
In need of some credit
In need of some credit
Posts: 3
Joined: Mon Aug 01, 2005 12:45 am

Post by buddhist »

My idea is that I need my app GUI has ability of running in an independent process, and the core logic could run in another process without GUI, for purpose of high performance. For example, it would run like a remote debugger.
FlyingIsFun1217
Super wx Problem Solver
Super wx Problem Solver
Posts: 497
Joined: Mon Nov 06, 2006 9:58 pm

Post by FlyingIsFun1217 »

See Ryan Wilcox's post then.

FlyingIsFun1217
krzysiek_t
Earned a small fee
Earned a small fee
Posts: 23
Joined: Tue Jul 11, 2006 1:36 pm
Location: Poland, Warsaw
Contact:

Post by krzysiek_t »

It sounds like perfekt place to use remote method invocation parading. Take a look at CORBA or something similar.
Post Reply