Duke4.net Forums: EDuke32 Scripting - Duke4.net Forums

Jump to content

  • 120 Pages +
  • « First
  • 35
  • 36
  • 37
  • 38
  • 39
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

EDuke32 Scripting  "CON coding help"

User is offline   Daedolon 

  • Ancient Blood God

#1081

 Darkus, on 15 November 2012 - 06:44 AM, said:

It does not work very well, the sprites a screwed up in map.


Looks like the sprites aren't dividable by two. I know they should be but who knows.
0

User is offline   Darkus 

#1082

 XThX2, on 15 November 2012 - 07:33 AM, said:

You should also make them shoot the player if they can see him and if he's near the edge; otherwise it'd look stupid like "Oh let's all go climb up the slope why not, he can kill us on the way too!". I think you can just create batches of pigcops, randomly given tags and behave uniquely, those with a certain tag guard the outside and shoot the player if he's on edge while the rest climb up and meanwhile also shoot the player at given opportunity. I think this is easily doable but I've been away from CON for so long, I don't remember much.

This is for the moment a test, I wanted to see if they were able to reach the player depending on his position. I can very well make them shoot on sight, but for now, I'll try to make them do interesting things, like opening doors properly, activating switches, taking elevators...

 Trooper Dan, on 15 November 2012 - 07:29 AM, said:

Do they looked scrambled in the 32 bit modes?

In polymost/mer, they do not look scrambled anymore.

But now they are cut in half...
Spoiler

I also thought to use the 2061 tile, but I think I'll have the same result...
0

User is offline   Danukem 

  • Duke Plus Developer

#1083

View PostDiaz, on 15 November 2012 - 08:59 AM, said:

Trying to add a sprint feature to my mod, but things aren't working as expected. The following code:

            getplayer[THISACTOR].posxv XVELZ
            mulvar XVELZ 2
            getplayer[THISACTOR].posyv YVELZ
            mulvar YVELZ 2

            setplayer[THISACTOR].posxv XVELZ
            setplayer[THISACTOR].posyv YVELZ  


obviously causes the player's speed to increase exponentially, until it's way too fast. What strikes me is that dividing the variables instead of multiplying them succesfully makes the player speed slower, without exponentially doing so :P/>


Dividing seems to work for you because large amounts are constantly being added to those velocities as the player accelerates, preventing the numbers from getting near zero.

Instead of messing with the velocities directly, you might try manipulating player.runspeed instead.
0

User is offline   CruX 

#1084

...In both CrackDown and BLiGHT, I had this reoccurring problem with weapon-switching, where when the player switched from one weapon to another, the new weapon would pop up, lower down, and then raise back up. This shit seriously plagued me, I couldn't figure out what I was doing to cause it, and in the case of BLiGHT, I coded this big, elaborate workaround to fix it that probably wound up creating more problems than it solved. And then this morning I decided to change one little bit of my display code from this...

ifvare PWEAPON 1 {  // my own variable
setvar RETURN -1
state displaypistol 
}


to this

ifvare currentweapon 1 {  // a constantly updated variable
setvar RETURN -1
state displaypistol 
}


