Gamestudio Links
Zorro Links
Newest Posts
Camera always moves upwards?
by clonman. 11/13/25 14:04
brokerCommand PLOT_HLINE parameters
by M_D. 11/13/25 10:42
ZorroGPT
by TipmyPip. 11/10/25 11:04
Training with the R bridge does not work
by frutza. 11/05/25 00:46
Zorro 2.70
by opm. 10/24/25 03:44
Alpaca Plugin v1.4.0
by TipmyPip. 10/20/25 18:04
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
5 registered members (Grant, AndrewAMD, ozgur, Quad, TipmyPip), 29,980 guests, and 3 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sheliepaley, Blueguy, blobplayintennis, someone2, NotEBspark
19177 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Erasing a datapoint in a plot array #480732
07/05/20 13:04
07/05/20 13:04
Joined: Dec 2019
Posts: 54
ozgur Online OP
Junior Member
ozgur  Online OP
Junior Member

Joined: Dec 2019
Posts: 54
I can manipulate past datapoints in a plot using plotData() in a function like below. Now I'd like to erase a past datapoint, what value I should assign to respective element in the plot array?

From log file, "empty" elements (hence not plotted) of a plot array seem to have ~1.7*10^308 (DBL_MAX?) value. Is there a defined macro for this value in lite-C? I tried defining myself but all I've got is an empty chart.

Thanks.

Code
void plotSet(string name, var val, int offset)
{
	if (offset >= 0) { // Only modify the past
		DATA* plotHistory = plotData(name);
		var* plotHistoryData = plotHistory->Data;
		
		if (plotHistoryData) { // If plot data has valid pointer
			int firstBar = plotHistory->start;
			int lastBar = plotHistory->end;
			int curBar = lastBar - offset;
			
			if (curBar > firstBar) { // If target bar is valid plot
				plotHistoryData[curBar] = val;
			}
		}
	}
}

Re: Erasing a datapoint in a plot array [Re: ozgur] #480739
07/06/20 09:51
07/06/20 09:51
Joined: Jul 2000
Posts: 28,029
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 28,029
Frankfurt
Yes, the charting package uses the number 1.7e308 as a "no value" element. But you cannot enter this number directly in a lite-C script. You could copy it from a known plot element with no value.


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1