| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542 |
- /*
- Copyright 2013 Scott Logic Ltd
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- #import "ScannerViewController.h"
- @import AVFoundation;
- #import <AudioToolbox/AudioToolbox.h>
- #import "SCShapeView.h"
- #import "ScannerControllerView.h"
- //#import "DetailViewController.h"
- #import "const.h"
- #import "AppDelegate.h"
- //#import "MainViewController.h"
- //#import "ContactListViewController.h"
- //#import "CartUtils.h"
- #define SCANNER_TARGET_DETAIL 0
- #define SCANNER_TARGET_CART 1
- //#import "ScannerControlViewController.h"
- @interface ScannerViewController () <AVCaptureMetadataOutputObjectsDelegate> {
- AVCaptureVideoPreviewLayer *_previewLayer;
- SCShapeView *_boundingBox;
- NSTimer *_boxHideTimer;
- UILabel *_decodedMessage;
- }
- @end
- @implementation ScannerViewController
- //- (UIInterfaceOrientationMask)supportedInterfaceOrientations
- //{
- // return UIInterfaceOrientationMaskPortrait;
- //}
- //- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
- //{
- //
- // return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
- //
- //}
- - (BOOL)shouldAutorotate
- {
-
- return false;
-
- }
- -(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
- {
-
- [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
- CGRect rect=self.view.bounds;
-
- DebugLog(@"%@",NSStringFromCGRect(self.focusZone.frame));
- // rect.origin.y=rect.origin.y+40;
- // rect.size.height = rect.size.height-40;
-
-
-
-
-
-
-
- [CATransaction begin];
- [CATransaction setAnimationDuration:0.5];
- [CATransaction setAnimationTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
- // [self updatePreviewLayerForOrientation:toInterfaceOrientation];
- _previewLayer.position = CGPointMake(CGRectGetMidX(rect), CGRectGetMidY(rect));
-
- // self.backgroundView.highLightRect = CGRectInset(self.focusZone.frame,6,6);
- _previewLayer.bounds = rect;
-
- UIInterfaceOrientation orientation = [[UIApplication sharedApplication]statusBarOrientation];
- switch (orientation) {
-
-
-
- case UIInterfaceOrientationPortrait:
- // [_previewLayer setAffineTransform:CGAffineTransformMakeRotation(0)];
-
- _previewLayer.connection.videoOrientation=AVCaptureVideoOrientationPortrait;
- break;
- case UIInterfaceOrientationPortraitUpsideDown:
- //[_previewLayer setAffineTransform:CGAffineTransformMakeRotation(M_PI)];
- _previewLayer.connection.videoOrientation=AVCaptureVideoOrientationPortraitUpsideDown;
- break;
- case UIInterfaceOrientationLandscapeLeft:
- // [_previewLayer setAffineTransform:CGAffineTransformMakeRotation(M_PI/2)];
- _previewLayer.connection.videoOrientation=AVCaptureVideoOrientationLandscapeLeft;
- break;
- case UIInterfaceOrientationLandscapeRight:
- // [_previewLayer setAffineTransform:CGAffineTransformMakeRotation(-M_PI/2)];
- _previewLayer.connection.videoOrientation=AVCaptureVideoOrientationLandscapeRight;
- break;
- default:
- break;
- }
- [CATransaction commit];
-
- }
- //- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
- //{
- // return UIInterfaceOrientationPortrait;
- //}
- -(void) playSound
- {
-
- /*
- SystemSoundID sameViewSoundID;
- // NSString *filePath = [[NSBundle mainBundle]pathForResource:@"sound" ofType:@"m4r"];
- // NSString *thesoundFilePath = [[NSBundle mainBundle] pathForResource:@"sound" ofType:@"wav"]; //音乐文件路径
- NSString *path = @"/System/Library/Audio/UISounds/begin_video_record.caf";
- CFURLRef thesoundURL = (__bridge CFURLRef) [NSURL fileURLWithPath:path] ;
- AudioServicesCreateSystemSoundID(thesoundURL, &sameViewSoundID);
- //变量SoundID与URL对应
- DebugLog(@"%u",(unsigned int)sameViewSoundID);
- AudioServicesPlaySystemSound(1112); //播放SoundID声音
-
-
- */
- CFBundleRef mainBundle;
- SystemSoundID soundFileObject;
- mainBundle = CFBundleGetMainBundle ();
- CFURLRef soundFileURLRef = CFBundleCopyResourceURL (
- mainBundle,
- CFSTR ("softScanBeep" ),
- CFSTR ("wav" ),
- NULL
- );
- AudioServicesCreateSystemSoundID (
- soundFileURLRef,
- &soundFileObject
- );
- AudioServicesPlaySystemSound(soundFileObject);
- }
- - (void)viewWillAppear:(BOOL)animated
- {
- [super viewWillAppear:animated];
- [[self navigationController] setNavigationBarHidden:NO animated:NO];
-
-
- //
- //[ attemptRotationToDeviceOrientation];
-
- //[UIViewController attemptRotationToDeviceOrientation];
-
- //
- // [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];
- // self.view.transform = CGAffineTransformMakeRotation(M_PI/2);
- // CGRect frame = [UIScreen mainScreen].applicationFrame;
- // self.view.bounds = CGRectMake(0, 0, 768, 1024);
- }
- - (void)onBackClick:(UIButton *)sender {
-
-
- [self.navigationController popViewControllerAnimated:FALSE];
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- UIBarButtonItem *closeButton = [[UIBarButtonItem alloc] initWithImage:[[UIImage imageNamed:@"back"] imageWithRenderingMode:UIImageRenderingModeAutomatic]
- style:UIBarButtonItemStylePlain
- target:self
- action:@selector( onBackClick:)];
-
- // closeButton.tintColor = UIColorFromRGB(0x996633);
-
- self.navigationItem.leftBarButtonItem = closeButton;
-
- }
- - (void)viewDidAppear:(BOOL)animated {
- [super viewDidAppear:animated];
-
- // 只有在此方法中取得的self.focusZone.frame才正确。
- // return;
- // [self.backgroundView removeFromSuperview];
- //self.back = (ScannerControllerView*)self.view;
- self.backgroundView.highLightRect = CGRectInset(self.focusZone.frame,6,6);
- [self.backgroundView setNeedsDisplay];
- // self.backgroundView.autoresizingMask=0xff;
- self.handelOutput = false;
-
-
-
- // self.ScannerControl =[self.storyboard instantiateViewControllerWithIdentifier:@"ScannerControlViewController"];
- // self.ScannerControl.Scannerdelegate = self;
-
- // self.view.layer.
-
- // Do any additional setup after loading the view, typically from a nib.
-
- // Create a new AVCaptureSession
- AVCaptureSession *session = [[AVCaptureSession alloc] init];
-
- session.sessionPreset = AVCaptureSessionPresetHigh;
-
- AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
-
- // float factor = device.videoZoomFactor;
- // float up = device.activeFormat.videoZoomFactorUpscaleThreshold;
- // [device lockForConfiguration:nil];
- // device.videoZoomFactor = device.activeFormat.videoZoomFactorUpscaleThreshold;
- // [device unlockForConfiguration];
- NSError *error = nil;
-
- // Want the normal device
- AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device error:&error];
-
- if(input) {
- // Add the input to the session
- [session addInput:input];
-
- } else {
- __weak typeof(self) weakself = self;
- // UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Warning" message:@"Camera access denied, please change iPad setting, allow App use camara. (setting -> privacy -> camera enable RA Image)" preferredStyle:UIAlertControllerStyleAlert];
- // UIAlertAction *action = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- // [weakself dismissViewControllerAnimated:YES completion:nil];
- // }];
- // [alert addAction:action];
- // [self presentViewController:alert animated:YES completion:nil];
-
- if (![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) { // 设备不可用
- UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Warning" message:@"Camera is not available" preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *action = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- [weakself dismissViewControllerAnimated:YES completion:nil];
- }];
- [alert addAction:action];
- [self presentViewController:alert animated:YES completion:nil];
- return;
- }
- // 相机权限
- AVAuthorizationStatus authStatus = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo];
- if (authStatus ==AVAuthorizationStatusRestricted ||//此应用程序没有被授权访问的照片数据。可能是家长控制权限
- authStatus ==AVAuthorizationStatusDenied) //用户已经明确否认了这一照片数据的应用程序访问
- {
- // 无权限 引导去开启
- // NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
- // if ([[UIApplication sharedApplication]canOpenURL:url]) {
- // [[UIApplication sharedApplication]openURL:url];// 打开权限后返回应用会重启
- // } else {
- NSDictionary* infoDict =[[NSBundle mainBundle] infoDictionary];
- NSString *appName = [infoDict objectForKey:@"CFBundleName"];
-
- UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Warning" message:[NSString stringWithFormat:@"Camera access denied, please change %@ setting, allow App use camera. (setting -> privacy -> camera enable %@)",[UIDevice currentDevice].model,appName] preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *action = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- [weakself dismissViewControllerAnimated:YES completion:nil];
- }];
- [alert addAction:action];
- [self presentViewController:alert animated:YES completion:nil];
- // }
- return;
- }
-
- return;
- }
-
-
-
- AVCaptureMetadataOutput *output = [[AVCaptureMetadataOutput alloc] init];
- // Have to add the output before setting metadata types
- [session addOutput:output];
- // What different things can we register to recognise?
- DebugLog(@"%@", [output availableMetadataObjectTypes]);
- // We're only interested in QR Codes
- [output setMetadataObjectTypes:@[AVMetadataObjectTypeUPCECode,AVMetadataObjectTypeCode39Code,AVMetadataObjectTypeCode39Mod43Code,AVMetadataObjectTypeEAN13Code,AVMetadataObjectTypeEAN8Code,AVMetadataObjectTypeCode93Code,AVMetadataObjectTypeCode128Code,AVMetadataObjectTypePDF417Code,AVMetadataObjectTypeQRCode,AVMetadataObjectTypeAztecCode]];
- DebugLog(@"%@", [output metadataObjectTypes]);
- // NSArray* supporttype=output.availableMetadataObjectTypes;
- // [output setMetadataObjectTypes:output.availableMetadataObjectTypes];
- // This VC is the delegate. Please call us on the main queue
- [output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
- //
- // CGRect rt1 = self.ScannerControl.scannerZone.frame;
-
-
-
- // Display on screen
- _previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:session];
- _previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
-
- // _previewLayer.orientation= AVCaptureVideoOrientationLandscapeRight;
- UIInterfaceOrientation orientation = [[UIApplication sharedApplication]statusBarOrientation];
- switch (orientation) {
-
- // UIInterfaceOrientationPortrait = UIDeviceOrientationPortrait,
- // UIInterfaceOrientationPortraitUpsideDown = UIDeviceOrientationPortraitUpsideDown,
- // UIInterfaceOrientationLandscapeLeft = UIDeviceOrientationLandscapeRight,
- // UIInterfaceOrientationLandscapeRight
-
-
- // AVCaptureVideoOrientationPortrait = 1,
- // AVCaptureVideoOrientationPortraitUpsideDown = 2,
- // AVCaptureVideoOrientationLandscapeRight = 3,
- // AVCaptureVideoOrientationLandscapeLeft = 4,
- case UIInterfaceOrientationPortrait:
- _previewLayer.connection.videoOrientation=AVCaptureVideoOrientationPortrait;
- break;
- case UIInterfaceOrientationPortraitUpsideDown:
- _previewLayer.connection.videoOrientation=AVCaptureVideoOrientationPortraitUpsideDown;
- break;
- case UIInterfaceOrientationLandscapeLeft:
- _previewLayer.connection.videoOrientation=AVCaptureVideoOrientationLandscapeLeft;
- break;
- case UIInterfaceOrientationLandscapeRight:
- _previewLayer.connection.videoOrientation=AVCaptureVideoOrientationLandscapeRight;
- break;
- default:
- break;
- }
-
- CGRect rect=self.view.bounds;
- // rect.origin.y=rect.origin.y+40;
- // rect.size.height = rect.size.height-40;
-
- _previewLayer.bounds = rect;
- _previewLayer.position = CGPointMake(CGRectGetMidX(self.view.bounds), CGRectGetMidY(self.view.bounds));
- // [self.view.layer addSublayer:_previewLayer];
- [self.view.layer insertSublayer:_previewLayer atIndex:0];
-
-
- // [self.view addSubview:self.backgroundView];
- [self.view bringSubviewToFront:self.backgroundView];
-
- // [self.view addSubview:self.ScannerControl.view];
- // CGRect rt = self.ScannerControl.scannerZone.bounds;
-
- // CGRect rt1 =output.rectOfInterest;
- // output.rectOfInterest = CGRectMake(0, 0, 300, 300); //self.ScannerControl.scannerZone.frame;
- // ScannerControllerView* view =[[ ScannerControllerView alloc] initWithFrame:self.view.frame];
- // view.backgroundColor = [UIColor clearColor];
-
-
-
- // ScannerLayer * layer = [[ScannerLayer alloc] init];
- // [self.view.layer addSublayer:layer];
-
-
- // Add the view to draw the bounding box for the UIView
- _boundingBox = [[SCShapeView alloc] initWithFrame:self.view.bounds];
- _boundingBox.backgroundColor = [UIColor clearColor];
- _boundingBox.hidden = YES;
- [self.view insertSubview:_boundingBox belowSubview:self.backgroundView];
-
- // Add a label to display the resultant message
- _decodedMessage = [[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetHeight(self.view.bounds) - 75, CGRectGetWidth(self.view.bounds), 75)];
- _decodedMessage.numberOfLines = 0;
- _decodedMessage.backgroundColor = [UIColor colorWithWhite:0.8 alpha:0.9];
- _decodedMessage.textColor = [UIColor darkGrayColor];
- _decodedMessage.textAlignment = NSTextAlignmentCenter;
- [self.view addSubview:_decodedMessage];
- _decodedMessage.userInteractionEnabled = YES;
- UIButton *backBtn = [UIButton buttonWithType:UIButtonTypeCustom];
- [backBtn setTitle:@"Cancel" forState:UIControlStateNormal];
- backBtn.titleLabel.backgroundColor = [UIColor clearColor];
- backBtn.titleLabel.font = [UIFont systemFontOfSize: 18.0];
- [backBtn setTitleColor:UIColorFromRGB(0x007aff) forState:UIControlStateNormal];
- backBtn.frame = CGRectMake(CGRectGetMaxX(self.view.frame) - 80, CGRectGetMaxY(self.view.frame)-CGRectGetHeight(_decodedMessage.frame), 60, CGRectGetHeight(_decodedMessage.frame));
- [self.view addSubview:backBtn];
- [backBtn addTarget:self action:@selector(backButtonClick:) forControlEvents:UIControlEventTouchUpInside];
-
- self.scanButton.layer.shadowColor = [UIColor blackColor].CGColor;
- self.scanButton.layer.shadowOffset = CGSizeMake(0, 0);
- self.scanButton.layer.shadowOpacity = 0.5;
- self.scanButton.layer.shadowRadius = 2.0;
- self.scanButton.layer.borderColor = [[UIColor darkGrayColor] CGColor];
- self.scanButton.layer.borderWidth = 15;
- // Start the AVSession running
- [session startRunning];
-
- }
- - (void)backButtonClick:(UIButton *)sender {
- [self dismissViewControllerAnimated:YES completion:nil];
- }
- //#pragma mark - ScannerControllerDelegate
- //-(void)BeginScan:(bool)begin
- //{
- // self.handelOutput = begin;
- //}
- #pragma mark - AVCaptureMetadataOutputObjectsDelegate
- - (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection
- {
- if(!self.handelOutput)
- return;
- AVMetadataObject * cadedate = nil;
- CGPoint centerzone =CGPointMake(CGRectGetMidX(self.focusZone.frame), CGRectGetMidY(self.focusZone.frame));
-
- float distance = MAXFLOAT;
- for (AVMetadataObject *metadata in metadataObjects) {
- DebugLog(@"%@",metadata);
- // if ([metadata.type isEqualToString:AVMetadataObjectTypeQRCode])
- {
- // Transform the meta-data coordinates to screen coords
- AVMetadataMachineReadableCodeObject *transformed = (AVMetadataMachineReadableCodeObject *)[_previewLayer transformedMetadataObjectForMetadataObject:metadata];
- // Update the frame on the _boundingBox view, and show it
- CGRect rt = transformed.bounds;
-
- CGRectGetMidX(rt);
- CGPoint centermeta =CGPointMake(CGRectGetMidX(rt), CGRectGetMidY(rt));
- if(CGRectContainsPoint(self.focusZone.frame, centermeta))
- {
- if(cadedate == nil)
- cadedate = metadata;
- float distancemeta = (centermeta.x-centerzone.x)*(centermeta.x-centerzone.x)+(centermeta.y-centerzone.y)*(centermeta.y-centerzone.y);
- if(distancemeta<distance)
- {
- distance = distancemeta;
- cadedate = metadata;
- }
-
- }
- }
- }
- if(cadedate==nil)
- return;
- AVMetadataMachineReadableCodeObject *transformed = (AVMetadataMachineReadableCodeObject *)[_previewLayer transformedMetadataObjectForMetadataObject:cadedate];
- // Update the frame on the _boundingBox view, and show it
- // CGRect rt = transformed.bounds;
- _boundingBox.frame = transformed.bounds;
- _boundingBox.hidden = NO;
- // Now convert the corners array into CGPoints in the coordinate system
- // of the bounding box itself
-
- // NSArray * corners = transformed.corners;
- NSArray *translatedCorners = [self translatePoints:transformed.corners
- fromView:self.view
- toView:_boundingBox];
-
- // Set the corners array
- _boundingBox.corners = translatedCorners;
-
- // Update the view with the decoded text
- _decodedMessage.text = [transformed stringValue];
-
- // Start the timer which will hide the overlay
- [self startOverlayHideTimer];
- [self playSound];
-
-
-
- self.handelOutput = false;
- [self StopScan];
-
-
-
- self.scan_val = [transformed stringValue];
-
- [self dismissViewControllerAnimated:false completion:^{
- if(self.returnCode)
- self.returnCode(self.scan_val);
- }];
-
-
- }
- - (IBAction)ScanButtonClick:(id)sender {
- self.scanButton.backgroundColor = [UIColor greenColor];
-
-
- [self.scanButton setTitle:@"Scanning" forState:UIControlStateNormal];
- // self.scanButton.layer.borderWidth = 1;
-
-
- self.handelOutput = true;
-
- // if (self.Scannerdelegate && [self.Scannerdelegate respondsToSelector:@selector(BeginScan:)]) {
- // [self.Scannerdelegate BeginScan:true];
- // }
- }
- -(void) StopScan
- {
- self.scanButton.backgroundColor = [UIColor redColor];
- [self.scanButton setTitle:@"Tap" forState:UIControlStateNormal];
- }
- #pragma mark - Utility Methods
- - (void)startOverlayHideTimer
- {
- // Cancel it if we're already running
- if(_boxHideTimer) {
- [_boxHideTimer invalidate];
- }
-
- // Restart it to hide the overlay when it fires
- _boxHideTimer = [NSTimer scheduledTimerWithTimeInterval:0.2
- target:self
- selector:@selector(removeBoundingBox:)
- userInfo:nil
- repeats:NO];
- }
- - (void)removeBoundingBox:(id)sender
- {
- // Hide the box and remove the decoded text
- _boundingBox.hidden = YES;
- // _decodedMessage.text = @"";
- }
- - (NSArray *)translatePoints:(NSArray *)points fromView:(UIView *)fromView toView:(UIView *)toView
- {
- NSMutableArray *translatedPoints = [NSMutableArray new];
-
- // The points are provided in a dictionary with keys X and Y
- for (NSDictionary *point in points) {
- // Let's turn them into CGPoints
- CGPoint pointValue = CGPointMake([point[@"X"] floatValue], [point[@"Y"] floatValue]);
- // Now translate from one view to the other
- CGPoint translatedPoint = [fromView convertPoint:pointValue toView:toView];
- // Box them up and add to the array
- [translatedPoints addObject:[NSValue valueWithCGPoint:translatedPoint]];
- }
-
- return [translatedPoints copy];
- }
- @end
|