Duke4.net Forums: EDuke32 2.0 and Polymer! - Duke4.net Forums

Jump to content

  • 213 Pages +
  • « First
  • 95
  • 96
  • 97
  • 98
  • 99
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

EDuke32 2.0 and Polymer!  "talk about the wonders of EDuke32 and the new renderer"

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#2881

Is it possible to increase the moving speed in Mapster, or to use some sort of autorun option?
0

User is offline   Micky C 

  • Honored Donor

#2882

When I hold down shift in mapster, I seem to move a lot faster, or do you mean move even faster then that?
0

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#2883

I got a little problem with Shift. But I would prefer to always run instead of using another key.
0

User is offline   Mblackwell 

  • Evil Overlord

#2884

Hold Right Mouse and drag to move (yes in 3D mode).
0

User is offline   Jblade 

#2885

Just saw the new event commands, pretty amazing stuff thanks <_< However something seems off about jumping...I can't describe it but there seems to be a really tiny delay now between press jump and doing it in this snapshot compared to the last one. I didn't notice anything in Duke but I did in the AMC TC...could anybody else who has the AMC TC installed grab the latest snapshot and compare jumping in it to the previous one and tell me if I'm going crazy or not?
0

User is offline   TerminX 

  • el fundador

  #2886

I think you're going crazy. <_<

Edit: I reviewed the changes line by line and found one problem, but I don't see how it could have any effect on jumping. Try the new revision and see what happens.
1

User is offline   Jblade 

#2887

View PostTerminX, on 14 May 2012 - 02:17 PM, said:

I think you're going crazy. :P

Edit: I reviewed the changes line by line and found one problem, but I don't see how it could have any effect on jumping. Try the new revision and see what happens.

Hmm, it's still there BUT maybe the 'problem' is that one of the other misc tweaks mentioned effected some of my jumping animation code or something, so it probably is just due to something I did a while ago :)
0

User is offline   TerminX 

  • el fundador

  #2888

I'll keep looking at the changes because someone else reported an issue with jumping too. The thing is, I've gone over every line I changed and nothing stands out as possible being able to affect jumping at all. I'm wondering if maybe it's some nasty bug elsewhere that has only come up now because some behavior it depends on is different, but I'm not seeing it at this point. I really hate how this game's code is a house of cards that just falls down whenever you do anything.
1

User is offline   Tea Monster 

  • Polymancer

#2889

How about getting a map loader written for UDK then ( jk )
0

User is offline   Jblade 

#2890

View PostTerminX, on 15 May 2012 - 08:07 AM, said:

I'll keep looking at the changes because someone else reported an issue with jumping too. The thing is, I've gone over every line I changed and nothing stands out as possible being able to affect jumping at all. I'm wondering if maybe it's some nasty bug elsewhere that has only come up now because some behavior it depends on is different, but I'm not seeing it at this point. I really hate how this game's code is a house of cards that just falls down whenever you do anything.

Well the issue is a minor delay between jumping and the actual movement; I have no idea if this helps but event_jump still seems to be triggering when I press the button, but it just seems as if there's a delay somewhere; and it's seemingly random, one moment it works fine and then the next I can hold it down for several seconds and nothing will happen, but eventually you WILL jump even if you don't let go of the key.

I do remember you and most of the other coders saying as much in the other topic; it's too bad for people re-writing the code but at least we had real mod support compared to SW's complete lack of (Although the very few mods did some really cool things even without being able to change the gameplay, at the very least the mapping effects were far superior even if they were harder to work with)
0

User is offline   TerminX 

  • el fundador

  #2891

I just commited r2656 which internally changes the way that events are handled in regards to cancelling them with the RETURN variable. Please thoroughly test this build and report any issues with it here. The jumping problem appears to have been caused by EVENT_SOUND's use of the RETURN var... any event that played a sound would get its RETURN value mangled by the event firing. This is actually a longstanding problem and also would have occurred when spawning a sprite or doing anything else that would cause an event to execute from within another. It should be resolved now. What this means for the end user is that whenever an event is triggered, the value of RETURN is saved off and restored when the event is over.
5

User is offline   Diaz 

#2892

So I guess this is what was causing the problem I described in the EDuke32 scripting thread.... I was playing a sound inside EVENT_DOFIRE. I kinda managed to fix it but let me see if it works with the old code and r2656...

This post has been edited by Diaz: 15 May 2012 - 09:47 PM

0

User is offline   Jblade 

