2011-07-16 04:09:49 +08:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// SFML - Simple and Fast Multimedia Library
|
2023-01-12 18:38:41 +08:00
|
|
|
// Copyright (C) 2007-2023 Marco Antognini (antognini.marco@gmail.com),
|
2015-02-26 19:57:16 +08:00
|
|
|
// Laurent Gomila (laurent@sfml-dev.org)
|
2011-07-16 04:09:49 +08:00
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied warranty.
|
|
|
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it freely,
|
|
|
|
// subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented;
|
|
|
|
// you must not claim that you wrote the original software.
|
|
|
|
// If you use this software in a product, an acknowledgment
|
|
|
|
// in the product documentation would be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such,
|
|
|
|
// and must not be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#import "CocoaAppDelegate.h"
|
2022-07-05 00:20:58 +08:00
|
|
|
|
2011-07-16 04:09:49 +08:00
|
|
|
#import "NSString+stdstring.h"
|
|
|
|
|
2023-07-03 00:11:42 +08:00
|
|
|
#include <filesystem>
|
|
|
|
|
2011-07-16 04:09:49 +08:00
|
|
|
// These define are used for converting the color of the NSPopUpButton
|
2022-07-05 00:20:58 +08:00
|
|
|
#define BLUE @"Blue"
|
|
|
|
#define GREEN @"Green"
|
|
|
|
#define RED @"Red"
|
2011-07-16 04:09:49 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
2021-12-19 05:21:52 +08:00
|
|
|
|
2011-07-16 04:09:49 +08:00
|
|
|
// Our PIMPL
|
|
|
|
struct SFMLmainWindow
|
|
|
|
{
|
2023-04-03 10:24:02 +08:00
|
|
|
SFMLmainWindow(sf::WindowHandle win) : renderWindow(win), text(font), sprite(logo), background(sf::Color::Blue)
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2023-07-03 00:11:42 +08:00
|
|
|
std::filesystem::path resPath = [[[NSBundle mainBundle] resourcePath] tostdstring];
|
|
|
|
if (!logo.loadFromFile(resPath / "logo.png"))
|
2011-07-16 04:09:49 +08:00
|
|
|
NSLog(@"Couldn't load the logo image");
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-03-12 16:19:07 +08:00
|
|
|
logo.setSmooth(true);
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-03-12 16:19:07 +08:00
|
|
|
sf::FloatRect rect = sprite.getLocalBounds();
|
2022-07-05 00:20:58 +08:00
|
|
|
sf::Vector2f size(rect.width, rect.height);
|
2012-03-12 16:19:07 +08:00
|
|
|
sprite.setOrigin(size / 2.f);
|
2021-12-15 17:29:34 +08:00
|
|
|
sprite.scale({0.3f, 0.3f});
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-03-12 16:19:07 +08:00
|
|
|
unsigned int ww = renderWindow.getSize().x;
|
|
|
|
unsigned int wh = renderWindow.getSize().y;
|
|
|
|
sprite.setPosition(sf::Vector2f(ww, wh) / 2.f);
|
2012-08-21 01:26:30 +08:00
|
|
|
|
2023-07-03 00:11:42 +08:00
|
|
|
if (!font.loadFromFile(resPath / "tuffy.ttf"))
|
2012-08-21 01:26:30 +08:00
|
|
|
NSLog(@"Couldn't load the font");
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2015-11-22 01:44:38 +08:00
|
|
|
text.setFillColor(sf::Color::White);
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
sf::RenderWindow renderWindow;
|
|
|
|
sf::Font font;
|
|
|
|
sf::Text text;
|
|
|
|
sf::Texture logo;
|
|
|
|
sf::Sprite sprite;
|
|
|
|
sf::Color background;
|
2011-07-16 04:09:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Private stuff
|
|
|
|
@interface CocoaAppDelegate ()
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
@property (assign) SFMLmainWindow* mainWindow;
|
|
|
|
@property (retain) NSTimer* renderTimer;
|
|
|
|
@property (assign) BOOL visible;
|
2011-07-16 04:09:49 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
@property (assign) BOOL initialized;
|
2012-01-28 01:52:26 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (void)renderMainWindow:(NSTimer*)aTimer;
|
2011-07-16 04:09:49 +08:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
// Finally, the implementation
|
|
|
|
@implementation CocoaAppDelegate
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
@synthesize window = m_window;
|
|
|
|
@synthesize sfmlView = m_sfmlView;
|
|
|
|
@synthesize textField = m_textField;
|
2011-07-16 04:09:49 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
@synthesize mainWindow = m_mainWindow;
|
|
|
|
@synthesize renderTimer = m_renderTimer;
|
|
|
|
@synthesize visible = m_visible;
|
2011-07-16 04:09:49 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
@synthesize initialized = m_initialized;
|
2012-01-28 01:52:26 +08:00
|
|
|
|
2014-05-17 19:48:44 +08:00
|
|
|
- (id)init
|
|
|
|
{
|
2012-01-28 01:52:26 +08:00
|
|
|
self = [super init];
|
2014-05-17 19:48:44 +08:00
|
|
|
if (self)
|
2012-01-28 01:52:26 +08:00
|
|
|
self.initialized = NO;
|
2014-05-17 19:48:44 +08:00
|
|
|
|
2012-01-28 01:52:26 +08:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification*)aNotification
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2014-05-17 19:36:21 +08:00
|
|
|
(void)aNotification;
|
|
|
|
|
2012-01-28 01:52:26 +08:00
|
|
|
if (!self.initialized)
|
|
|
|
{
|
2012-03-09 18:45:37 +08:00
|
|
|
// Init the SFML render area.
|
2012-01-28 01:52:26 +08:00
|
|
|
self.mainWindow = new SFMLmainWindow(self.sfmlView);
|
2012-03-12 16:19:07 +08:00
|
|
|
self.mainWindow->text.setString([self.textField.stringValue tostdwstring]);
|
2012-01-28 01:52:26 +08:00
|
|
|
self.visible = YES;
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-01-28 01:52:26 +08:00
|
|
|
// Launch the timer to periodically display our stuff into the Cocoa view.
|
2022-07-05 00:20:58 +08:00
|
|
|
self.renderTimer = [NSTimer
|
|
|
|
timerWithTimeInterval:1.0 / 60.0
|
|
|
|
target:self
|
|
|
|
selector:@selector(renderMainWindow:)
|
|
|
|
userInfo:nil
|
|
|
|
repeats:YES];
|
|
|
|
[[NSRunLoop mainRunLoop] addTimer:self.renderTimer forMode:NSDefaultRunLoopMode];
|
|
|
|
[[NSRunLoop mainRunLoop] addTimer:self.renderTimer forMode:NSEventTrackingRunLoopMode];
|
2012-01-28 01:52:26 +08:00
|
|
|
/*
|
|
|
|
* This is really some ugly code but in order to have the timer fired
|
|
|
|
* periodically we need to add it to the two above runloop mode.
|
|
|
|
*
|
|
|
|
* The default mode allows timer firing while the user doesn't do anything
|
|
|
|
* while the second mode allows timer firing while he is using a slider
|
|
|
|
* or a menu.
|
|
|
|
*/
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-01-28 01:52:26 +08:00
|
|
|
self.initialized = YES;
|
|
|
|
}
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (void)dealloc
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
|
|
|
[self.renderTimer invalidate];
|
2012-03-12 16:19:07 +08:00
|
|
|
self.mainWindow->renderWindow.close();
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
self.window = nil;
|
|
|
|
self.sfmlView = nil;
|
|
|
|
self.textField = nil;
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2021-12-19 05:21:52 +08:00
|
|
|
delete static_cast<SFMLmainWindow*>(self.mainWindow);
|
2022-07-05 00:20:58 +08:00
|
|
|
self.mainWindow = 0;
|
|
|
|
self.renderTimer = nil;
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2011-07-16 04:09:49 +08:00
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (void)renderMainWindow:(NSTimer*)aTimer
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2014-05-17 19:36:21 +08:00
|
|
|
(void)aTimer;
|
|
|
|
|
2011-07-16 04:09:49 +08:00
|
|
|
// Scaling
|
|
|
|
/* /!\ we do this at 60fps so choose low scaling factor! /!\ */
|
2012-03-12 16:19:07 +08:00
|
|
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Up))
|
2021-12-15 17:29:34 +08:00
|
|
|
self.mainWindow->sprite.scale({1.01f, 1.01f});
|
2014-05-17 19:48:44 +08:00
|
|
|
|
2012-03-12 16:19:07 +08:00
|
|
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Down))
|
2021-12-15 17:29:34 +08:00
|
|
|
self.mainWindow->sprite.scale({0.99f, 0.99f});
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2011-07-16 04:09:49 +08:00
|
|
|
// Clear the window, display some stuff and display it into our view.
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-03-12 16:19:07 +08:00
|
|
|
self.mainWindow->renderWindow.clear(self.mainWindow->background);
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2011-07-16 04:09:49 +08:00
|
|
|
if (self.visible)
|
2012-03-12 16:19:07 +08:00
|
|
|
self.mainWindow->renderWindow.draw(self.mainWindow->sprite);
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-03-12 16:19:07 +08:00
|
|
|
self.mainWindow->renderWindow.draw(self.mainWindow->text);
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-03-12 16:19:07 +08:00
|
|
|
self.mainWindow->renderWindow.display();
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (IBAction)colorChanged:(NSPopUpButton*)sender
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2012-01-28 01:52:26 +08:00
|
|
|
if (self.initialized)
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2012-01-28 01:52:26 +08:00
|
|
|
// Convert title to color
|
2014-05-17 19:48:44 +08:00
|
|
|
NSString* color = [[sender selectedItem] title];
|
2012-01-28 01:52:26 +08:00
|
|
|
if ([color isEqualToString:BLUE])
|
|
|
|
self.mainWindow->background = sf::Color::Blue;
|
|
|
|
else if ([color isEqualToString:GREEN])
|
|
|
|
self.mainWindow->background = sf::Color::Green;
|
|
|
|
else
|
|
|
|
self.mainWindow->background = sf::Color::Red;
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (IBAction)rotationChanged:(NSSlider*)sender
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2012-01-28 01:52:26 +08:00
|
|
|
if (self.initialized)
|
|
|
|
{
|
|
|
|
float angle = [sender floatValue];
|
2022-09-27 04:31:55 +08:00
|
|
|
self.mainWindow->sprite.setRotation(sf::degrees(angle));
|
2012-01-28 01:52:26 +08:00
|
|
|
}
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (IBAction)visibleChanged:(NSButton*)sender
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2012-01-28 01:52:26 +08:00
|
|
|
if (self.initialized)
|
|
|
|
self.visible = [sender state] == NSOnState;
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (IBAction)textChanged:(NSTextField*)sender
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2012-01-28 01:52:26 +08:00
|
|
|
if (self.initialized)
|
2012-03-12 16:19:07 +08:00
|
|
|
self.mainWindow->text.setString([[sender stringValue] tostdwstring]);
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
|
|
|
|
2014-05-17 19:48:44 +08:00
|
|
|
- (IBAction)updateText:(NSButton*)sender
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2014-05-17 19:36:21 +08:00
|
|
|
(void)sender;
|
|
|
|
|
2014-05-17 19:48:44 +08:00
|
|
|
// Simply simulate textChanged:
|
2011-07-16 04:09:49 +08:00
|
|
|
[self textChanged:self.textField];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
2012-01-28 01:52:26 +08:00
|
|
|
|
|
|
|
@implementation SilentWindow
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (void)keyDown:(NSEvent*)theEvent
|
2012-01-28 01:52:26 +08:00
|
|
|
{
|
2014-05-17 19:36:21 +08:00
|
|
|
(void)theEvent;
|
2012-01-28 01:52:26 +08:00
|
|
|
// Do nothing except preventing this alert.
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|