And WHAM, problem instantly fixed. I'm happy, though I am slightly curious as to why it would make a difference. I remember I originally abandoned use of most constantly updated variables like currentweapon because I either couldn't use them in events or the APLAYER actor without getting a warning (it was a long time ago, my memory's kinda sketchy). In any event, I'm probably going to add a little caveat to the DISPLAY/DRAWWEAPON events in the wiki because while both entries are informative enough on their own, if you do arbitrary things like I do, you'll wind up with this problem, and if you're as dumb as I am, it'll take you years to figure out a solution :P
0

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#1085

That's normal. To put it simply, you switch weapon the instant you press the key to select another, however the animation of your old weapon is still displayed until it is lowered. Note how the status bar change before you can see the new weapon.

So the player structure curr_weapon will holds the value for the selected weapon, while the variable currentweapon holds the value for the weapon that is being drawn.

And you really shouldn't currentweapon in the player actor, since it is used only to control what weapon will be drawn. In multiplayer, the game will assume that all players are using the same weapon as the player of the local machine.

This post has been edited by Fox: 16 November 2012 - 06:42 AM

0

User is offline   CruX 

#1086

View PostFox, on 16 November 2012 - 06:37 AM, said:

And you really shouldn't currentweapon in the player actor, since it is used only to control what weapon will be drawn. In multiplayer, the game will assume that all players are using the same weapon as the player of the local machine.

I don't use it in the player actor. This was (probably) the reason I quit using currentweapon altogether, because back when I first started coding, I saw that it was causing a warning to pop up in the compiler, and decided it was safer to just pull the info from curr_weapon and use that for everything instead. I get what you're talking about insofar as the difference between the curr_weapon struct and currentweapon though, thanks for clearing that up.

This post has been edited by EmericaSkater: 16 November 2012 - 06:46 AM

0

User is offline   Danukem 

  • Duke Plus Developer

#1087

View PostEmericaSkater, on 16 November 2012 - 06:46 AM, said:

I don't use it in the player actor.


Don't use it anywhere except for display events, unless you really know what you are doing.
0

User is offline   Kyanos 

#1088

Spoiler

I'm trying to run this code at map loading, just once per game. It just hangs up at the loading screen, before it begins to count textures. Any ideas?
0

User is offline   Danukem 

  • Duke Plus Developer

#1089

View PostDrek, on 24 November 2012 - 05:08 PM, said:

Spoiler

I'm trying to run this code at map loading, just once per game. It just hangs up at the loading screen, before it begins to count textures. Any ideas?


you need to put "addvar currsect 1" after the whilevarvarn currwall numwalls loop.
1

User is offline   Kyanos 

#1090

Duhh! Oh well, gotta love easy fixes. Even if it means I made a dumb mistake :P

This post has been edited by Drek: 24 November 2012 - 08:30 PM

0

User is offline   Fox 

  • Fraka kaka kaka kaka-kow!

#1091

May I ask, what is the most performance-wise effective way of using temporary gamevars? Right now I use per-actors gamevars for actors, per-player gamevars for the player and display events, and global gamevars for menus and etc. I don't really know if it could possible be less CPU consuming to use only global gamevars.
0

User is offline   Helixhorned 

  • EDuke32 Developer

#1092

 Fox, on 17 December 2012 - 11:20 AM, said:

May I ask, what is the most performance-wise effective way of using temporary gamevars? Right now I use per-actors gamevars for actors, per-player gamevars for the player and display events, and global gamevars for menus and etc.

All CON code is executed in sequence, never concurrently or in parallel. So, lacking local variables in the language, there's no reason to use anything other than global gamevars for storing values temporarily.

Quote

I don't really know if it could possible be less CPU consuming to use only global gamevars.

One thing that's for sure is that it will consume less memory. A single per-actor gamevar takes 64KB or 128KB, depending on the "bitness" of the executable.

edit: the "storing variables temporarily" part should be more exact, of course. For example, you have to be careful if you're calling CON "states" in between the assignment and use of a variable, or an event is fired (e.g. by spawn --> EVENT_EGS).
0

User is offline   Kyanos 

#1093

I am curious about this;

volume_number


Specifically if I could use a switch or if commands to specify which .CON files are included depending upon which episode is played.

To be even more specific, say an upcoming WGR release has multiple episodes, some may use one CON while other episodes use another. Almost like two or more different mods in one.

I'll play around with it, maybe one of you guys here can help shed some light on it.
0

User is offline   Mark 

#1094

......shed some light on it. :)

Attached thumbnail(s)

  • Attached Image: SHINE.jpg

1

User is offline   Hendricks266 

  • Weaponized Autism

  #1095

 Drek, on 01 January 2013 - 06:39 AM, said:

I am curious about this;

volume_number


Specifically if I could use a switch or if commands to specify which .CON files are included depending upon which episode is played.

The include CON command only works at the top level, so you wouldn't be able to use separate files per se. However, it is very possible to have code conditional on VOLUME, and utilizing multiple instances of EVENT_GAME (or whatever other events are needed) and the "-mx" command you could keep the code modular.
0

User is offline   OpenMaw 

  • Judge Mental

#1096

I have a bit of a pickle right now, and hopefully someone knows the answer.

I've got this code. It works just fine. Basically its just boxes. I'm stacking boxes.

Now, for no apparent reason, some of the boxes just decide to fall through the other boxes. (The code is very simple. If you get shot by a rocket, you blow up, if not, sit there and be a box.) There only code outside of the ifwasweapon stuff is "fall." It mostly works, but, again, some of them just decide to fall through the others, and they're all exactly in the same position relative to each other (The same number of units higher, evenly spaced.) so it's not sloppy map placement or anything. They just choose to be asses.

So am I to assume this means there is a set limit to the number of objects that can be stacked? If so, that's disheartening. I was hoping to build some mine-craft esque locales that I could have areas where you blow structures up that are made out of blocks.
1

User is offline   Mblackwell 

  • Evil Overlord

#1097

Does the actor's xvel change at all? Because if it moved even one build unit it could cause the sprite to no longer be considered the "floor" and it would fall through (depending on a few different factors). Also try increasing clipdist... go with something like say 84.
0

