2021-10-23 22:02:12 +02:00
|
|
|
// Copyright 2021 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
//go:build ios
|
|
|
|
// +build ios
|
|
|
|
|
|
|
|
package mobile
|
|
|
|
|
|
|
|
// #cgo LDFLAGS: -framework CoreHaptics
|
|
|
|
//
|
|
|
|
// #import <CoreHaptics/CoreHaptics.h>
|
|
|
|
//
|
2021-11-10 18:28:02 +01:00
|
|
|
// static id initializeHapticEngine(void) {
|
|
|
|
// if (@available(iOS 13.0, *)) {
|
|
|
|
// if (!CHHapticEngine.capabilitiesForHardware.supportsHaptics) {
|
|
|
|
// return nil;
|
|
|
|
// }
|
2021-10-23 22:02:12 +02:00
|
|
|
//
|
2021-11-10 18:28:02 +01:00
|
|
|
// NSError* error = nil;
|
|
|
|
// CHHapticEngine* engine = [[CHHapticEngine alloc] initAndReturnError:&error];
|
|
|
|
// if (error) {
|
|
|
|
// return nil;
|
|
|
|
// }
|
2021-10-23 22:02:12 +02:00
|
|
|
//
|
2021-11-10 18:28:02 +01:00
|
|
|
// [engine startAndReturnError:&error];
|
|
|
|
// if (error) {
|
|
|
|
// return nil;
|
|
|
|
// }
|
|
|
|
// return engine;
|
2021-10-23 22:02:12 +02:00
|
|
|
// }
|
2021-11-10 18:28:02 +01:00
|
|
|
// return nil;
|
2021-10-23 22:02:12 +02:00
|
|
|
// }
|
|
|
|
//
|
|
|
|
// static void vibrate(double duration) {
|
2021-11-10 18:28:02 +01:00
|
|
|
// if (@available(iOS 13.0, *)) {
|
|
|
|
// static BOOL initializeHapticEngineCalled = NO;
|
|
|
|
// static CHHapticEngine* engine = nil;
|
|
|
|
// if (!initializeHapticEngineCalled) {
|
|
|
|
// engine = (CHHapticEngine*)initializeHapticEngine();
|
|
|
|
// initializeHapticEngineCalled = YES;
|
2021-10-23 22:02:12 +02:00
|
|
|
// }
|
2021-11-10 18:28:02 +01:00
|
|
|
// if (!engine) {
|
2021-10-23 22:02:12 +02:00
|
|
|
// return;
|
|
|
|
// }
|
2021-11-10 18:28:02 +01:00
|
|
|
// @autoreleasepool {
|
|
|
|
// NSDictionary* hapticDict = @{
|
|
|
|
// (id<NSCopying>)(CHHapticPatternKeyPattern): @[
|
|
|
|
// @{
|
|
|
|
// (id<NSCopying>)(CHHapticPatternKeyEvent): @{
|
|
|
|
// (id<NSCopying>)(CHHapticPatternKeyEventType):CHHapticEventTypeHapticContinuous,
|
|
|
|
// (id<NSCopying>)(CHHapticPatternKeyTime):@0.0,
|
|
|
|
// (id<NSCopying>)(CHHapticPatternKeyEventDuration):[NSNumber numberWithDouble:duration],
|
|
|
|
// (id<NSCopying>)(CHHapticPatternKeyEventParameters):@[
|
|
|
|
// @{
|
|
|
|
// (id<NSCopying>)(CHHapticPatternKeyParameterID): CHHapticEventParameterIDHapticIntensity,
|
|
|
|
// (id<NSCopying>)(CHHapticPatternKeyParameterValue): @1.0,
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// };
|
2021-10-23 22:02:12 +02:00
|
|
|
//
|
2021-11-10 18:28:02 +01:00
|
|
|
// NSError* error = nil;
|
|
|
|
// CHHapticPattern* pattern = [[CHHapticPattern alloc] initWithDictionary:hapticDict
|
|
|
|
// error:&error];
|
|
|
|
// if (error) {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// id<CHHapticPatternPlayer> player = [engine createPlayerWithPattern:pattern
|
|
|
|
// error:&error];
|
|
|
|
// if (error) {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// [player startAtTime:0 error:&error];
|
|
|
|
// if (error) {
|
|
|
|
// NSLog(@"3, %@", [error localizedDescription]);
|
|
|
|
// return;
|
|
|
|
// }
|
2021-10-23 22:02:12 +02:00
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var vibrationM sync.Mutex
|
|
|
|
|
|
|
|
func (u *UserInterface) Vibrate(duration time.Duration) {
|
|
|
|
vibrationM.Lock()
|
|
|
|
defer vibrationM.Unlock()
|
|
|
|
|
|
|
|
C.vibrate(C.double(float64(duration) / float64(time.Second)))
|
|
|
|
}
|