mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2025-01-31 17:24:08 +00:00
f365a502da
- cleaned up warnings
222 lines
6.6 KiB
Objective-C
Executable File
222 lines
6.6 KiB
Objective-C
Executable File
/* Copyright (c) 2006-2007 Christopher J. W. Lloyd
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
// Original - Christopher Lloyd <cjwl@objc.net>
|
|
#import <Foundation/NSGeometry.h>
|
|
#import <Foundation/NSDictionary.h>
|
|
#import <Foundation/NSStringFormatter.h>
|
|
#import <Foundation/NSObjCRuntime.h>
|
|
#import <Foundation/NSRaise.h>
|
|
#import <math.h>
|
|
|
|
const NSPoint NSZeroPoint={0,0};
|
|
|
|
BOOL NSEqualPoints(NSPoint point0,NSPoint point1) {
|
|
return (point0.x==point1.x) && (point0.y==point1.y);
|
|
}
|
|
|
|
NSString *NSStringFromPoint(NSPoint point) {
|
|
NSDictionary *dictionary=[NSDictionary
|
|
dictionaryWithObjectsAndKeys:
|
|
[NSString stringWithFormat:@"%g",point.x],@"x",
|
|
[NSString stringWithFormat:@"%g",point.y],@"y",
|
|
nil];
|
|
|
|
return [dictionary description];
|
|
}
|
|
|
|
NSPoint NSPointFromString(NSString *string) {
|
|
NSPoint result=NSZeroPoint;
|
|
|
|
NS_DURING
|
|
NSDictionary *plist=[string propertyList];
|
|
|
|
if(plist!=nil){
|
|
result.x=[[plist objectForKey:@"x"] floatValue];
|
|
result.y=[[plist objectForKey:@"y"] floatValue];
|
|
}
|
|
NS_HANDLER
|
|
NS_ENDHANDLER
|
|
|
|
return result;
|
|
}
|
|
|
|
//
|
|
const NSSize NSZeroSize={0,0};
|
|
|
|
BOOL NSEqualSizes(NSSize size0,NSSize size1) {
|
|
return (size0.width==size1.width) && (size0.height==size1.height);
|
|
}
|
|
|
|
NSString *NSStringFromSize(NSSize size) {
|
|
NSDictionary *dictionary=[NSDictionary
|
|
dictionaryWithObjectsAndKeys:
|
|
[NSString stringWithFormat:@"%g",size.width],@"width",
|
|
[NSString stringWithFormat:@"%g",size.height],@"height",
|
|
nil];
|
|
|
|
return [dictionary description];
|
|
}
|
|
|
|
NSSize NSSizeFromString(NSString *string) {
|
|
NSSize result=NSZeroSize;
|
|
|
|
NS_DURING
|
|
NSDictionary *plist=[string propertyList];
|
|
|
|
if(plist!=nil){
|
|
result.width=[[plist objectForKey:@"width"] floatValue];
|
|
result.height=[[plist objectForKey:@"height"] floatValue];
|
|
}
|
|
NS_HANDLER
|
|
NS_ENDHANDLER
|
|
|
|
return result;
|
|
}
|
|
|
|
//
|
|
const NSRect NSZeroRect={{0,0},{0,0}};
|
|
|
|
BOOL NSEqualRects(NSRect rect0,NSRect rect1) {
|
|
return NSEqualPoints(rect0.origin,rect1.origin) && NSEqualSizes(rect0.size,rect1.size);
|
|
}
|
|
|
|
BOOL NSIsEmptyRect(NSRect rect) {
|
|
if(rect.size.width>0 && rect.size.height>0)
|
|
return NO;
|
|
|
|
return YES;
|
|
}
|
|
|
|
|
|
NSRect NSInsetRect(NSRect rect,float dx,float dy) {
|
|
rect.origin.x+=dx;
|
|
rect.origin.y+=dy;
|
|
rect.size.width-=dx*2;
|
|
rect.size.height-=dy*2;
|
|
return rect;
|
|
}
|
|
|
|
NSRect NSOffsetRect(NSRect rect,float dx,float dy) {
|
|
rect.origin.x+=dx;
|
|
rect.origin.y+=dy;
|
|
return rect;
|
|
|
|
}
|
|
|
|
NSRect NSIntegralRect(NSRect rect) {
|
|
if (!NSIsEmptyRect(rect)) {
|
|
rect.origin.x = floor(rect.origin.x);
|
|
rect.origin.y = floor(rect.origin.y);
|
|
rect.size.width = ceil(rect.size.width);
|
|
rect.size.height = ceil(rect.size.height);
|
|
}
|
|
return rect;
|
|
|
|
}
|
|
|
|
NSRect NSUnionRect(NSRect rect0,NSRect rect1) {
|
|
if(NSIsEmptyRect(rect0))
|
|
if(NSIsEmptyRect(rect1))
|
|
return NSZeroRect;
|
|
else
|
|
return rect1;
|
|
else
|
|
if(NSIsEmptyRect(rect1))
|
|
return rect0;
|
|
else {
|
|
NSRect result;
|
|
|
|
result.origin.x=MIN(rect0.origin.x,rect1.origin.x);
|
|
result.origin.y=MIN(rect0.origin.y,rect1.origin.y);
|
|
result.size.width=MAX(NSMaxX(rect0),NSMaxX(rect1))-result.origin.x;
|
|
result.size.height=MAX(NSMaxY(rect0),NSMaxY(rect1))-result.origin.y;
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
NSRect NSIntersectionRect(NSRect rect0,NSRect rect1) {
|
|
NSRect result;
|
|
|
|
if(NSMaxX(rect0)<=NSMinX(rect1) || NSMinX(rect0)>=NSMaxX(rect1) ||
|
|
NSMaxY(rect0)<=NSMinY(rect1) || NSMinY(rect0)>=NSMaxY(rect1))
|
|
return NSZeroRect;
|
|
|
|
result.origin.x=MAX(NSMinX(rect0),NSMinX(rect1));
|
|
result.origin.y=MAX(NSMinY(rect0),NSMinY(rect1));
|
|
result.size.width=MIN(NSMaxX(rect0),NSMaxX(rect1))-result.origin.x;
|
|
result.size.height=MIN(NSMaxY(rect0),NSMaxY(rect1))-result.origin.y;
|
|
|
|
return result;
|
|
}
|
|
|
|
void NSDivideRect(NSRect rect,NSRect *parts,NSRect *remainder,float amount,NSRectEdge edge) {
|
|
NSUnimplementedFunction();
|
|
}
|
|
|
|
|
|
BOOL NSContainsRect(NSRect rect0,NSRect rect1) {
|
|
return ((NSMinX(rect0) < NSMinX(rect1)) && (NSMinY(rect0) < NSMinY(rect1)) &&
|
|
(NSMaxX(rect0) > NSMaxX(rect1)) && (NSMaxY(rect0) > NSMaxY(rect1)))?YES:NO;
|
|
}
|
|
|
|
BOOL NSIntersectsRect(NSRect rect0,NSRect rect1) {
|
|
if(NSMaxX(rect0)<=NSMinX(rect1) || NSMinX(rect0)>=NSMaxX(rect1) ||
|
|
NSMaxY(rect0)<=NSMinY(rect1) || NSMinY(rect0)>=NSMaxY(rect1))
|
|
return NO;
|
|
|
|
return YES;
|
|
}
|
|
|
|
|
|
NSString *NSStringFromRect(NSRect rect) {
|
|
NSDictionary *dictionary=[NSDictionary
|
|
dictionaryWithObjectsAndKeys:
|
|
[NSString stringWithFormat:@"%g",rect.origin.x],@"x",
|
|
[NSString stringWithFormat:@"%g",rect.origin.y],@"y",
|
|
[NSString stringWithFormat:@"%g",rect.size.width],@"width",
|
|
[NSString stringWithFormat:@"%g",rect.size.height],@"height",
|
|
nil];
|
|
|
|
return [dictionary description];
|
|
}
|
|
|
|
NSRect NSRectFromString(NSString *string) {
|
|
NSRect result=NSZeroRect;
|
|
|
|
NS_DURING
|
|
NSDictionary *plist=[string propertyList];
|
|
|
|
if(plist!=nil){
|
|
result.origin.x=[[plist objectForKey:@"x"] floatValue];
|
|
result.origin.y=[[plist objectForKey:@"y"] floatValue];
|
|
result.size.width=[[plist objectForKey:@"width"] floatValue];
|
|
result.size.height=[[plist objectForKey:@"height"] floatValue];
|
|
}
|
|
NS_HANDLER
|
|
NS_ENDHANDLER
|
|
|
|
return result;
|
|
}
|
|
|
|
BOOL NSPointInRect(NSPoint point,NSRect rect) {
|
|
return (point.x>=NSMinX(rect) && point.x<=NSMaxX(rect)) &&
|
|
(point.y>=NSMinY(rect) && point.y<=NSMaxY(rect));
|
|
}
|
|
|
|
BOOL NSMouseInRect(NSPoint point,NSRect rect,BOOL flipped) {
|
|
if(flipped)
|
|
return (point.x>=NSMinX(rect) && point.x<NSMaxX(rect) &&
|
|
point.y>=NSMinY(rect) && point.y<NSMaxY(rect));
|
|
else
|
|
return (point.x>=NSMinX(rect) && point.x<NSMaxX(rect) &&
|
|
point.y>NSMinY(rect) && point.y<=NSMaxY(rect));
|
|
}
|
|
|