User is offline   zazo 

#1098

I enconuter an annoying thing: the rendering of shaded walls and floor is not the same between eduke( in game) and MAPSTER: when i test the map in mapster, the walls are darker in eduke for high shaded walls (somes turns to totaly black), but the shading of sprites are good ...
very annoying to work on dark places in a map.
some configurations to fix that ? thanks
0

User is offline   OpenMaw 

  • Judge Mental

#1099

 Mblackwell, on 09 January 2013 - 05:21 PM, said:

Does the actor's xvel change at all? Because if it moved even one build unit it could cause the sprite to no longer be considered the "floor" and it would fall through (depending on a few different factors). Also try increasing clipdist... go with something like say 84.


Not that i'm aware of. At least, i'm not fiddling with the sprites xvel. They start out stationary/stacked, so.... Blah. I tried adding clipdist to the code, and it made no discernable difference.

I did make a clipshape for the block, but I don't see why that would be the problem, since some of the blocks do end up stacking properly and others just fall through... Ugh...

Here's the code:


define BLOKBREK 19

action BLOKSTAY 0
action BLOKBREKNO 0

useractor notenemy BLOKBREK

clipdist 84
fall

ifaction BLOKBREKNO
{
	ifactioncount 16
	{
	strength 0
	action BLOKSTAY
        break
	}
}
else
	ifhitweapon
{
ifwasweapon RADIUSEXPLOSION
 {
            debris SCRAP1 8
      debris SCRAP2 4
      debris SCRAP3 7
killit   
    }
else
	action BLOKBREKNO
}
enda



Here's what the stack looks like in Mapster.
Posted Image

Here's what it looks like in game.

Posted Image


...The heck? To my knowledge they're all identical.

Now, over the edge of the platform I am on, they go all the way down to the bottom floor. So it's not something that stupid. I started with it at ground level, and made the raised platform to be able to see the top of the stack.
0

User is offline   Helixhorned 

  • EDuke32 Developer

#1100

