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
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 919 guests, and 0 spiders.
Key: Admin, Global Mod, Mod
Newest Members
firatv, wandaluciaia, Mega_Rod, EternallyCurious, howardR
19050 Registered Users
Previous Thread
Next Thread
Print Thread
Rating: 5
Page 12 of 23 1 2 10 11 12 13 14 22 23
Re: C# wrapper 2.2.3 - RELEASE [Re: Stromausfall] #366890
04/07/11 20:36
04/07/11 20:36
Joined: Dec 2006
Posts: 434
UK,Terra, SolarSystem, Milky W...
pararealist Offline
Senior Member
pararealist  Offline
Senior Member

Joined: Dec 2006
Posts: 434
UK,Terra, SolarSystem, Milky W...
No, all paths are already added as add_folder.
Its a strange one, and being A7 may well not be fixed?
Will check if same in A8 later on.


A8.3x Commercial, AcknexWrapper and VS 2010 Express
○pararealist now.
Re: C# wrapper 2.2.3 - RELEASE [Re: pararealist] #368000
04/20/11 14:42
04/20/11 14:42
Joined: Jun 2004
Posts: 655
to your left
BoH_Havoc Offline
User
BoH_Havoc  Offline
User

Joined: Jun 2004
Posts: 655
to your left
Just wanted to drop by and say i love the new possibility to call lite-c scripts from C#. I was able to get Shade-C working in C# in no time.

Thanks!


Shade-C EVO Lite-C Shader Framework
Re: C# wrapper 2.2.3 - RELEASE [Re: BoH_Havoc] #368001
04/20/11 14:49
04/20/11 14:49
Joined: Dec 2002
Posts: 616
Austria
Stromausfall Offline OP
User
Stromausfall  Offline OP
User

Joined: Dec 2002
Posts: 616
Austria
great to hear that ^^


get the C# wrapper:
for A7.85.4 and A8.30.4, Version 2.3.9
at http://acknexwrapper2.matthias-auer.net/ or visit the thread
Re: C# wrapper 2.2.3 - RELEASE [Re: Stromausfall] #368665
04/27/11 13:19
04/27/11 13:19
Joined: Apr 2011
Posts: 1
S
stoneco10 Offline
Guest
stoneco10  Offline
Guest
S

Joined: Apr 2011
Posts: 1

This website's really the best.


yulgang yulgang
C# wrapper 2.2.4 - RELEASE [Re: stoneco10] #368863
04/28/11 23:43
04/28/11 23:43
Joined: Dec 2002
Posts: 616
Austria
Stromausfall Offline OP
User
Stromausfall  Offline OP
User

Joined: Dec 2002
Posts: 616
Austria
a new version was uploaded (for Acknex 7.85.4 AND Acknex 8.10)
the update of the wrapper includes:

- engine_getvar, wrong return type, wrong type for type parameter - fixed
- engine_getvarinfo, wrong return type, wrong type for type parameter - fixed
- engine_debugposition, wrong return type, wrong type for type parameter - fixed
- EventOnBreakPoint, wrong type of the line argument - fixed

here's the link:

AcknexWrapper_2_2_4_FOR_8_10_AND_7_85_4.zip

+ an example to show how to use some debug functions has been added to the examples page


get the C# wrapper:
for A7.85.4 and A8.30.4, Version 2.3.9
at http://acknexwrapper2.matthias-auer.net/ or visit the thread
Re: C# wrapper 2.2.4 - RELEASE [Re: Stromausfall] #369683
05/06/11 01:54
05/06/11 01:54
Joined: Jul 2010
Posts: 283
Germany
J
jenGs Offline
Member
jenGs  Offline
Member
J

Joined: Jul 2010
Posts: 283
Germany
Hi,
Thank you for the work you put into this laugh

I have a small problem.
I am using different classes.
I am creating the instances of this classes in my Scheduled main method.
Now I want to run a Scheduled method within this class. It is a classmember function with a wait in it.
The function is called by the constructor of my new class.
But until now the funtiction will not run, even it is called from the constuctor,
Code:
class Controller
{
  public Controller()
  {
    StartGamepad();
  }

  public IEnumerable<ScheduleMethod> StartGamepad()
  {
    //do stuff
    while(true)
    {
      yield return ScheduleMethod.wait(1);
    }
  }
}



