mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 01:56:52 +00:00 
			
		
		
		
	Objects no longer inherit from extra data class "Controlled" harmful abstraction no longer exists Introduced NiParticleModifier/NiParticleCollider abstractions Extra data size reading moved into the base read() method
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			555 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			555 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "extra.hpp"
 | |
| 
 | |
| namespace Nif
 | |
| {
 | |
| 
 | |
| void NiStringExtraData::read(NIFStream *nif)
 | |
| {
 | |
|     Extra::read(nif);
 | |
|     string = nif->getString();
 | |
| }
 | |
| 
 | |
| void NiTextKeyExtraData::read(NIFStream *nif)
 | |
| {
 | |
|     Extra::read(nif);
 | |
| 
 | |
|     int keynum = nif->getInt();
 | |
|     list.resize(keynum);
 | |
|     for(int i=0; i<keynum; i++)
 | |
|     {
 | |
|         list[i].time = nif->getFloat();
 | |
|         list[i].text = nif->getString();
 | |
|     }
 | |
| }
 | |
| 
 | |
| void NiVertWeightsExtraData::read(NIFStream *nif)
 | |
| {
 | |
|     Extra::read(nif);
 | |
| 
 | |
|     nif->skip(nif->getUShort() * sizeof(float)); // vertex weights I guess
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| }
 |