Group
Group
は振動子ごとに別々のGain
を使用するためのGain
である.
NOTE: デバイスごとの分割で良いのであれば, Controller::group_sendの使用を推奨する.
Group
では, 振動子に対してキーを割り当て, その各キーにGain
を紐付けて使用する.
use autd3::gain::IntoBoxedGain;
use autd3::prelude::*;
use std::collections::HashMap;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let x = 0.;
let y = 0.;
let z = 0.;
let _ =
Group {
key_map: |_dev| {
|tr| match tr.idx() {
0..=100 => Some("null"),
_ => Some("focus"),
}
},
gain_map: HashMap::from([
("null", Null {}.into_boxed()),
(
"focus",
Focus {
pos: Point3::new(x, y, z),
option: Default::default(),
}
.into_boxed(),
),
]),
};
Ok(())
}
#include<optional>
#include<autd3.hpp>
int main() {
using namespace autd3;
const auto x = 0.0;
const auto y = 0.0;
const auto z = 0.0;
Group(
[](const auto& dev) {
return [](const auto& tr) -> std::optional<const char*> {
if (tr.idx() <= 100) return "null";
return "focus";
};
},
std::unordered_map<const char*, std::shared_ptr<Gain>>{
{"focus", std::make_shared<Focus>(Point3(x, y, z), FocusOption{})},
{"null", std::make_shared<Null>()}});
return 0; }
using AUTD3Sharp.Utils;
using AUTD3Sharp.Gain;
using AUTD3Sharp.Driver.Datagram;
var x = 0.0f;
var y = 0.0f;
var z = 0.0f;
new Group(
keyMap: dev => tr => tr.Idx() <= 100 ? "null" : "focus",
gainMap: new Dictionary<object, IGain> {
{ "null", new Null() },
{ "focus", new Focus(pos: new Point3(x, y, z), option: new FocusOption()) }
}
);
from pyautd3 import Focus, FocusOption, Group, Null
x = 1.0
y = 0.0
z = 0.0
Group(
key_map=lambda _: lambda tr: "null" if tr.idx() <= 100 else "focus",
gain_map={"null": Null(), "focus": Focus(pos=[x, y, z], option=FocusOption())},
)
上の場合は, ローカルインデックスがからの振動子はNull
を, それ以外の振動子はFocus
を出力する.
NOTE: このサンプルでは, キーとして文字列を使用しているが,
HashMap
のキーとして使用できるものなら何でも良い.