| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | // Copyright (C) 2003-2008 Dolphin Project.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, version 2.0.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU General Public License 2.0 for more details.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // A copy of the GPL 2.0 should have been included with the program.
 | 
					
						
							|  |  |  | // If not, see http://www.gnu.org/licenses/
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Official SVN repository and contact information can be found at
 | 
					
						
							|  |  |  | // http://code.google.com/p/dolphin-emu/
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | #ifndef _POINTERWRAP_H
 | 
					
						
							|  |  |  | #define _POINTERWRAP_H
 | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 16:05:32 +00:00
										 |  |  | // Extremely simple serialization framework.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // (mis)-features:
 | 
					
						
							|  |  |  | // + Super fast
 | 
					
						
							|  |  |  | // + Very simple
 | 
					
						
							|  |  |  | // + Same code is used for serialization and deserializaition (in most cases)
 | 
					
						
							|  |  |  | // - Zero backwards/forwards compatibility
 | 
					
						
							|  |  |  | // - Serialization code for anything complex has to be manually written.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | #include <map>
 | 
					
						
							|  |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | #include "Common.h"
 | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 16:05:32 +00:00
										 |  |  | template <class T> | 
					
						
							|  |  |  | struct LinkedListItem : public T | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	LinkedListItem<T> *next; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | class PointerWrap | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 	enum Mode  // also defined in pluginspecs.h. Didn't want to couple them.
 | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 		MODE_READ = 1, | 
					
						
							|  |  |  | 		MODE_WRITE = 2, | 
					
						
							|  |  |  | 		MODE_MEASURE = 3, | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 	u8 **ptr; | 
					
						
							|  |  |  | 	Mode mode; | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 	PointerWrap(u8 **ptr_, Mode mode_) : ptr(ptr_), mode(mode_) {} | 
					
						
							|  |  |  | 	PointerWrap(unsigned char **ptr_, int mode_) : ptr((u8**)ptr_), mode((Mode)mode_) {} | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 	void SetMode(Mode mode_) {mode = mode_;} | 
					
						
							|  |  |  | 	Mode GetMode() const {return mode;} | 
					
						
							|  |  |  | 	u8 **GetPPtr() {return ptr;} | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 	void DoVoid(void *data, int size) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		switch (mode) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		case MODE_READ:	memcpy(data, *ptr, size); break; | 
					
						
							|  |  |  | 		case MODE_WRITE: memcpy(*ptr, data, size); break; | 
					
						
							|  |  |  | 		case MODE_MEASURE: break;  // MODE_MEASURE - don't need to do anything
 | 
					
						
							|  |  |  | 		default: break;  // throw an error?
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		(*ptr) += size; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Store maps to file. Very useful.
 | 
					
						
							|  |  |  | 	template<class T> | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 	void Do(std::map<unsigned int, T> &x) { | 
					
						
							| 
									
										
										
										
											2008-08-30 16:05:32 +00:00
										 |  |  | 		// TODO
 | 
					
						
							|  |  |  | 		PanicAlert("Do(map<>) does not yet work."); | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 
	// Store vectors.
 | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 	template<class T> | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 	void Do(std::vector<T> &x) { | 
					
						
							| 
									
										
										
										
											2008-08-30 16:05:32 +00:00
										 |  |  | 		// TODO
 | 
					
						
							|  |  |  | 		PanicAlert("Do(vector<>) does not yet work."); | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  |   | 
					
						
							|  |  |  |     template<class T> | 
					
						
							|  |  |  |     void DoArray(T *x, int count) { | 
					
						
							|  |  |  |         DoVoid((void *)x, sizeof(T) * count); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-08-28 07:42:48 +00:00
										 |  |  |              | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 	template<class T> | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | 	void Do(T &x) { | 
					
						
							|  |  |  | 		DoVoid((void *)&x, sizeof(x)); | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-08-30 16:05:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	template<class T> | 
					
						
							|  |  |  | 	void DoLinkedList(LinkedListItem<T> **list_start) { | 
					
						
							|  |  |  | 		// TODO
 | 
					
						
							|  |  |  | 		PanicAlert("Do(vector<>) does not yet work."); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-08-21 23:28:07 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-30 12:11:25 +00:00
										 |  |  | #endif  // _POINTERWRAP_H
 |