Compare commits
No commits in common. "main" and "with-banner" have entirely different histories.
main
...
with-banne
|
@ -1,80 +0,0 @@
|
||||||
#
|
|
||||||
# © 2024-present https://github.com/cengiz-pz
|
|
||||||
#
|
|
||||||
|
|
||||||
@tool
|
|
||||||
class_name Share
|
|
||||||
extends Node
|
|
||||||
|
|
||||||
const PLUGIN_SINGLETON_NAME: String = "SharePlugin"
|
|
||||||
const MIME_TYPE_TEXT: String = "text/plain"
|
|
||||||
const MIME_TYPE_IMAGE: String = "image/*"
|
|
||||||
|
|
||||||
@onready var _temp_image_path: String = OS.get_user_data_dir() + "/tmp_share_img_path.png"
|
|
||||||
|
|
||||||
var _plugin_singleton: Object
|
|
||||||
|
|
||||||
|
|
||||||
func _ready() -> void:
|
|
||||||
if OS.get_name() == "Android":
|
|
||||||
_update_plugin()
|
|
||||||
|
|
||||||
|
|
||||||
func _notification(a_what: int) -> void:
|
|
||||||
if a_what == NOTIFICATION_APPLICATION_RESUMED:
|
|
||||||
_update_plugin()
|
|
||||||
|
|
||||||
|
|
||||||
func _update_plugin() -> void:
|
|
||||||
if _plugin_singleton == null:
|
|
||||||
if Engine.has_singleton(PLUGIN_SINGLETON_NAME):
|
|
||||||
_plugin_singleton = Engine.get_singleton(PLUGIN_SINGLETON_NAME)
|
|
||||||
else:
|
|
||||||
printerr("%s singleton not found!" % PLUGIN_SINGLETON_NAME)
|
|
||||||
|
|
||||||
|
|
||||||
func share_text(a_title: String, a_subject: String, a_content: String) -> void:
|
|
||||||
if _plugin_singleton != null:
|
|
||||||
_plugin_singleton.share(
|
|
||||||
SharedData.new()
|
|
||||||
.set_title(a_title)
|
|
||||||
.set_subject(a_subject)
|
|
||||||
.set_content(a_content)
|
|
||||||
.set_mime_type(MIME_TYPE_TEXT)
|
|
||||||
.get_raw_data()
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
printerr("%s plugin not initialized" % PLUGIN_SINGLETON_NAME)
|
|
||||||
|
|
||||||
|
|
||||||
func share_image(a_path: String, a_title: String, a_subject: String, a_content: String) -> void:
|
|
||||||
share_file(a_path, MIME_TYPE_IMAGE, a_title, a_subject, a_content)
|
|
||||||
|
|
||||||
|
|
||||||
func share_texture(a_texture: Texture2D, a_title: String, a_subject: String, a_content: String) -> void:
|
|
||||||
var __image: Image = a_texture.get_image()
|
|
||||||
__image.save_png(_temp_image_path)
|
|
||||||
share_file(_temp_image_path, MIME_TYPE_IMAGE, a_title, a_subject, a_content)
|
|
||||||
|
|
||||||
|
|
||||||
func share_viewport(a_viewport: Viewport, a_title: String, a_subject: String, a_content: String, a_flip_y: bool = false) -> void:
|
|
||||||
var __image: Image = a_viewport.get_texture().get_image()
|
|
||||||
if a_flip_y:
|
|
||||||
__image.flip_y()
|
|
||||||
__image.save_png(_temp_image_path)
|
|
||||||
share_file(_temp_image_path, MIME_TYPE_IMAGE, a_title, a_subject, a_content)
|
|
||||||
|
|
||||||
|
|
||||||
func share_file(a_path: String, a_mime_type: String, a_title: String, a_subject: String, a_content: String) -> void:
|
|
||||||
if _plugin_singleton != null:
|
|
||||||
_plugin_singleton.share(
|
|
||||||
SharedData.new()
|
|
||||||
.set_title(a_title)
|
|
||||||
.set_subject(a_subject)
|
|
||||||
.set_content(a_content)
|
|
||||||
.set_mime_type(a_mime_type)
|
|
||||||
.set_file_path(a_path)
|
|
||||||
.get_raw_data()
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
printerr("%s plugin not initialized" % PLUGIN_SINGLETON_NAME)
|
|
|
@ -1 +0,0 @@
|
||||||
uid://bjt60u6r1hqf7
|
|
|
@ -1,65 +0,0 @@
|
||||||
#
|
|
||||||
# © 2024-present https://github.com/cengiz-pz
|
|
||||||
#
|
|
||||||
|
|
||||||
@tool
|
|
||||||
extends EditorPlugin
|
|
||||||
|
|
||||||
const PLUGIN_NODE_TYPE_NAME = "Share"
|
|
||||||
const PLUGIN_PARENT_NODE_TYPE = "Node"
|
|
||||||
const PLUGIN_NAME: String = "SharePlugin"
|
|
||||||
const PLUGIN_VERSION: String = "3.0"
|
|
||||||
const PLUGIN_PACKAGE: String = "org.godotengine.plugin.android.share"
|
|
||||||
const PLUGIN_DEPENDENCIES: Array = [ "androidx.appcompat:appcompat:1.7.0" ]
|
|
||||||
|
|
||||||
const PROVIDER_TAG = """
|
|
||||||
<provider android:name="%s.ShareFileProvider"
|
|
||||||
android:exported="false"
|
|
||||||
android:authorities="%s.sharefileprovider"
|
|
||||||
android:grantUriPermissions="true">
|
|
||||||
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_provider_paths"/>
|
|
||||||
</provider>
|
|
||||||
"""
|
|
||||||
|
|
||||||
var export_plugin: AndroidExportPlugin
|
|
||||||
|
|
||||||
|
|
||||||
func _enter_tree() -> void:
|
|
||||||
add_custom_type(PLUGIN_NODE_TYPE_NAME, PLUGIN_PARENT_NODE_TYPE, preload("Share.gd"), preload("icon.png"))
|
|
||||||
export_plugin = AndroidExportPlugin.new()
|
|
||||||
add_export_plugin(export_plugin)
|
|
||||||
|
|
||||||
|
|
||||||
func _exit_tree() -> void:
|
|
||||||
remove_custom_type(PLUGIN_NODE_TYPE_NAME)
|
|
||||||
remove_export_plugin(export_plugin)
|
|
||||||
export_plugin = null
|
|
||||||
|
|
||||||
|
|
||||||
class AndroidExportPlugin extends EditorExportPlugin:
|
|
||||||
var _plugin_name = PLUGIN_NAME
|
|
||||||
|
|
||||||
|
|
||||||
func _supports_platform(platform: EditorExportPlatform) -> bool:
|
|
||||||
if platform is EditorExportPlatformAndroid:
|
|
||||||
return true
|
|
||||||
return false
|
|
||||||
|
|
||||||
|
|
||||||
func _get_android_libraries(platform: EditorExportPlatform, debug: bool) -> PackedStringArray:
|
|
||||||
if debug:
|
|
||||||
return PackedStringArray(["%s/bin/debug/%s-%s-debug.aar" % [_plugin_name, _plugin_name, PLUGIN_VERSION]])
|
|
||||||
else:
|
|
||||||
return PackedStringArray(["%s/bin/release/%s-%s-release.aar" % [_plugin_name, _plugin_name, PLUGIN_VERSION]])
|
|
||||||
|
|
||||||
|
|
||||||
func _get_name() -> String:
|
|
||||||
return _plugin_name
|
|
||||||
|
|
||||||
|
|
||||||
func _get_android_dependencies(platform: EditorExportPlatform, debug: bool) -> PackedStringArray:
|
|
||||||
return PackedStringArray(PLUGIN_DEPENDENCIES)
|
|
||||||
|
|
||||||
|
|
||||||
func _get_android_manifest_application_element_contents(platform: EditorExportPlatform, debug: bool) -> String:
|
|
||||||
return PROVIDER_TAG % [PLUGIN_PACKAGE, get_option("package/unique_name")]
|
|
|
@ -1 +0,0 @@
|
||||||
uid://dpagp150p4gxb
|
|
Binary file not shown.
Binary file not shown.
BIN
addons/SharePlugin/icon.png (Stored with Git LFS)
BIN
addons/SharePlugin/icon.png (Stored with Git LFS)
Binary file not shown.
|
@ -1,34 +0,0 @@
|
||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="CompressedTexture2D"
|
|
||||||
uid="uid://cm4eejjdmpyec"
|
|
||||||
path="res://.godot/imported/icon.png-cbd45f0ce843eb69e82e7474c8559974.ctex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://addons/SharePlugin/icon.png"
|
|
||||||
dest_files=["res://.godot/imported/icon.png-cbd45f0ce843eb69e82e7474c8559974.ctex"]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/high_quality=false
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_compression=1
|
|
||||||
compress/normal_map=0
|
|
||||||
compress/channel_pack=0
|
|
||||||
mipmaps/generate=false
|
|
||||||
mipmaps/limit=-1
|
|
||||||
roughness/mode=0
|
|
||||||
roughness/src_normal=""
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/normal_map_invert_y=false
|
|
||||||
process/hdr_as_srgb=false
|
|
||||||
process/hdr_clamp_exposure=false
|
|
||||||
process/size_limit=0
|
|
||||||
detect_3d/compress_to=1
|
|
|
@ -1,47 +0,0 @@
|
||||||
#
|
|
||||||
# © 2024-present https://github.com/cengiz-pz
|
|
||||||
#
|
|
||||||
|
|
||||||
class_name SharedData
|
|
||||||
extends RefCounted
|
|
||||||
|
|
||||||
const DATA_KEY_TITLE = "title"
|
|
||||||
const DATA_KEY_SUBJECT = "subject"
|
|
||||||
const DATA_KEY_CONTENT = "content"
|
|
||||||
const DATA_KEY_FILE_PATH = "file_path"
|
|
||||||
const DATA_KEY_MIME_TYPE = "mime_type"
|
|
||||||
|
|
||||||
var _data: Dictionary
|
|
||||||
|
|
||||||
|
|
||||||
func _init() -> void:
|
|
||||||
_data = {}
|
|
||||||
|
|
||||||
|
|
||||||
func set_title(a_title: String) -> SharedData:
|
|
||||||
_data[DATA_KEY_TITLE] = a_title
|
|
||||||
return self
|
|
||||||
|
|
||||||
|
|
||||||
func set_subject(a_subject: String) -> SharedData:
|
|
||||||
_data[DATA_KEY_SUBJECT] = a_subject
|
|
||||||
return self
|
|
||||||
|
|
||||||
|
|
||||||
func set_content(a_content: String) -> SharedData:
|
|
||||||
_data[DATA_KEY_CONTENT] = a_content
|
|
||||||
return self
|
|
||||||
|
|
||||||
|
|
||||||
func set_file_path(a_file_path: String) -> SharedData:
|
|
||||||
_data[DATA_KEY_FILE_PATH] = a_file_path
|
|
||||||
return self
|
|
||||||
|
|
||||||
|
|
||||||
func set_mime_type(a_mime_type: String) -> SharedData:
|
|
||||||
_data[DATA_KEY_MIME_TYPE] = a_mime_type
|
|
||||||
return self
|
|
||||||
|
|
||||||
|
|
||||||
func get_raw_data() -> Dictionary:
|
|
||||||
return _data
|
|
|
@ -1 +0,0 @@
|
||||||
uid://bceenkk1hoqml
|
|
|
@ -1,10 +0,0 @@
|
||||||
;
|
|
||||||
; © 2024-present https://github.com/cengiz-pz
|
|
||||||
;
|
|
||||||
[plugin]
|
|
||||||
|
|
||||||
name="Share"
|
|
||||||
description="Allow sharing of text or images with other apps"
|
|
||||||
author="Cengiz"
|
|
||||||
version="3.0"
|
|
||||||
script="ShareExportPlugin.gd"
|
|
|
@ -1 +0,0 @@
|
||||||
uid://cswnldhb4jgfx
|
|
|
@ -10,10 +10,8 @@ export_filter="all_resources"
|
||||||
include_filter=""
|
include_filter=""
|
||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path="export/android/cwgenerator.apk"
|
export_path="export/android/cwgenerator.apk"
|
||||||
patches=PackedStringArray()
|
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
seed=0
|
|
||||||
encrypt_pck=false
|
encrypt_pck=false
|
||||||
encrypt_directory=false
|
encrypt_directory=false
|
||||||
script_export_mode=2
|
script_export_mode=2
|
||||||
|
@ -47,10 +45,8 @@ package/show_as_launcher_app=false
|
||||||
launcher_icons/main_192x192=""
|
launcher_icons/main_192x192=""
|
||||||
launcher_icons/adaptive_foreground_432x432=""
|
launcher_icons/adaptive_foreground_432x432=""
|
||||||
launcher_icons/adaptive_background_432x432=""
|
launcher_icons/adaptive_background_432x432=""
|
||||||
launcher_icons/adaptive_monochrome_432x432=""
|
|
||||||
graphics/opengl_debug=false
|
graphics/opengl_debug=false
|
||||||
xr_features/xr_mode=0
|
xr_features/xr_mode=0
|
||||||
gesture/swipe_to_dismiss=false
|
|
||||||
screen/immersive_mode=false
|
screen/immersive_mode=false
|
||||||
screen/support_small=true
|
screen/support_small=true
|
||||||
screen/support_normal=true
|
screen/support_normal=true
|
||||||
|
@ -66,7 +62,6 @@ permissions/access_checkin_properties=false
|
||||||
permissions/access_coarse_location=false
|
permissions/access_coarse_location=false
|
||||||
permissions/access_fine_location=false
|
permissions/access_fine_location=false
|
||||||
permissions/access_location_extra_commands=false
|
permissions/access_location_extra_commands=false
|
||||||
permissions/access_media_location=false
|
|
||||||
permissions/access_mock_location=false
|
permissions/access_mock_location=false
|
||||||
permissions/access_network_state=false
|
permissions/access_network_state=false
|
||||||
permissions/access_surface_flinger=false
|
permissions/access_surface_flinger=false
|
||||||
|
@ -154,10 +149,6 @@ permissions/read_frame_buffer=false
|
||||||
permissions/read_history_bookmarks=false
|
permissions/read_history_bookmarks=false
|
||||||
permissions/read_input_state=false
|
permissions/read_input_state=false
|
||||||
permissions/read_logs=false
|
permissions/read_logs=false
|
||||||
permissions/read_media_audio=false
|
|
||||||
permissions/read_media_images=false
|
|
||||||
permissions/read_media_video=false
|
|
||||||
permissions/read_media_visual_user_selected=false
|
|
||||||
permissions/read_phone_state=false
|
permissions/read_phone_state=false
|
||||||
permissions/read_profile=false
|
permissions/read_profile=false
|
||||||
permissions/read_sms=false
|
permissions/read_sms=false
|
||||||
|
@ -227,10 +218,8 @@ export_filter="all_resources"
|
||||||
include_filter=""
|
include_filter=""
|
||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path="export/web/index.html"
|
export_path="export/web/index.html"
|
||||||
patches=PackedStringArray()
|
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
seed=0
|
|
||||||
encrypt_pck=false
|
encrypt_pck=false
|
||||||
encrypt_directory=false
|
encrypt_directory=false
|
||||||
script_export_mode=2
|
script_export_mode=2
|
||||||
|
@ -258,367 +247,3 @@ progressive_web_app/icon_144x144=""
|
||||||
progressive_web_app/icon_180x180=""
|
progressive_web_app/icon_180x180=""
|
||||||
progressive_web_app/icon_512x512=""
|
progressive_web_app/icon_512x512=""
|
||||||
progressive_web_app/background_color=Color(0, 0, 0, 1)
|
progressive_web_app/background_color=Color(0, 0, 0, 1)
|
||||||
|
|
||||||
[preset.2]
|
|
||||||
|
|
||||||
name="Linux"
|
|
||||||
platform="Linux"
|
|
||||||
runnable=true
|
|
||||||
advanced_options=false
|
|
||||||
dedicated_server=false
|
|
||||||
custom_features=""
|
|
||||||
export_filter="all_resources"
|
|
||||||
include_filter=""
|
|
||||||
exclude_filter=""
|
|
||||||
export_path="export/lin/cwgenerator.x86_64"
|
|
||||||
patches=PackedStringArray()
|
|
||||||
encryption_include_filters=""
|
|
||||||
encryption_exclude_filters=""
|
|
||||||
seed=0
|
|
||||||
encrypt_pck=false
|
|
||||||
encrypt_directory=false
|
|
||||||
script_export_mode=2
|
|
||||||
|
|
||||||
[preset.2.options]
|
|
||||||
|
|
||||||
custom_template/debug=""
|
|
||||||
custom_template/release=""
|
|
||||||
debug/export_console_wrapper=1
|
|
||||||
binary_format/embed_pck=false
|
|
||||||
texture_format/s3tc_bptc=true
|
|
||||||
texture_format/etc2_astc=false
|
|
||||||
binary_format/architecture="x86_64"
|
|
||||||
ssh_remote_deploy/enabled=false
|
|
||||||
ssh_remote_deploy/host="user@host_ip"
|
|
||||||
ssh_remote_deploy/port="22"
|
|
||||||
ssh_remote_deploy/extra_args_ssh=""
|
|
||||||
ssh_remote_deploy/extra_args_scp=""
|
|
||||||
ssh_remote_deploy/run_script="#!/usr/bin/env bash
|
|
||||||
export DISPLAY=:0
|
|
||||||
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
|
|
||||||
\"{temp_dir}/{exe_name}\" {cmd_args}"
|
|
||||||
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
|
|
||||||
kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\")
|
|
||||||
rm -rf \"{temp_dir}\""
|
|
||||||
|
|
||||||
[preset.3]
|
|
||||||
|
|
||||||
name="macOS"
|
|
||||||
platform="macOS"
|
|
||||||
runnable=true
|
|
||||||
advanced_options=false
|
|
||||||
dedicated_server=false
|
|
||||||
custom_features=""
|
|
||||||
export_filter="all_resources"
|
|
||||||
include_filter=""
|
|
||||||
exclude_filter=""
|
|
||||||
export_path="export/mac/cwgenerator.zip"
|
|
||||||
patches=PackedStringArray()
|
|
||||||
encryption_include_filters=""
|
|
||||||
encryption_exclude_filters=""
|
|
||||||
seed=0
|
|
||||||
encrypt_pck=false
|
|
||||||
encrypt_directory=false
|
|
||||||
script_export_mode=2
|
|
||||||
|
|
||||||
[preset.3.options]
|
|
||||||
|
|
||||||
export/distribution_type=1
|
|
||||||
binary_format/architecture="universal"
|
|
||||||
custom_template/debug=""
|
|
||||||
custom_template/release=""
|
|
||||||
debug/export_console_wrapper=1
|
|
||||||
application/icon=""
|
|
||||||
application/icon_interpolation=4
|
|
||||||
application/bundle_identifier="de.sebageek.cwgenerator"
|
|
||||||
application/signature=""
|
|
||||||
application/app_category="Games"
|
|
||||||
application/short_version=""
|
|
||||||
application/version=""
|
|
||||||
application/copyright=""
|
|
||||||
application/copyright_localized={}
|
|
||||||
application/min_macos_version_x86_64="10.12"
|
|
||||||
application/min_macos_version_arm64="11.00"
|
|
||||||
application/export_angle=0
|
|
||||||
display/high_res=true
|
|
||||||
application/additional_plist_content=""
|
|
||||||
xcode/platform_build="14C18"
|
|
||||||
xcode/sdk_version="13.1"
|
|
||||||
xcode/sdk_build="22C55"
|
|
||||||
xcode/sdk_name="macosx13.1"
|
|
||||||
xcode/xcode_version="1420"
|
|
||||||
xcode/xcode_build="14C18"
|
|
||||||
codesign/codesign=1
|
|
||||||
codesign/installer_identity=""
|
|
||||||
codesign/apple_team_id=""
|
|
||||||
codesign/identity=""
|
|
||||||
codesign/entitlements/custom_file=""
|
|
||||||
codesign/entitlements/allow_jit_code_execution=false
|
|
||||||
codesign/entitlements/allow_unsigned_executable_memory=false
|
|
||||||
codesign/entitlements/allow_dyld_environment_variables=false
|
|
||||||
codesign/entitlements/disable_library_validation=false
|
|
||||||
codesign/entitlements/audio_input=false
|
|
||||||
codesign/entitlements/camera=false
|
|
||||||
codesign/entitlements/location=false
|
|
||||||
codesign/entitlements/address_book=false
|
|
||||||
codesign/entitlements/calendars=false
|
|
||||||
codesign/entitlements/photos_library=false
|
|
||||||
codesign/entitlements/apple_events=false
|
|
||||||
codesign/entitlements/debugging=false
|
|
||||||
codesign/entitlements/app_sandbox/enabled=false
|
|
||||||
codesign/entitlements/app_sandbox/network_server=false
|
|
||||||
codesign/entitlements/app_sandbox/network_client=false
|
|
||||||
codesign/entitlements/app_sandbox/device_usb=false
|
|
||||||
codesign/entitlements/app_sandbox/device_bluetooth=false
|
|
||||||
codesign/entitlements/app_sandbox/files_downloads=0
|
|
||||||
codesign/entitlements/app_sandbox/files_pictures=0
|
|
||||||
codesign/entitlements/app_sandbox/files_music=0
|
|
||||||
codesign/entitlements/app_sandbox/files_movies=0
|
|
||||||
codesign/entitlements/app_sandbox/files_user_selected=0
|
|
||||||
codesign/entitlements/app_sandbox/helper_executables=[]
|
|
||||||
codesign/entitlements/additional=""
|
|
||||||
codesign/custom_options=PackedStringArray()
|
|
||||||
notarization/notarization=0
|
|
||||||
privacy/microphone_usage_description=""
|
|
||||||
privacy/microphone_usage_description_localized={}
|
|
||||||
privacy/camera_usage_description=""
|
|
||||||
privacy/camera_usage_description_localized={}
|
|
||||||
privacy/location_usage_description=""
|
|
||||||
privacy/location_usage_description_localized={}
|
|
||||||
privacy/address_book_usage_description=""
|
|
||||||
privacy/address_book_usage_description_localized={}
|
|
||||||
privacy/calendar_usage_description=""
|
|
||||||
privacy/calendar_usage_description_localized={}
|
|
||||||
privacy/photos_library_usage_description=""
|
|
||||||
privacy/photos_library_usage_description_localized={}
|
|
||||||
privacy/desktop_folder_usage_description=""
|
|
||||||
privacy/desktop_folder_usage_description_localized={}
|
|
||||||
privacy/documents_folder_usage_description=""
|
|
||||||
privacy/documents_folder_usage_description_localized={}
|
|
||||||
privacy/downloads_folder_usage_description=""
|
|
||||||
privacy/downloads_folder_usage_description_localized={}
|
|
||||||
privacy/network_volumes_usage_description=""
|
|
||||||
privacy/network_volumes_usage_description_localized={}
|
|
||||||
privacy/removable_volumes_usage_description=""
|
|
||||||
privacy/removable_volumes_usage_description_localized={}
|
|
||||||
privacy/tracking_enabled=false
|
|
||||||
privacy/tracking_domains=PackedStringArray()
|
|
||||||
privacy/collected_data/name/collected=false
|
|
||||||
privacy/collected_data/name/linked_to_user=false
|
|
||||||
privacy/collected_data/name/used_for_tracking=false
|
|
||||||
privacy/collected_data/name/collection_purposes=0
|
|
||||||
privacy/collected_data/email_address/collected=false
|
|
||||||
privacy/collected_data/email_address/linked_to_user=false
|
|
||||||
privacy/collected_data/email_address/used_for_tracking=false
|
|
||||||
privacy/collected_data/email_address/collection_purposes=0
|
|
||||||
privacy/collected_data/phone_number/collected=false
|
|
||||||
privacy/collected_data/phone_number/linked_to_user=false
|
|
||||||
privacy/collected_data/phone_number/used_for_tracking=false
|
|
||||||
privacy/collected_data/phone_number/collection_purposes=0
|
|
||||||
privacy/collected_data/physical_address/collected=false
|
|
||||||
privacy/collected_data/physical_address/linked_to_user=false
|
|
||||||
privacy/collected_data/physical_address/used_for_tracking=false
|
|
||||||
privacy/collected_data/physical_address/collection_purposes=0
|
|
||||||
privacy/collected_data/other_contact_info/collected=false
|
|
||||||
privacy/collected_data/other_contact_info/linked_to_user=false
|
|
||||||
privacy/collected_data/other_contact_info/used_for_tracking=false
|
|
||||||
privacy/collected_data/other_contact_info/collection_purposes=0
|
|
||||||
privacy/collected_data/health/collected=false
|
|
||||||
privacy/collected_data/health/linked_to_user=false
|
|
||||||
privacy/collected_data/health/used_for_tracking=false
|
|
||||||
privacy/collected_data/health/collection_purposes=0
|
|
||||||
privacy/collected_data/fitness/collected=false
|
|
||||||
privacy/collected_data/fitness/linked_to_user=false
|
|
||||||
privacy/collected_data/fitness/used_for_tracking=false
|
|
||||||
privacy/collected_data/fitness/collection_purposes=0
|
|
||||||
privacy/collected_data/payment_info/collected=false
|
|
||||||
privacy/collected_data/payment_info/linked_to_user=false
|
|
||||||
privacy/collected_data/payment_info/used_for_tracking=false
|
|
||||||
privacy/collected_data/payment_info/collection_purposes=0
|
|
||||||
privacy/collected_data/credit_info/collected=false
|
|
||||||
privacy/collected_data/credit_info/linked_to_user=false
|
|
||||||
privacy/collected_data/credit_info/used_for_tracking=false
|
|
||||||
privacy/collected_data/credit_info/collection_purposes=0
|
|
||||||
privacy/collected_data/other_financial_info/collected=false
|
|
||||||
privacy/collected_data/other_financial_info/linked_to_user=false
|
|
||||||
privacy/collected_data/other_financial_info/used_for_tracking=false
|
|
||||||
privacy/collected_data/other_financial_info/collection_purposes=0
|
|
||||||
privacy/collected_data/precise_location/collected=false
|
|
||||||
privacy/collected_data/precise_location/linked_to_user=false
|
|
||||||
privacy/collected_data/precise_location/used_for_tracking=false
|
|
||||||
privacy/collected_data/precise_location/collection_purposes=0
|
|
||||||
privacy/collected_data/coarse_location/collected=false
|
|
||||||
privacy/collected_data/coarse_location/linked_to_user=false
|
|
||||||
privacy/collected_data/coarse_location/used_for_tracking=false
|
|
||||||
privacy/collected_data/coarse_location/collection_purposes=0
|
|
||||||
privacy/collected_data/sensitive_info/collected=false
|
|
||||||
privacy/collected_data/sensitive_info/linked_to_user=false
|
|
||||||
privacy/collected_data/sensitive_info/used_for_tracking=false
|
|
||||||
privacy/collected_data/sensitive_info/collection_purposes=0
|
|
||||||
privacy/collected_data/contacts/collected=false
|
|
||||||
privacy/collected_data/contacts/linked_to_user=false
|
|
||||||
privacy/collected_data/contacts/used_for_tracking=false
|
|
||||||
privacy/collected_data/contacts/collection_purposes=0
|
|
||||||
privacy/collected_data/emails_or_text_messages/collected=false
|
|
||||||
privacy/collected_data/emails_or_text_messages/linked_to_user=false
|
|
||||||
privacy/collected_data/emails_or_text_messages/used_for_tracking=false
|
|
||||||
privacy/collected_data/emails_or_text_messages/collection_purposes=0
|
|
||||||
privacy/collected_data/photos_or_videos/collected=false
|
|
||||||
privacy/collected_data/photos_or_videos/linked_to_user=false
|
|
||||||
privacy/collected_data/photos_or_videos/used_for_tracking=false
|
|
||||||
privacy/collected_data/photos_or_videos/collection_purposes=0
|
|
||||||
privacy/collected_data/audio_data/collected=false
|
|
||||||
privacy/collected_data/audio_data/linked_to_user=false
|
|
||||||
privacy/collected_data/audio_data/used_for_tracking=false
|
|
||||||
privacy/collected_data/audio_data/collection_purposes=0
|
|
||||||
privacy/collected_data/gameplay_content/collected=false
|
|
||||||
privacy/collected_data/gameplay_content/linked_to_user=false
|
|
||||||
privacy/collected_data/gameplay_content/used_for_tracking=false
|
|
||||||
privacy/collected_data/gameplay_content/collection_purposes=0
|
|
||||||
privacy/collected_data/customer_support/collected=false
|
|
||||||
privacy/collected_data/customer_support/linked_to_user=false
|
|
||||||
privacy/collected_data/customer_support/used_for_tracking=false
|
|
||||||
privacy/collected_data/customer_support/collection_purposes=0
|
|
||||||
privacy/collected_data/other_user_content/collected=false
|
|
||||||
privacy/collected_data/other_user_content/linked_to_user=false
|
|
||||||
privacy/collected_data/other_user_content/used_for_tracking=false
|
|
||||||
privacy/collected_data/other_user_content/collection_purposes=0
|
|
||||||
privacy/collected_data/browsing_history/collected=false
|
|
||||||
privacy/collected_data/browsing_history/linked_to_user=false
|
|
||||||
privacy/collected_data/browsing_history/used_for_tracking=false
|
|
||||||
privacy/collected_data/browsing_history/collection_purposes=0
|
|
||||||
privacy/collected_data/search_hhistory/collected=false
|
|
||||||
privacy/collected_data/search_hhistory/linked_to_user=false
|
|
||||||
privacy/collected_data/search_hhistory/used_for_tracking=false
|
|
||||||
privacy/collected_data/search_hhistory/collection_purposes=0
|
|
||||||
privacy/collected_data/user_id/collected=false
|
|
||||||
privacy/collected_data/user_id/linked_to_user=false
|
|
||||||
privacy/collected_data/user_id/used_for_tracking=false
|
|
||||||
privacy/collected_data/user_id/collection_purposes=0
|
|
||||||
privacy/collected_data/device_id/collected=false
|
|
||||||
privacy/collected_data/device_id/linked_to_user=false
|
|
||||||
privacy/collected_data/device_id/used_for_tracking=false
|
|
||||||
privacy/collected_data/device_id/collection_purposes=0
|
|
||||||
privacy/collected_data/purchase_history/collected=false
|
|
||||||
privacy/collected_data/purchase_history/linked_to_user=false
|
|
||||||
privacy/collected_data/purchase_history/used_for_tracking=false
|
|
||||||
privacy/collected_data/purchase_history/collection_purposes=0
|
|
||||||
privacy/collected_data/product_interaction/collected=false
|
|
||||||
privacy/collected_data/product_interaction/linked_to_user=false
|
|
||||||
privacy/collected_data/product_interaction/used_for_tracking=false
|
|
||||||
privacy/collected_data/product_interaction/collection_purposes=0
|
|
||||||
privacy/collected_data/advertising_data/collected=false
|
|
||||||
privacy/collected_data/advertising_data/linked_to_user=false
|
|
||||||
privacy/collected_data/advertising_data/used_for_tracking=false
|
|
||||||
privacy/collected_data/advertising_data/collection_purposes=0
|
|
||||||
privacy/collected_data/other_usage_data/collected=false
|
|
||||||
privacy/collected_data/other_usage_data/linked_to_user=false
|
|
||||||
privacy/collected_data/other_usage_data/used_for_tracking=false
|
|
||||||
privacy/collected_data/other_usage_data/collection_purposes=0
|
|
||||||
privacy/collected_data/crash_data/collected=false
|
|
||||||
privacy/collected_data/crash_data/linked_to_user=false
|
|
||||||
privacy/collected_data/crash_data/used_for_tracking=false
|
|
||||||
privacy/collected_data/crash_data/collection_purposes=0
|
|
||||||
privacy/collected_data/performance_data/collected=false
|
|
||||||
privacy/collected_data/performance_data/linked_to_user=false
|
|
||||||
privacy/collected_data/performance_data/used_for_tracking=false
|
|
||||||
privacy/collected_data/performance_data/collection_purposes=0
|
|
||||||
privacy/collected_data/other_diagnostic_data/collected=false
|
|
||||||
privacy/collected_data/other_diagnostic_data/linked_to_user=false
|
|
||||||
privacy/collected_data/other_diagnostic_data/used_for_tracking=false
|
|
||||||
privacy/collected_data/other_diagnostic_data/collection_purposes=0
|
|
||||||
privacy/collected_data/environment_scanning/collected=false
|
|
||||||
privacy/collected_data/environment_scanning/linked_to_user=false
|
|
||||||
privacy/collected_data/environment_scanning/used_for_tracking=false
|
|
||||||
privacy/collected_data/environment_scanning/collection_purposes=0
|
|
||||||
privacy/collected_data/hands/collected=false
|
|
||||||
privacy/collected_data/hands/linked_to_user=false
|
|
||||||
privacy/collected_data/hands/used_for_tracking=false
|
|
||||||
privacy/collected_data/hands/collection_purposes=0
|
|
||||||
privacy/collected_data/head/collected=false
|
|
||||||
privacy/collected_data/head/linked_to_user=false
|
|
||||||
privacy/collected_data/head/used_for_tracking=false
|
|
||||||
privacy/collected_data/head/collection_purposes=0
|
|
||||||
privacy/collected_data/other_data_types/collected=false
|
|
||||||
privacy/collected_data/other_data_types/linked_to_user=false
|
|
||||||
privacy/collected_data/other_data_types/used_for_tracking=false
|
|
||||||
privacy/collected_data/other_data_types/collection_purposes=0
|
|
||||||
ssh_remote_deploy/enabled=false
|
|
||||||
ssh_remote_deploy/host="user@host_ip"
|
|
||||||
ssh_remote_deploy/port="22"
|
|
||||||
ssh_remote_deploy/extra_args_ssh=""
|
|
||||||
ssh_remote_deploy/extra_args_scp=""
|
|
||||||
ssh_remote_deploy/run_script="#!/usr/bin/env bash
|
|
||||||
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
|
|
||||||
open \"{temp_dir}/{exe_name}.app\" --args {cmd_args}"
|
|
||||||
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
|
|
||||||
kill $(pgrep -x -f \"{temp_dir}/{exe_name}.app/Contents/MacOS/{exe_name} {cmd_args}\")
|
|
||||||
rm -rf \"{temp_dir}\""
|
|
||||||
application/min_macos_version="10.12"
|
|
||||||
|
|
||||||
[preset.4]
|
|
||||||
|
|
||||||
name="Windows Desktop"
|
|
||||||
platform="Windows Desktop"
|
|
||||||
runnable=true
|
|
||||||
advanced_options=false
|
|
||||||
dedicated_server=false
|
|
||||||
custom_features=""
|
|
||||||
export_filter="all_resources"
|
|
||||||
include_filter=""
|
|
||||||
exclude_filter=""
|
|
||||||
export_path="export/win/cwgenerator.exe"
|
|
||||||
patches=PackedStringArray()
|
|
||||||
encryption_include_filters=""
|
|
||||||
encryption_exclude_filters=""
|
|
||||||
seed=0
|
|
||||||
encrypt_pck=false
|
|
||||||
encrypt_directory=false
|
|
||||||
script_export_mode=2
|
|
||||||
|
|
||||||
[preset.4.options]
|
|
||||||
|
|
||||||
custom_template/debug=""
|
|
||||||
custom_template/release=""
|
|
||||||
debug/export_console_wrapper=1
|
|
||||||
binary_format/embed_pck=false
|
|
||||||
texture_format/s3tc_bptc=true
|
|
||||||
texture_format/etc2_astc=false
|
|
||||||
binary_format/architecture="x86_64"
|
|
||||||
codesign/enable=false
|
|
||||||
codesign/timestamp=true
|
|
||||||
codesign/timestamp_server_url=""
|
|
||||||
codesign/digest_algorithm=1
|
|
||||||
codesign/description=""
|
|
||||||
codesign/custom_options=PackedStringArray()
|
|
||||||
application/modify_resources=true
|
|
||||||
application/icon=""
|
|
||||||
application/console_wrapper_icon=""
|
|
||||||
application/icon_interpolation=4
|
|
||||||
application/file_version=""
|
|
||||||
application/product_version=""
|
|
||||||
application/company_name=""
|
|
||||||
application/product_name=""
|
|
||||||
application/file_description=""
|
|
||||||
application/copyright=""
|
|
||||||
application/trademarks=""
|
|
||||||
application/export_angle=0
|
|
||||||
application/export_d3d12=0
|
|
||||||
application/d3d12_agility_sdk_multiarch=true
|
|
||||||
ssh_remote_deploy/enabled=false
|
|
||||||
ssh_remote_deploy/host="user@host_ip"
|
|
||||||
ssh_remote_deploy/port="22"
|
|
||||||
ssh_remote_deploy/extra_args_ssh=""
|
|
||||||
ssh_remote_deploy/extra_args_scp=""
|
|
||||||
ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
|
|
||||||
$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
|
|
||||||
$trigger = New-ScheduledTaskTrigger -Once -At 00:00
|
|
||||||
$settings = New-ScheduledTaskSettingsSet
|
|
||||||
$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
|
|
||||||
Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
|
|
||||||
Start-ScheduledTask -TaskName godot_remote_debug
|
|
||||||
while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
|
|
||||||
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
|
|
||||||
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
|
|
||||||
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
|
|
||||||
Remove-Item -Recurse -Force '{temp_dir}'"
|
|
||||||
|
|
|
@ -11,9 +11,8 @@ config_version=5
|
||||||
[application]
|
[application]
|
||||||
|
|
||||||
config/name="cw generator"
|
config/name="cw generator"
|
||||||
config/version="0.1.0"
|
|
||||||
run/main_scene="res://scenes/main.tscn"
|
run/main_scene="res://scenes/main.tscn"
|
||||||
config/features=PackedStringArray("4.4", "Mobile")
|
config/features=PackedStringArray("4.3", "Mobile")
|
||||||
run/max_fps=120
|
run/max_fps=120
|
||||||
config/icon="res://icon.svg"
|
config/icon="res://icon.svg"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[gd_scene load_steps=2 format=3 uid="uid://xqic6oa5d7oc"]
|
[gd_scene load_steps=2 format=3 uid="uid://xqic6oa5d7oc"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://j1oei8suq5sj" path="res://scenes/morse_banner.gd" id="1_475pl"]
|
[ext_resource type="Script" path="res://scenes/morse_banner.gd" id="1_475pl"]
|
||||||
|
|
||||||
[node name="MorseBanner" type="Control"]
|
[node name="MorseBanner" type="Control"]
|
||||||
custom_minimum_size = Vector2(200, 100)
|
custom_minimum_size = Vector2(200, 100)
|
||||||
|
|
|
@ -99,7 +99,7 @@ func _on_wav_button_pressed() -> void:
|
||||||
# save wav
|
# save wav
|
||||||
var wav := AudioStreamWAV.new()
|
var wav := AudioStreamWAV.new()
|
||||||
wav.format = AudioStreamWAV.FORMAT_8_BITS
|
wav.format = AudioStreamWAV.FORMAT_8_BITS
|
||||||
wav.mix_rate = int(sample_hz)
|
wav.mix_rate = sample_hz
|
||||||
wav.stereo = false
|
wav.stereo = false
|
||||||
wav.data = data
|
wav.data = data
|
||||||
|
|
||||||
|
@ -107,23 +107,8 @@ func _on_wav_button_pressed() -> void:
|
||||||
var proposed_fname := "morse-" + Time.get_datetime_string_from_system(true) + ".wav"
|
var proposed_fname := "morse-" + Time.get_datetime_string_from_system(true) + ".wav"
|
||||||
match OS.get_name():
|
match OS.get_name():
|
||||||
"Linux", "macOS", "Windows":
|
"Linux", "macOS", "Windows":
|
||||||
print("Save on ", OS.get_name())
|
wav.save_to_wav("/tmp/foo.wav")
|
||||||
|
print("GLobalized path: " + ProjectSettings.globalize_path("user://morse.wav"))
|
||||||
# create file dialog
|
|
||||||
var fd := FileDialog.new()
|
|
||||||
fd.title = "Save Wav file"
|
|
||||||
fd.use_native_dialog = true
|
|
||||||
fd.add_filter("*.wav", "WAV files")
|
|
||||||
fd.current_file = proposed_fname
|
|
||||||
|
|
||||||
var save_method := func _save(path: String):
|
|
||||||
print("Save as ", path)
|
|
||||||
wav.save_to_wav(path)
|
|
||||||
|
|
||||||
fd.file_selected.connect(save_method)
|
|
||||||
|
|
||||||
add_child(fd)
|
|
||||||
fd.popup_centered()
|
|
||||||
"Android":
|
"Android":
|
||||||
print("Sharing file on android")
|
print("Sharing file on android")
|
||||||
var tmp_file_path := OS.get_user_data_dir().path_join(proposed_fname)
|
var tmp_file_path := OS.get_user_data_dir().path_join(proposed_fname)
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
uid://dmeokosn7gr27
|
|
|
@ -1,8 +1,8 @@
|
||||||
[gd_scene load_steps=5 format=3 uid="uid://ctak1goemnnc5"]
|
[gd_scene load_steps=5 format=3 uid="uid://ctak1goemnnc5"]
|
||||||
|
|
||||||
[ext_resource type="Script" uid="uid://dmeokosn7gr27" path="res://scenes/main.gd" id="1_8bx00"]
|
[ext_resource type="Script" path="res://scenes/main.gd" id="1_8bx00"]
|
||||||
[ext_resource type="PackedScene" uid="uid://xqic6oa5d7oc" path="res://scenes/MorseBanner.tscn" id="2_v02md"]
|
[ext_resource type="PackedScene" uid="uid://xqic6oa5d7oc" path="res://scenes/MorseBanner.tscn" id="2_v02md"]
|
||||||
[ext_resource type="Script" uid="uid://bjt60u6r1hqf7" path="res://addons/SharePlugin/Share.gd" id="3_sugp2"]
|
[ext_resource type="Script" path="res://addons/SharePlugin/Share.gd" id="3_ci1yg"]
|
||||||
|
|
||||||
[sub_resource type="AudioStreamGenerator" id="AudioStreamGenerator_kvn5v"]
|
[sub_resource type="AudioStreamGenerator" id="AudioStreamGenerator_kvn5v"]
|
||||||
mix_rate = 11025.0
|
mix_rate = 11025.0
|
||||||
|
@ -68,7 +68,7 @@ stream = SubResource("AudioStreamGenerator_kvn5v")
|
||||||
volume_db = -80.0
|
volume_db = -80.0
|
||||||
|
|
||||||
[node name="Share" type="Node" parent="."]
|
[node name="Share" type="Node" parent="."]
|
||||||
script = ExtResource("3_sugp2")
|
script = ExtResource("3_ci1yg")
|
||||||
|
|
||||||
[connection signal="button_down" from="VBoxContainer/MorseButton" to="." method="_on_morse_button_down"]
|
[connection signal="button_down" from="VBoxContainer/MorseButton" to="." method="_on_morse_button_down"]
|
||||||
[connection signal="button_up" from="VBoxContainer/MorseButton" to="." method="_on_morse_button_up"]
|
[connection signal="button_up" from="VBoxContainer/MorseButton" to="." method="_on_morse_button_up"]
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
uid://j1oei8suq5sj
|
|
Loading…
Reference in New Issue