#2893

nice work TX, thanks for the quick fixes :)
0

User is offline   Diaz 

#2894

Nice work indeed, everything is working fine now :)
0

User is offline   TerminX 

  • el fundador

  #2895

I'm glad you guys like the fix and that it seems to be working well. I was afraid I would break something since it involved changing the code of every event in the game individually. They were really simple changes but with something like 90 or so events I wouldn't be surprised if an error crept in somewhere.
0

User is offline   Jblade 

#2896

Seems like setting RETURN -1 on the weapon keys doesn't disable changing weapons anymore:

Quote

View PostM210, on 16 May 2012 - 10:39 AM, said:

Yeah, I have a some bugs now too.
For example at EVENT_WEAPKEY7 doesn't works setvar RETURN -1, therefore I received an unwanted ability to switch weapons (shrinker/expander )

This problem I got in rev2656


Just went into my stuff and got this too.
0

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#2897

Thanks for the EVENT_SOUND function, TX.

Edit: I noticed this event only works for actors, but not for menu sounds. Is that right, since it was supposed to be a workaround for hard-coded sounds? I would like to control the sounds on menu and other screens, with THISACTOR set to -1 during these events.

This post has been edited by Fox: 17 May 2012 - 06:55 AM

0

User is offline   Helixhorned 

  • EDuke32 Developer

#2898

Yeah, it hooks into A_PlaySound(), which only runs when a sound is played from an actor. This also means that THISACTOR works as expected.
0

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#2899

Is there going to have control for actorless sounds in the future?
0

User is offline   TerminX 

  • el fundador

  #2900

Committed 2657, 2658 and 2659. 2657 addresses a longstanding issue with lockups after alt+tabbing in windowed mode, 2658 fixes the WEAPKEY events and 2659 changes the EVENT_SOUND implementation to cover all sound types.
3

User is offline   Diaz 

#2901

So it was true that you're getting some free time to work on EDuke32 again... :)

That's great news, and great work as well! Thanks a lot for the new stuff.
0

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#2902

Funny how fast TerminX actually works. :)
0

User is offline   TerminX 

  • el fundador

  #2903

What do you mean by that?
0

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#2904

Well, normally you are too busy. But now it's just ask something and you give. :)
0

User is offline   TerminX 

  • el fundador

  #2905

That's true! You guys had better get your requests in while it lasts. :)
1

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#2906

Since you are there...

I am not a fan of Edukes' alternate Hud replacing the default mini-Hud. Can't it be simply set as a new "screen size"? That's at least how the source ports of Doom defines a custom Hud, I.e. press + and - to select the port unique Hud.
0

User is offline   TerminX 

  • el fundador

  #2907

Doom source ports don't have to worry about running 10 year old mods that manipulate the screen size value in various ways, because Doom source ports don't have real scripting systems, just inflexible stuff like ACS.
0

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#2908

That's true, but I find it weird to erase one of the game Huds. :) Not that I am a big fan of Duke's mini-Hud that omits the armor and keys displays. To tell the truth, the right thing to do would be to include these in the mini-Hud. But that would require new art and that's outside of Eduke's spectrum.

Eduke prevents the "mighty foot engaged" message of replacing other messages. Since the XBLA version completely removed that message from the game, isn't it time for Eduke to do the same? I mean, the XBLA is kinda of a newer version of Duke afterall.
0

User is offline   TerminX 

  • el fundador

  #2909

Removing it was considered (hence the fact that the behavior was altered at all), but I decided against it since it's the original behavior and some mod somewhere might rely on it in some way. I agree that the message is kind of pointless... it made a lot more sense back in earlier versions of Duke where pressing quick kick actually switched weapon to the knee, fired, and then switched back.
0

User is offline   Jimmy 

  • Let's go Brandon!

#2910

I know a lot of Doom source ports come with their own little archives for some new art and stuff. If you guys aren't opposed to coding an extended version of the original mini-HUD, I'd be happy to provide art for it. My mod already has basic functionality for it, so I've got some art for it ready. But if you wanted something different, I could whip it up. Just let me know. I'll create whatever art I could for you guys, just ask.
0

Share this topic:


  • 213 Pages +
  • « First
  • 95
  • 96
  • 97
  • 98
  • 99
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic


All copyrights and trademarks not owned by Voidpoint, LLC are the sole property of their respective owners. Play Ion Fury! ;) © Voidpoint, LLC

Enter your sign in name and password


Sign in options