Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Aniv_D

Pages: [1] 2 3
1
Здравствуйте jitterjames!

Возникла проблема (не у меня, а у другого человека) с воспроизведением звуковых файлов
действием Sound.PlayWav (действие Audio.Play даёт такой же результат).
Вместо него воспроизводится стандартный звук от Windows (Windows Background вроде бы).
В логах никаких ошибок не наблюдается.
Формат wav файлов в порядке. Я у себя проверял данные звуковые файлы и они воспроизводятся нормально.

Система на которой данная проблема:
Windows 11 German
VoxCommando v2.3.1.1b

Может быть у Вас будет какая либо идея решения данной проблемы?
Заранее спасибо!!!

Приложу файл с логами.

2
ну смотри как данную команду вижу я (ну насколько я смог понять в том что ты задумал...)
нам нужно 3 команды.
1. запуск гипер-прыжка.
2. отмена гипер-прыжка.
3. команда которая будет выполняться по тригеру.

1. выполняем команду запуска голосом\нажатием кнопки
  нажимаем нужные кнопки, проговариваем нужную речь
  переменная HJumpOn=True как ты и писал выше
  запукаем таймер для события |VC.SetEventTimer|20s|HyperJumpOn| допустим с таким именем

2. если  мы решили отменить прыжок до окончания отсчета, то выполняем команду с отменой.
  переменная HJumpOn=False
  останавливаем таймер |VC.StopEventTimer|HyperJumpOn|
 
3. если мы все же выполним гипер-прыжок то через 20сек у нас сработает 3я команда в которой.
  переменная HJumpOn=False
  переменная HCruise =True

ну команда возможно грубо собрана но суть в том чтоб использовать действия на запуск и остановку таймера для события.

P.S. у меня имеется профиль с пакетом озвучки для элиты в котором реализовано чтение логов и статуса (на питоне) и озвучка событий в игре (опционально, можно отключить). если будет интересно посмотреть то можешь отписаться мне в ВК https://vk.com/aniv_d и я скину ссылку.

3
я уверен, что как только jitterjames прочтет эту тему то думаю решит этот вопрос.
а еще вопрос. ты планируешь использовать вокс для игр или автоматизации задач по типу умный дом?
я это к тому что плагин DxInput не работает в х64 версии, если что учитывай в будущих командах.

P.S для jitterjames
я бы еще добавил, что может быть стоит весь необходимый софт для правильной работы вокса хранить на своём сервере (сервере VoxCommando, если он имеется), чтобы новые пользователи всегда могли скачать всё нужное.
и не помещает обновить информацию и ссылки в вики https://voxcommando.com/mediawiki/index.php?title=MS_Speech_Platform

4
можно с моего диска качнуть, https://disk.yandex.ru/d/shs1nVfmpuDAlw. а так в том же войсаттак если перейти по их ссылке для скачивания альтернативного движка, то там тоже есть как для х32 так и для х64 версии имеется. я сегодня проверял и md5 там одинакова с моими.

5
ну у меня в принципе тоже самое стоит, но только вот на твоём 2м скрине я не вижу установленного движка для х64 версии. не установлено или просто на скрине он отсутствует?

P.S. а так в целом очень странная ошибка. в описании он будто движок видит, а вот распознаватель нет... не знаю чет толком что еще порекомендовать...
может Джеймс позже скажет, что то действеннее.

6
Если ты используешь Win10 20Н2 (build 2009) то скорее всего у тебя вылазит сообщение как на рисунке 1.
тогда следует запустить вокс с правами от администратора, как и указано в сообщении и проверить в логах вокса всё ли верно загрузилось и не имеет сообщений с ошибками как на рисунке 2.

в ранних версиях такого сообщения не наблюдалось впредь до 20H1 (build 2004) (на сколько мне помнится), но наблюдается в новой версии Win10 20H2 (build 2009).

7
New Releases / Re: Major update ALPHA 2.3.0.*
« on: December 10, 2020, 12:19:43 PM »
if you are asking if I have Microsoft Excel or its equivalent, then yes there is.

8
Other Plugins / Re: DirectX input plugin
« on: December 10, 2020, 12:18:20 PM »
unfortunately, this action does not work where DirectInput is required (in 3D games), for example, to rotate the camera, etc.

9
Other Plugins / Re: DirectX input plugin
« on: December 10, 2020, 05:03:34 AM »
Is it possible to add mouse cursor movement to the plugin?

