Swiftgram/submodules/LegacyComponents/Sources/TGCameraMainTabletView.m
Ilya Laktyushin 397e2ad82e Various Fixes
2021-07-25 17:51:58 +03:00

305 lines
12 KiB
Objective-C

#import "TGCameraMainTabletView.h"
#import <SSignalKit/SSignalKit.h>
#import "LegacyComponentsInternal.h"
#import "TGFont.h"
#import "UIControl+HitTestEdgeInsets.h"
#import "TGCameraInterfaceAssets.h"
#import <LegacyComponents/TGModernButton.h>
#import "TGCameraShutterButton.h"
#import "TGCameraModeControl.h"
#import "TGCameraFlipButton.h"
#import "TGCameraTimeCodeView.h"
#import "TGCameraZoomView.h"
#import "TGPhotoEditorUtils.h"
#import "TGMediaPickerPhotoCounterButton.h"
#import "TGMediaPickerPhotoStripView.h"
const CGFloat TGCameraTabletPanelViewWidth = 102.0f;
@interface TGCameraMainTabletView ()
{
UIView *_panelView;
UIView *_panelBackgroundView;
bool _hasResults;
}
@end
@implementation TGCameraMainTabletView
@synthesize cameraFlipped;
@synthesize cameraModeChanged;
@synthesize flashModeChanged;
@synthesize focusPointChanged;
@synthesize expositionChanged;
@synthesize shutterPressed;
@synthesize shutterReleased;
@synthesize cancelPressed;
- (instancetype)initWithFrame:(CGRect)frame avatar:(bool)avatar hasUltrawideCamera:(bool)hasUltrawideCamera hasTelephotoCamera:(bool)hasTelephotoCamera
{
self = [super initWithFrame:frame];
if (self != nil)
{
_panelView = [[UIView alloc] initWithFrame:CGRectMake(frame.size.width - TGCameraTabletPanelViewWidth, 0, TGCameraTabletPanelViewWidth, frame.size.height)];
[self addSubview:_panelView];
_panelBackgroundView = [[UIView alloc] initWithFrame:_panelView.bounds];
_panelBackgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
_panelBackgroundView.backgroundColor = [TGCameraInterfaceAssets transparentPanelBackgroundColor];
[_panelView addSubview:_panelBackgroundView];
_cancelButton = [[TGModernButton alloc] initWithFrame:CGRectMake(0, 0, 60, 44)];
_cancelButton.backgroundColor = [UIColor clearColor];
_cancelButton.exclusiveTouch = true;
_cancelButton.titleLabel.font = TGSystemFontOfSize(18);
[_cancelButton setTitle:TGLocalized(@"Common.Cancel") forState:UIControlStateNormal];
[_cancelButton setTintColor:[TGCameraInterfaceAssets normalColor]];
[_cancelButton sizeToFit];
_cancelButton.frame = CGRectMake(0, 0.5f, MAX(60.0f, _cancelButton.frame.size.width), 44);
[_cancelButton addTarget:self action:@selector(cancelButtonPressed) forControlEvents:UIControlEventTouchUpInside];
[_panelView addSubview:_cancelButton];
_doneButton = [[TGModernButton alloc] initWithFrame:CGRectMake(0, 0, 60, 44)];
_doneButton.hidden = true;
_doneButton.backgroundColor = [UIColor clearColor];
_doneButton.exclusiveTouch = true;
_doneButton.titleLabel.font = TGMediumSystemFontOfSize(18);
[_doneButton setTitle:TGLocalized(@"Common.Done") forState:UIControlStateNormal];
[_doneButton setTintColor:[TGCameraInterfaceAssets normalColor]];
[_doneButton sizeToFit];
_doneButton.frame = CGRectMake(0, 0.5f, MAX(60.0f, _doneButton.frame.size.width), 44);
[_doneButton addTarget:self action:@selector(doneButtonPressed) forControlEvents:UIControlEventTouchUpInside];
[_panelView addSubview:_doneButton];
_shutterButton = [[TGCameraShutterButton alloc] initWithFrame:CGRectMake(0, 0, 66, 66)];
[_shutterButton addTarget:self action:@selector(shutterButtonPressed) forControlEvents:UIControlEventTouchDown];
[_shutterButton addTarget:self action:@selector(shutterButtonReleased) forControlEvents:UIControlEventTouchUpInside];
[_panelView addSubview:_shutterButton];
_modeControl = [[TGCameraModeControl alloc] initWithFrame:CGRectMake(0, 0, _panelView.frame.size.width, 260) avatar:avatar];
[_panelView addSubview:_modeControl];
__weak TGCameraMainTabletView *weakSelf = self;
_timecodeView = [[TGCameraTimeCodeView alloc] initWithFrame:CGRectMake((frame.size.width - 120) / 2, frame.size.height / 4 - 10, 120, 20)];
_timecodeView.hidden = true;
_timecodeView.requestedRecordingDuration = ^NSTimeInterval
{
__strong TGCameraMainTabletView *strongSelf = weakSelf;
if (strongSelf == nil || strongSelf.requestedVideoRecordingDuration == nil)
return 0.0;
return strongSelf.requestedVideoRecordingDuration();
};
[_panelView addSubview:_timecodeView];
_flipButton = [[TGCameraFlipButton alloc] initWithFrame:CGRectMake(0, 0, 44, 44)];
[_flipButton addTarget:self action:@selector(flipButtonPressed) forControlEvents:UIControlEventTouchUpInside];
[_panelView addSubview:_flipButton];
_zoomView = [[TGCameraZoomView alloc] initWithFrame:CGRectMake(10, frame.size.height - 18, frame.size.width - 20, 1.5f)];
[self addSubview:_zoomView];
_modeControl.modeChanged = ^(PGCameraMode mode, __unused PGCameraMode previousMode)
{
__strong TGCameraMainTabletView *strongSelf = weakSelf;
if (strongSelf == nil)
return;
if (strongSelf.cameraModeChanged != nil)
strongSelf.cameraModeChanged(mode);
if (mode == PGCameraModePhoto)
{
[strongSelf->_shutterButton setButtonMode:TGCameraShutterButtonNormalMode animated:true];
[strongSelf->_timecodeView setHidden:true animated:true];
}
else if (mode == PGCameraModeVideo)
{
[strongSelf->_shutterButton setButtonMode:TGCameraShutterButtonVideoMode animated:true];
[strongSelf->_timecodeView setHidden:false animated:true];
}
};
_selectedPhotosView = [[TGMediaPickerPhotoStripView alloc] initWithFrame:CGRectZero];
_selectedPhotosView.interfaceOrientation = UIInterfaceOrientationPortrait;
_selectedPhotosView.removable = true;
_selectedPhotosView.itemSelected = ^(NSInteger index)
{
__strong TGCameraMainTabletView *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf->_photoCounterButton setSelected:false animated:true];
[strongSelf->_selectedPhotosView setHidden:true animated:true];
if (strongSelf.resultPressed != nil)
strongSelf.resultPressed(index);
};
_selectedPhotosView.itemRemoved = ^(NSInteger index)
{
__strong TGCameraMainTabletView *strongSelf = weakSelf;
if (strongSelf == nil)
return;
if (strongSelf.itemRemoved != nil)
strongSelf.itemRemoved(index);
};
_selectedPhotosView.hidden = true;
[self addSubview:_selectedPhotosView];
_photoCounterButton = [[TGMediaPickerPhotoCounterButton alloc] initWithFrame:CGRectMake(0, 0, 64, 38)];
[_photoCounterButton addTarget:self action:@selector(photoCounterButtonPressed) forControlEvents:UIControlEventTouchUpInside];
_photoCounterButton.userInteractionEnabled = false;
[_panelView addSubview:_photoCounterButton];
}
return self;
}
- (void)setResults:(NSArray *)results
{
if (results.count == 0)
{
_hasResults = false;
_doneButton.hidden = true;
}
else
{
_hasResults = true;
_doneButton.hidden = false;
}
TGDispatchAfter(0.2, dispatch_get_main_queue(), ^
{
[self setNeedsLayout];
});
}
- (void)resultButtonPressed
{
if (self.resultPressed != nil)
self.resultPressed(-1);
}
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
UIView *view = [super hitTest:point withEvent:event];
if ([view isDescendantOfView:_panelView] || [view isDescendantOfView:_selectedPhotosView])
return view;
return nil;
}
- (void)setInterfaceHiddenForVideoRecording:(bool)hidden animated:(bool)animated
{
bool hasDoneButton = _hasResults;
if (animated)
{
if (!hidden)
{
_modeControl.hidden = false;
_cancelButton.hidden = false;
_flipButton.hidden = false;
_panelBackgroundView.hidden = false;
}
[UIView animateWithDuration:0.25f
animations:^
{
CGFloat alpha = hidden ? 0.0f : 1.0f;
_modeControl.alpha = alpha;
_cancelButton.alpha = alpha;
_flipButton.alpha = alpha;
_panelBackgroundView.alpha = alpha;
if (hasDoneButton)
_doneButton.alpha = alpha;
} completion:^(BOOL finished)
{
if (finished)
{
_modeControl.hidden = hidden;
_cancelButton.hidden = hidden;
_flipButton.hidden = hidden;
_panelBackgroundView.hidden = hidden;
if (hasDoneButton)
_doneButton.hidden = hidden;
}
}];
}
else
{
[_modeControl setHidden:hidden animated:false];
CGFloat alpha = hidden ? 0.0f : 1.0f;
_modeControl.hidden = hidden;
_modeControl.alpha = alpha;
_cancelButton.hidden = hidden;
_cancelButton.alpha = alpha;
_flipButton.hidden = hidden;
_flipButton.alpha = alpha;
_panelBackgroundView.hidden = hidden;
_panelBackgroundView.alpha = alpha;
if (hasDoneButton)
{
_doneButton.hidden = hidden;
_doneButton.alpha = alpha;
}
}
if (hidden && _photoCounterButton.selected)
{
[_photoCounterButton setSelected:false animated:true];
[_selectedPhotosView setHidden:true animated:true];
}
[_photoCounterButton setHidden:hidden animated:animated];
}
- (void)layoutSubviews
{
CGSize referenceSize = self.frame.size;
if (UIInterfaceOrientationIsLandscape(_interfaceOrientation))
referenceSize = CGSizeMake(referenceSize.height, referenceSize.width);
_panelView.frame = CGRectMake(referenceSize.width - TGCameraTabletPanelViewWidth, 0, TGCameraTabletPanelViewWidth, referenceSize.height);
_shutterButton.frame = CGRectMake((_panelView.frame.size.width - _shutterButton.frame.size.width) / 2,
(_panelView.frame.size.height - _shutterButton.frame.size.height) / 2,
_shutterButton.frame.size.width, _shutterButton.frame.size.height);
CGFloat flipButtonPosition = 0.0f;
CGFloat cancelButtonPosition = _panelView.frame.size.height - _cancelButton.frame.size.height - 7;
if (!_doneButton.hidden)
{
flipButtonPosition = _panelView.frame.size.height / 8.0f - _flipButton.frame.size.height / 2.0f;
cancelButtonPosition = 7.0f;
}
_flipButton.frame = CGRectMake((_panelView.frame.size.width - _flipButton.frame.size.width) / 2, flipButtonPosition, _flipButton.frame.size.width, _flipButton.frame.size.height);
_doneButton.frame = CGRectMake((_panelView.frame.size.width - _doneButton.frame.size.width) / 2, _panelView.frame.size.height - _doneButton.frame.size.height - 7, _doneButton.frame.size.width, _doneButton.frame.size.height);
_cancelButton.frame = CGRectMake((_panelView.frame.size.width - _cancelButton.frame.size.width) / 2, cancelButtonPosition, _cancelButton.frame.size.width, _cancelButton.frame.size.height);
_modeControl.frame = CGRectMake(_modeControl.frame.origin.x, CGFloor(referenceSize.height / 4 * 3 - _modeControl.frame.size.height / 2 - 12), _modeControl.frame.size.width, _modeControl.frame.size.height);
_timecodeView.frame = CGRectMake((_panelView.frame.size.width - _timecodeView.frame.size.width) / 2, _panelView.frame.size.height / 4 - _timecodeView.frame.size.height / 2, _timecodeView.frame.size.width, _timecodeView.frame.size.height);
_zoomView.frame = CGRectMake(10, referenceSize.height - 18, referenceSize.width - 20 - _panelView.frame.size.width, 1.5f);
CGFloat photosViewSize = TGPhotoThumbnailSizeForCurrentScreen().height + 4 * 2;
_photoCounterButton.frame = CGRectMake((_panelView.frame.size.width - 64) / 2.0f, _panelView.frame.size.height - _cancelButton.frame.size.height - 52.0f, 64, 38);
_selectedPhotosView.frame = CGRectMake(4.0f, referenceSize.height - photosViewSize - 30.0f, referenceSize.width - 4.0f * 2.0f - _panelView.frame.size.width, photosViewSize);
}
@end