Gamestudio Links
Zorro Links
Newest Posts
Blobsculptor tools and objects download here
by NeoDumont. 03/28/24 03:01
Issue with Multi-Core WFO Training
by aliswee. 03/24/24 20:20
Why Zorro supports up to 72 cores?
by Edgar_Herrera. 03/23/24 21:41
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (AndrewAMD, VoroneTZ), 831 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 4 of 6 1 2 3 4 5 6
Re: A9 [Re: mehrdad12] #480811
07/15/20 19:00
07/15/20 19:00
Joined: Oct 2007
Posts: 5,210
İstanbul, Turkey
Quad Offline
Senior Expert
Quad  Offline
Senior Expert

Joined: Oct 2007
Posts: 5,210
İstanbul, Turkey
Code
///////////////////////////////////////////////////////////////
// acknex.cpp : Runtime EXE
///////////////////////////////////////////////////////////////
#define WIN32_LEAN_AND_MEAN		
#include <windows.h>
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>

#include "adll.h"
#define IDI_ICON1 105

///////////////////////////////////////////////////////////////
int APIENTRY WinMain(HINSTANCE hInstance,	// application instance handle
                     HINSTANCE hPrevInstance, // always zero
                     LPTSTR    lpCmdLine,	// application command line
                     int       nCmdShow)	// window flags
{
	ENGINE_VARS *ev = engine_open(lpCmdLine);

// set the application icon from the EXE icon
    HICON app_icon = LoadIcon(hInstance,MAKEINTRESOURCE(IDI_ICON1));
    if (app_icon && ev && ev->hWnd) {
	    SendMessage(ev->hWnd, WM_SETICON, ICON_SMALL,(LPARAM)app_icon);
	    SendMessage(ev->hWnd, WM_SETICON, ICON_BIG,(LPARAM)app_icon);
    }
	while (engine_frame()); 
	return engine_close();
}



this is the source of the acknex.exe, it's not the source of the engine, it just opens the engine from dll and passes the command line arguments to it.


3333333333
Re: A9 [Re: mehrdad12] #480812
07/15/20 19:07
07/15/20 19:07
Joined: May 2009
Posts: 5,370
Caucasus
3run Offline
Senior Expert
3run  Offline
Senior Expert

Joined: May 2009
Posts: 5,370
Caucasus
Yeah, sadly there is no engine source code available, I'm pretty sure that acknex would have different future, if source code was published at the right time when there were users willing to develop it.


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung
Re: A9 [Re: mehrdad12] #480816
07/16/20 13:42
07/16/20 13:42
Joined: May 2009
Posts: 5,370
Caucasus
3run Offline
Senior Expert
3run  Offline
Senior Expert

Joined: May 2009
Posts: 5,370
Caucasus
Working with acknex be like...
[Linked Image]


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung
Re: A9 [Re: mehrdad12] #480828
07/17/20 09:25
07/17/20 09:25
Joined: May 2008
Posts: 2,113
NRW/Germany
alibaba Offline
Expert
alibaba  Offline
Expert

Joined: May 2008
Posts: 2,113
NRW/Germany
I can absolutely relate to that grin


Professional Edition
A8.47.1
--------------------
http://www.yueklet.de
Re: A9 [Re: mehrdad12] #480829
07/17/20 11:04
07/17/20 11:04
Joined: Jul 2010
Posts: 283
Germany
J
jenGs Offline
Member
jenGs  Offline
Member
J

Joined: Jul 2010
Posts: 283
Germany
Question: Why do you still use it? I mean directx9 is now reealy old. I gave up on acknex and I am using godot engine now. Not bloated like unity ue lumberjack and much more agreeable licensing conditions (it's free).
It is realy questionable to release a game into the marked with such an old engine. It generates al lot of problems on newer machines. For example, I am getting only 30fps on my new desktop PC in fullscreen dispite any settings I tried (this problem only occures with acknex). At that moment I thought .... no, it is enough, even if there is a solution.

Re: A9 [Re: jenGs] #480830
07/17/20 11:44
07/17/20 11:44
Joined: Oct 2007
Posts: 5,210
İstanbul, Turkey
Quad Offline
Senior Expert
Quad  Offline
Senior Expert

Joined: Oct 2007
Posts: 5,210
İstanbul, Turkey
Been looking a godot, neat little engine. 3d and physics is kinda janky but they are working on it.


3333333333
Re: A9 [Re: 3run] #480831
07/17/20 13:45
07/17/20 13:45
Joined: Jul 2007
Posts: 619
Turkey, Izmir
Emre Offline
User
Emre  Offline
User

Joined: Jul 2007
Posts: 619
Turkey, Izmir
Originally Posted by 3run
Working with acknex be like...
[Linked Image]

Ahahah! You made my day dude. grin

Re: A9 [Re: mehrdad12] #481024
08/02/20 09:31
08/02/20 09:31
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Superku Offline
Senior Expert
Superku  Offline
Senior Expert

Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
@3run: lol


"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual

Check out my new game: Pogostuck: Rage With Your Friends
Re: A9 [Re: mehrdad12] #481064
08/04/20 15:36
08/04/20 15:36
Joined: May 2005
Posts: 868
Chicago, IL
Dooley Offline
User
Dooley  Offline
User

Joined: May 2005
Posts: 868
Chicago, IL
Okay, I know this will probably never happen. However, if I were able to recommend any features for the next version (or even a small patch to the current one) I would love to see the option to center the 3D camera on a selected object in WED.

Re: A9 [Re: mehrdad12] #481066
08/04/20 20:36
08/04/20 20:36
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Superku Offline
Senior Expert
Superku  Offline
Senior Expert

Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Not exactly what you request but in case you're not aware of it you can center all views on an object using the Level tab already: https://i.gyazo.com/1b51d8ae609cc43b18787cd072cb73b3.png


"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual

Check out my new game: Pogostuck: Rage With Your Friends
Page 4 of 6 1 2 3 4 5 6

Moderated by  aztec, Spirit 

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