1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
//
// Lynkeos
// $Id: MyDocumentData.m 571 2014-02-22 20:26:04Z j-etienne $
//
// Created by Jean-Etienne LAMIAUD on Thu Jul 29 2004.
// Copyright (c) 2004-2014. Jean-Etienne LAMIAUD
//
// 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; either version 2 of the License, or
// (at your option) any later version.
//
// 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 for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
#include "MyDocumentData.h"
// Common keys
#define K_DATA_REVISION_KEY @"revision"
#define K_OBJECT_LIST_KEY @"object"
#define K_DARK_FRAME_LIST_KEY @"darkframes"
#define K_FLAT_FIELD_LIST_KEY @"flatfields"
#define K_WINDOW_SIZES_KEY @"window sizes"
//==============================================================================
// V2 file format
//==============================================================================
#define K_PARAMETERS_KEY @"params" //!< Key for saving the parameters
@implementation MyDocumentDataV2
- (void)encodeWithCoder:(NSCoder *)encoder
{
[encoder encodeInt:K_DATA_REVISION forKey:K_DATA_REVISION_KEY];
[encoder encodeObject:_imageList forKey:K_OBJECT_LIST_KEY];
[encoder encodeObject:_darkFrameList forKey:K_DARK_FRAME_LIST_KEY];
[encoder encodeObject:_flatFieldList forKey:K_FLAT_FIELD_LIST_KEY];
[encoder encodeObject:_parameters forKey:K_PARAMETERS_KEY];
[encoder encodeObject:_windowSizes forKey:K_WINDOW_SIZES_KEY];
}
- (id)initWithCoder:(NSCoder *)decoder
{
if ( [decoder containsValueForKey:K_OBJECT_LIST_KEY] )
{
_formatRevision = [decoder decodeIntForKey:K_DATA_REVISION_KEY];
_imageList = [[decoder decodeObjectForKey:K_OBJECT_LIST_KEY] retain];
[_imageList setMode:ImageMode];
_darkFrameList
= [[decoder decodeObjectForKey:K_DARK_FRAME_LIST_KEY] retain];
[_darkFrameList setMode:DarkFrameMode];
_flatFieldList
= [[decoder decodeObjectForKey:K_FLAT_FIELD_LIST_KEY] retain];
[_flatFieldList setMode:FlatFieldMode];
_parameters = [[decoder decodeObjectForKey:K_PARAMETERS_KEY] retain];
_windowSizes = [[decoder decodeObjectForKey:K_WINDOW_SIZES_KEY] retain];
return( self );
}
else
{
[self release];
return( nil );
}
}
// No override of dealloc since this class only contains references to objects
// later owned by the document
@end
|