Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
6 registered members (EternallyCurious, AndrewAMD, ricky_k, 7th_zorro, 2 invisible), 478 guests, and 3 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 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: 53
ozgur Offline OP
Junior Member
ozgur  Offline OP
Junior Member

Joined: Dec 2019
Posts: 53
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: 27,978
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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