[I moved this from the "What are you working on" thread since it's more of a CON coding question than a show-off post.]

 Commando Nukem, on 09 January 2013 - 10:48 AM, said:

I have a bit of a pickle right now, and hopefully someone knows the answer.

I've got this code. It works just fine. Basically its just boxes. I'm stacking boxes.

Now, for no apparent reason, some of the boxes just decide to fall through the other boxes.

If you raise the boxes a little so that they have a gap in between, they stay on each other. Unfortunately, game code is littered with "magic" z displacements everywhere. A suggestion at a workaround is to make the box model (I assume you will be making models since flat boxes are a little nonsensical, right?) bigger than its tile which is used for collision computations.

 Commando Nukem, on 10 January 2013 - 06:19 AM, said:

I tried adding clipdist to the code, and it made no discernable difference.

Clipdist is only used for clipmove, that is, horizontal movement. For BUILD, horizontal and vertical movement are two different concepts.
0

User is offline   Helixhorned 

  • EDuke32 Developer

#1101

 zazo, on 10 January 2013 - 06:10 AM, said:

I enconuter an annoying thing: the rendering of shaded walls and floor is not the same between eduke( in game) and MAPSTER: when i test the map in mapster, the walls are darker in eduke for high shaded walls (somes turns to totaly black), but the shading of sprites are good ...
very annoying to work on dark places in a map.
some configurations to fix that ? thanks

The following cvars are relevant:
  • r_usenewshading: selects between three fog computation modes.
  • r_shadescale: specifies a factor applied to the shade. This is currently 1.3 by default, so it may darken very dark objects to the point of being black. However, there's
  • r_shadescale_unbounded, which prevents objects becoming plain black if set to 0 (the default).

Check that these are the same for the game and editor. They're not synchronized automatically.
0

User is offline   zazo 

#1102

 Helixhorned, on 10 January 2013 - 12:31 PM, said:

The following cvars are relevant:
  • r_usenewshading: selects between three fog computation modes.
  • r_shadescale: specifies a factor applied to the shade. This is currently 1.3 by default, so it may darken very dark objects to the point of being black. However, there's
  • r_shadescale_unbounded, which prevents objects becoming plain black if set to 0 (the default).

Check that these are the same for the game and editor. They're not synchronized automatically.


in mapster32.cfg and eduke32.cfg files ???
0

User is offline   zazo 

#1103

in mapster when i load a old map, what means the message in the top of the window: "map corrupt (level 4): 64 errors ?"
scray !!! :P
0

User is offline   OpenMaw 

  • Judge Mental

#1104

 Helixhorned, on 10 January 2013 - 12:25 PM, said:

[I moved this from the "What are you working on" thread since it's more of a CON coding question than a show-off post.]


If you raise the boxes a little so that they have a gap in between, they stay on each other. Unfortunately, game code is littered with "magic" z displacements everywhere. A suggestion at a workaround is to make the box model (I assume you will be making models since flat boxes are a little nonsensical, right?) bigger than its tile which is used for collision computations.


Clipdist is only used for clipmove, that is, horizontal movement. For BUILD, horizontal and vertical movement are two different concepts.


Ah, man... That's what I figured. Thanks for the info. That kinda blows. Basically what i'm wanting to do is build a minecraftian map. Certain structures would have walls that would be blastable with explosives, so you can build alternate paths through the environment. That means the player would need direct interaction with the objects (jumping over them, etc.)
0

User is offline   Kyanos 

#1105

View Postzazo, on 10 January 2013 - 01:31 PM, said:

in mapster when i load a old map, what means the message in the top of the window: "map corrupt (level 4): 64 errors ?"
scray !!! :P

in the old days tricks were used, or if you go old enough, mistakes were made, that weren't yet mistakes. A level 4 is vary scray indeed. Using ALT + (either) [ or ] you can cycle through them and see whats up.
0

User is offline   zazo 

#1106

View PostDrek, on 10 January 2013 - 04:31 PM, said:

in the old days tricks were used, or if you go old enough, mistakes were made, that weren't yet mistakes. A level 4 is vary scray indeed. Using ALT + (either) [ or ] you can cycle through them and see whats up.


hum... ALT+] or [ doesn't work to see the errors... the console show a list of sprites num (and sec num ) where the problems are. How can i cycle through them to see what is wrong ? how to find a sprite num in mapster ?

And another question: how to configure the mouse speed and acceleration for navigate in the 2d mod in mapster ?
0

User is offline   zazo 

#1107

View Postzazo, on 11 January 2013 - 06:24 AM, said:

hum... ALT+] or [ doesn't work to see the errors... the console show a list of sprites num (and sec num ) where the problems are. How can i cycle through them to see what is wrong ? how to find a sprite num in mapster ?

And another question: how to configure the mouse speed and acceleration for navigate in the 2d mod in mapster ?


ok, the keys works. im not good.
Some 100 lost sprites in the corners of the map that were not in sectors... easy to fix them.
but for sectors (wrap)...what can i do ?

how to configure the mouse speed and acceleration for navigate in the 2d mod in mapster ?
0

User is offline   Helixhorned 

  • EDuke32 Developer

#1108

View Postzazo, on 10 January 2013 - 01:25 PM, said:

in mapster32.cfg and eduke32.cfg files ???

In the applications' consoles: use the backtick key ([`], the key underneath [Esc]) to open it and then issue the commands.

View Postzazo, on 11 January 2013 - 07:39 AM, said:

but for sectors (wrap)...what can i do ?

Depending on what kind of corruption it is, you'll need to ask the local expert(s) for help :P.
I started a wiki page about corruptions a while ago, but didn't finish it, nor got to putting up a link.

Quote

how to configure the mouse speed and acceleration for navigate in the 2d mod in mapster ?

That's not configurable, but you can "run" by having LShift pressed and "strafe" by holding RCtrl.

edit: actually, there's pk_turndecel and the slightly misnamed pk_turnaccel (which is angular acceleration+deceleration really). Then there's UnrealEd mouse mode in 3D mode (toggled with F5), which can be configured with pk_uedaccel...
0

User is offline   Mike Norvak 

  • Music Producer

#1109

View Postzazo, on 11 January 2013 - 07:39 AM, said:

how to configure the mouse speed and acceleration for navigate in the 2d mod in mapster ?


Well you don't really need to navigate in 2d mode if I understand correctly what you mean. Instead you just need to right-click the mouse to move along the map in 2d, and scroll the mouse mid button to zoom-in, zoom-out.
0

User is offline   zazo 

#1110

View PostNorvak, on 11 January 2013 - 10:00 AM, said:

Well you don't really need to navigate in 2d mode if I understand correctly what you mean. Instead you just need to right-click the mouse to move along the map in 2d, and scroll the mouse mid button to zoom-in, zoom-out.

thanks !
another question: How to prevent stop sounds in the game when the player accesses the menu?
for example, in game the player encounter a character and starts talking, but if the menu is accessed (load, save, adjust the sound volume), its stop the speech...
0

Share this topic:


  • 120 Pages +
  • « First
  • 35
  • 36
  • 37
  • 38
  • 39
  • 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