Gamestudio Links
Zorro Links
Newest Posts
Help with plotting multiple ZigZag
by degenerate_762. 04/30/24 23:23
M1 Oversampling
by 11honza11. 04/30/24 08:16
Trading Journey
by howardR. 04/28/24 09:55
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (AndrewAMD, Quad, M_D), 1,217 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
firatv, wandaluciaia, Mega_Rod, EternallyCurious, howardR
19050 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 3 1 2 3
Acknex.exe with console #356089
01/30/11 21:05
01/30/11 21:05
Joined: Oct 2007
Posts: 5,210
Ä°stanbul, Turkey
Quad Online OP
Senior Expert
Quad  Online OP
Senior Expert

Joined: Oct 2007
Posts: 5,210
Ä°stanbul, Turkey
Some of you are going to love this

It is basically acknex.exe with console, which you can printf to, your plugins can printf to, even maybe engine functions can printf to.


3333333333
Re: Acknex.exe with console [Re: Quad] #356090
01/30/11 21:09
01/30/11 21:09
Joined: Apr 2007
Posts: 3,751
Canada
WretchedSid Offline
Expert
WretchedSid  Offline
Expert

Joined: Apr 2007
Posts: 3,751
Canada
Love you!
(No really, thanks mate)


Shitlord by trade and passion. Graphics programmer at Laminar Research.
I write blog posts at feresignum.com
Re: Acknex.exe with console [Re: WretchedSid] #356694
02/03/11 14:11
02/03/11 14:11
Joined: Jul 2005
Posts: 1,930
Austria
Dark_samurai Offline
Serious User
Dark_samurai  Offline
Serious User

Joined: Jul 2005
Posts: 1,930
Austria
Wow that is great. But if this cant be used with published projects, it isn't possible to create for example a console based server application... But it is great for debuggin.


ANet - A stable and secure network plugin with multi-zone, unlimited players, voip, server-list features,... (for A7/A8)!
get free version
Re: Acknex.exe with console [Re: Dark_samurai] #356696
02/03/11 14:17
02/03/11 14:17
Joined: Oct 2007
Posts: 5,210
Ä°stanbul, Turkey
Quad Online OP
Senior Expert
Quad  Online OP
Senior Expert

Joined: Oct 2007
Posts: 5,210
Ä°stanbul, Turkey
I publishing does not want to work with the custom acknex.exe version, it's either probably because original acknex.exe does something extra i do not know or it's becuase of the command line args handling. Latter is not very likely though.


3333333333
Re: Acknex.exe with console [Re: Quad] #357203
02/06/11 02:11
02/06/11 02:11
Joined: Oct 2004
Posts: 900
Lgh
rojart Offline
User
rojart  Offline
User

Joined: Oct 2004
Posts: 900
Lgh
Thanks, It will be helpful.
Is it possible to look at the source-code?


Regards, Robert

Quote
Everything should be made as simple as possible, but not one bit simpler.
by Albert Einstein

PhysX Preview of Cloth, Fluid and Soft Body

A8.47.1P
Re: Acknex.exe with console [Re: rojart] #357204
02/06/11 02:17
02/06/11 02:17
Joined: Oct 2007
Posts: 5,210
Ä°stanbul, Turkey
Quad Online OP
Senior Expert
Quad  Online OP
Senior Expert

Joined: Oct 2007
Posts: 5,210
Ä°stanbul, Turkey
yes, it's on the sdk_engine/acknex.cpp


3333333333
Re: Acknex.exe with console [Re: Quad] #357278
02/06/11 14:05
02/06/11 14:05
Joined: Oct 2004
Posts: 900
Lgh
rojart Offline
User
rojart  Offline
User

Joined: Oct 2004
Posts: 900
Lgh
I mean the whole code with printf function, but I understand that, you don't want it to show here. wink


Regards, Robert

Quote
Everything should be made as simple as possible, but not one bit simpler.
by Albert Einstein

PhysX Preview of Cloth, Fluid and Soft Body

A8.47.1P
Re: Acknex.exe with console [Re: rojart] #357281
02/06/11 14:35
02/06/11 14:35
Joined: Oct 2007
Posts: 5,210
Ä°stanbul, Turkey
Quad Online OP
Senior Expert
Quad  Online OP
Senior Expert

Joined: Oct 2007
Posts: 5,210
Ä°stanbul, Turkey
ooh the full source of the printf.dll

Code:
#include "stdafx.h"
#include <stdio.h>

#ifdef __cplusplus
extern "C" {

#endif

__declspec( dllimport ) void cprintf(char *msg, ...);

#ifdef __cplusplus
}
#endif

void cprintf(char *msg, ...)
{
   va_list argList;
   va_start(argList, msg);

   vprintf(msg, argList);

   va_end(argList);
}




3333333333
Re: Acknex.exe with console [Re: Quad] #357287
02/06/11 14:59
02/06/11 14:59
Joined: Oct 2004
Posts: 900
Lgh
rojart Offline
User
rojart  Offline
User

Joined: Oct 2004
Posts: 900
Lgh
Exactly, what I wanted to see, thanks again!


Regards, Robert

Quote
Everything should be made as simple as possible, but not one bit simpler.
by Albert Einstein

PhysX Preview of Cloth, Fluid and Soft Body

A8.47.1P
Re: Acknex.exe with console [Re: rojart] #358985
02/14/11 19:45
02/14/11 19:45
Joined: Feb 2005
Posts: 3,687
Hessen, Germany
T
Tempelbauer Offline
Expert
Tempelbauer  Offline
Expert
T

Joined: Feb 2005
Posts: 3,687
Hessen, Germany
You´re my Hero laugh

Page 1 of 3 1 2 3

Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1