10
New Releases / Re: Major update ALPHA 2.3.0.*
« on: December 09, 2020, 12:29:11 PM »
Thank you, it's clearer now.

1) is a bug caused because the combobox values for the "IF" operator should not be translated at all.

2) The number signs are used to show things that were computer translated (by a web service like Bing or Google translate).  Uusally, if you see anything that starts with a '#' it means that a human needs to check that the translation is correct.  Once someone tells me that it is correct I can remove the '#'.  If anyone wants to help me with this I can send them a list of these computer translations to be approved or corrected if wrong.

If you still need a person to check, then I'm ready. And then I really want to fix the Russian version.

11
Python Scripting / Re: How to implement IntFlags in VC
« on: December 08, 2020, 04:57:48 PM »
thanks for the answer.
I tried putting the module 'enum34' py2, but it didn't have IntFlags... but that's okay. I did it a little differently and I'm happy with the result.
also, I tried
Code: [Select]
import clr
from System import Enum
....
but either there is no or (most likely) I just don't know how to use it. :D

12
Python Scripting / How to implement IntFlags in VC
« on: December 07, 2020, 03:22:38 PM »
Hello, please tell me. here I have the code.
Code: [Select]
from enum import IntFlag

class status(IntFlag):
    Docked = 1
    Landed = 2
    LandingGearDown = 4
    ShieldsUp = 8
    SuperCruise = 16
    FlightAssistOff = 32
    HardpointsDeployed = 64
    InWing = 128
    LightsOn = 256
    CargoScoopDeployed = 512
    SilentRunning = 1024
    ScoopingFuel = 2048
    SrvHandbrake = 4096
    SrvUsingTurretView = 8192
    SrvTurretRetracted = 16384
    SrvDriveAssist = 32768
    FsdMassLocked = 65536
    FsdCharging = 31072
    FsdCooldown = 262144
    LowFuel = 524288
    OverHeating = 1048576
    HasLatLong = 2097152
    IsInDanger = 4194304
    BeingInterdicted = 8388608
    InMainShip = 16777216
    InFighter = 33554432
    InSrv = 67108864
    HudInAnalysisMode = 134217728
    NightVision = 268435456
    AltitudeFromAverageRadius = 536870912
    FsdJump = 1073741824
    SrvHighBeam = 2147483648


flags = status(16842765)

if status.Docked in flags:
    print("Docked found")
else:
    print("Docked not found")

if status.HasLatLong in flags:
    print("HasLatLong found")
else:
    print("HasLatLong not found")

if status.InMainShip in flags:
    print("InMainShip found")
else:
    print("InMainShip not found")

it works in Python 3.7.
how can this be implemented in IronPython in VC?
I tried to find a way on the Internet, but unfortunately I was not able to achieve success.

13
New Releases / Re: Major update ALPHA 2.3.0.*
« on: December 07, 2020, 12:48:46 PM »
1) is a bug caused because the combobox values for the "IF" operator should not be translated at all.

2) The number signs are used to show things that were computer translated (by a web service like Bing or Google translate).  Uusally, if you see anything that starts with a '#' it means that a human needs to check that the translation is correct.  Once someone tells me that it is correct I can remove the '#'.  If anyone wants to help me with this I can send them a list of these computer translations to be approved or corrected if wrong.

I could try to do that. (true, some things I don't quite understand, such as in the screenshot and therefore don't know how to translate them)
P.S. could you show an example of using what is in the screenshot

14
New Releases / Re: Major update ALPHA 2.3.0.*
« on: December 07, 2020, 09:53:58 AM »
damn, right. the way it is. I forgot about '\\'.
Sorry to bother you and thank you for your response.

15
New Releases / Re: Major update ALPHA 2.3.0.*
« on: December 07, 2020, 09:17:55 AM »
Hello, James.
I'm back to you with new bugs found in 2.3.0.8 (probably in earlier versions, I didn't check)
The problem is this.
1. if you run a command to play audio in the PY plugin and the file name starts with the following letters (a, b,f,n,r,t,v,z - does not work) and numbers (1-7, 0 does not work), the code does not work correctly, as shown in screenshot 1.
2. if the file name starts with a capital letter A or B or C, it works correctly, but with other D-Z capital letters it returns an error message, as shown in screenshot 2.

P.S. if these letters and numbers are used in other places (for example, in the middle or end of the name ), then everything works fine.

Pages: [1] 2 3