Subversion Repositories spk

Rev

Rev 170 | Rev 211 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 170 Rev 197
Line 113... Line 113...
113
	data.addToken(";", Utils::String::Number(this->iSize));
113
	data.addToken(";", Utils::String::Number(this->iSize));
114
	data.addToken(";", Utils::String::Number(this->iRelValPlayer));
114
	data.addToken(";", Utils::String::Number(this->iRelValPlayer));
115
	data.addToken(";", Utils::String::Number(this->iMinNoto));
115
	data.addToken(";", Utils::String::Number(this->iMinNoto));
116
	data.addToken(";", Utils::String::Number(this->iVideoID));
116
	data.addToken(";", Utils::String::Number(this->iVideoID));
117
	data.addToken(";", Utils::String::Number(this->iSkin));
117
	data.addToken(";", Utils::String::Number(this->iSkin));
118
	data.addToken(";", this->sID);
118
	data.addToken(";", this->sID.toString());
119
	data += ";"; // add the end ;
119
	data += ";"; // add the end ;
120
 
120
 
121
	return data;
121
	return data;
122
}
122
}
123
 
123
 
Line 173... Line 173...
173
	this->iSize = 0;
173
	this->iSize = 0;
174
	this->iRelValPlayer = 0;
174
	this->iRelValPlayer = 0;
175
	this->iMinNoto = 0;
175
	this->iMinNoto = 0;
176
	this->iVideoID = 0;
176
	this->iVideoID = 0;
177
	this->iSkin = 0;
177
	this->iSkin = 0;
178
	this->sID = "SC_NEW_SHIP";
178
	this->sID = L"SC_NEW_SHIP";
179
 
179
 
180
	// make sure the lists are clear
180
	// make sure the lists are clear
181
	this->ClearLists();
181
	this->ClearLists();
182
}
182
}
183
 
183
 
Line 330... Line 330...
330
		this->iSize = entries[pos + 4].toInt();
330
		this->iSize = entries[pos + 4].toInt();
331
		this->iRelValPlayer = entries[pos + 5].toInt();
331
		this->iRelValPlayer = entries[pos + 5].toInt();
332
		this->iMinNoto = entries[pos + 6].toInt();
332
		this->iMinNoto = entries[pos + 6].toInt();
333
		this->iVideoID = entries[pos + 7].toInt();
333
		this->iVideoID = entries[pos + 7].toInt();
334
		this->iSkin = entries[pos + 8].toInt();
334
		this->iSkin = entries[pos + 8].toInt();
335
		this->sID = entries[pos + 9];
335
		this->sID = entries[pos + 9].toWString();
336
 
336
 
337
		this->UpdateGunEntries();
337
		this->UpdateGunEntries();
338
 
338
 
339
		CLEANSPLIT(entries, max);
339
		CLEANSPLIT(entries, max);
340
 
340