Perhaps I don't understand the concept of the Scheduler.

Last edited by jenGs; 05/06/11 01:55.
Re: C# wrapper 2.2.4 - RELEASE [Re: jenGs] #369692
05/06/11 06:02
05/06/11 06:02
Joined: Dec 2002
Posts: 616
Austria
Stromausfall Offline OP
User
Stromausfall  Offline OP
User

Joined: Dec 2002
Posts: 616
Austria
the method StartGamepad seams to be correct !
the problem is that the StartGamepad method is an IEnumerable, thus you can't directly call it !
to add an IEnumerable to the Scheduler, you have to add it, using Scheduler.AddEventVoid(...)

in your case instead of trying to call it like :
Code:
StartGamepad();


call it like this :
Code:
Scheduler.AddEventVoid(StartGamePad);



Scheduler.AddEventVoid method also immediately returns, after it has run the method for one time and then attached it to the scheduler !


get the C# wrapper:
for A7.85.4 and A8.30.4, Version 2.3.9
at http://acknexwrapper2.matthias-auer.net/ or visit the thread
Re: C# wrapper 2.2.4 - RELEASE [Re: Stromausfall] #369719
05/06/11 12:13
05/06/11 12:13
Joined: Jul 2010
Posts: 283
Germany
J
jenGs Offline
Member
jenGs  Offline
Member
J

Joined: Jul 2010
Posts: 283
Germany
Thank you. It works fine laugh

It is great to work with the engine AND classes laugh

C# wrapper 2.2.5 - RELEASE [Re: jenGs] #371834
05/25/11 21:04
05/25/11 21:04
Joined: Dec 2002
Posts: 616
Austria
Stromausfall Offline OP
User
Stromausfall  Offline OP
User

Joined: Dec 2002
Posts: 616
Austria
a new version was uploaded (for Acknex 7.85.4 AND Acknex 8.10)
the update of the wrapper includes:

- ScheduleMethod.executeEventVoid and ScheduleMethod.executeEventObject added - they allow to execute functions not "beside" but "inside" the function they are called
- EVENT_BLOCK, EVENT_ENTITY, EVENT_FRICTION, EVENT_PUSH, EVENT_IMPACT, EVENT_SHOOT, EVENT_SONAR, EVENT_SCAN, EVENT_DETECT, EVENT_TRIGGER, EVENT_TOUCH, EVENT_RELEASE, EVENT_CLICK, EVENT_RIGHTCLICK, EVENT_RECEIVE, EVENT_DISCONNECT and EVENT_FRAME were wrongfully implemented as ENTITY flags - removed from ENTITY
- Scheduler.StartScheduler(null) didn't work - fixed

The new ScheduleMethod.executeEventVoid and ScheduleMethod.executeEventObject feature in comparision to the Scheduler.AddEventVoid feature
Click to reveal..




here's the link:

AcknexWrapper_2_2_5_FOR_8_10_AND_7_85_4.zip

+ an example which shows the two types of method calling in the scheduler

Last edited by Stromausfall; 05/25/11 21:05.

get the C# wrapper:
for A7.85.4 and A8.30.4, Version 2.3.9
at http://acknexwrapper2.matthias-auer.net/ or visit the thread
C# wrapper 2.2.6 - RELEASE [Re: Stromausfall] #371851
05/25/11 22:59
05/25/11 22:59
Joined: Dec 2002
Posts: 616
Austria
Stromausfall Offline OP
User
Stromausfall  Offline OP
User

Joined: Dec 2002
Posts: 616
Austria
a new version was uploaded (for Acknex 7.85.4 AND Acknex 8.10)
the update of the wrapper includes:

- calling ScheduleMethod.executeEventVoid and ScheduleMethod.executeEventObject as the first “yield” command in a method added by Scheduler.AddEventVoid resulted in wrong scheduler behaviour – fixed

here's the link:

AcknexWrapper_2_2_6_FOR_8_10_AND_7_85_4.zip

Last edited by Stromausfall; 05/25/11 22:59.

get the C# wrapper:
for A7.85.4 and A8.30.4, Version 2.3.9
at http://acknexwrapper2.matthias-auer.net/ or visit the thread
Page 12 of 23 1 2 10 11 12 13 14 22 23

Moderated by  TWO 

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