/* * PDP-8/E Simulator * * Copyright © 1994-2015 Bernhard Baehr * * MemoryInspectorDWUnsignedInteger.m - Double Word Unsigned Integer Memory Inspector * * This file is part of PDP-8/E Simulator. * * PDP-8/E Simulator 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 3 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, see . */ #import #import "MemoryInspectorProtocol.h" #define ORDER_IN_MENU 70 #define WORDS_PER_ROW 2 #define CONTENT_WIDTH 8 #define NEEDS_ALIGNMENT YES #define ALLOWS_EDITING YES #define MENU_TITLE @"Double Word Unsigned Integer" #define TOOL_TIP @"This column displays the memory content as double word unsigned integer." @interface MemoryInspectorDWUnsignedInteger : NSFormatter { } @end @implementation MemoryInspectorDWUnsignedInteger + (void) load { /* dummy to load the class when zero-linking while development */ } - (NSNumber *) orderInMemoryInspectorMenu { return [NSNumber numberWithInt:ORDER_IN_MENU]; } - (NSString *) menuTitle { return NSLocalizedString(MENU_TITLE, @""); } - (unsigned) wordsPerRow { return WORDS_PER_ROW; } - (unsigned) contentWidthInCharacters { return CONTENT_WIDTH; } - (BOOL) needsMemoryAlignment { return NEEDS_ALIGNMENT; } - (BOOL) allowsEditing { return ALLOWS_EDITING; } - (NSString *) toolTipForContentColumn { return NSLocalizedString(TOOL_TIP, @""); } - (NSString *) stringForObjectValue:(NSArray *)value { if ([[value class] isSubclassOfClass:[NSString class]]) return (NSString *) value; NSAssert ([value count] == WORDS_PER_ROW, @"Invalid number of words to format"); return [NSString stringWithFormat:@"%8d", [[value objectAtIndex:0] intValue] | ([[value objectAtIndex:1] intValue] << 12)]; } - (BOOL) getObjectValue:(id *)value forString:(NSString *)string errorDescription:(NSString **)error { int n; NSMutableArray *val = [NSMutableArray arrayWithCapacity:WORDS_PER_ROW]; NSScanner *scanner = [NSScanner scannerWithString:string]; if ([scanner scanInt:&n]) { if ((n & ~077777777) != 0) { if (error) *error = NSLocalizedString(@"Double word unsigned integer out of valid " "range from 0 to 16777215.", @""); return FALSE; } [val addObject:[NSNumber numberWithInt:077770000 | (n & 07777)]]; [val addObject:[NSNumber numberWithInt:077770000 | ((n >> 12) & 07777)]]; } else { if (error) *error = NSLocalizedString(@"Invalid double word unsigned integer.", @""); return FALSE; } if (! [scanner isAtEnd]) { if (error) *error = NSLocalizedString( @"Exactly one double word unsigned integer expected.", @""); return FALSE; } *value = val; return TRUE; } @end