ホーム › Graphics.Direct3D9 › D3DBOX
D3DBOX
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| Left | DWORD | 4 | +0 | +0 | ボックスの左端座標。 |
| Top | DWORD | 4 | +4 | +4 | ボックスの上端座標。 |
| Right | DWORD | 4 | +8 | +8 | ボックスの右端座標(排他的)。 |
| Bottom | DWORD | 4 | +12 | +12 | ボックスの下端座標(排他的)。 |
| Front | DWORD | 4 | +16 | +16 | ボックスの手前面座標。 |
| Back | DWORD | 4 | +20 | +20 | ボックスの奥面座標(排他的)。 |
各言語での定義
#include <windows.h>
// D3DBOX (x64 24 / x86 24 バイト)
typedef struct D3DBOX {
DWORD Left;
DWORD Top;
DWORD Right;
DWORD Bottom;
DWORD Front;
DWORD Back;
} D3DBOX;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct D3DBOX
{
public uint Left;
public uint Top;
public uint Right;
public uint Bottom;
public uint Front;
public uint Back;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure D3DBOX
Public Left As UInteger
Public Top As UInteger
Public Right As UInteger
Public Bottom As UInteger
Public Front As UInteger
Public Back As UInteger
End Structureimport ctypes
from ctypes import wintypes
class D3DBOX(ctypes.Structure):
_fields_ = [
("Left", wintypes.DWORD),
("Top", wintypes.DWORD),
("Right", wintypes.DWORD),
("Bottom", wintypes.DWORD),
("Front", wintypes.DWORD),
("Back", wintypes.DWORD),
]#[repr(C)]
pub struct D3DBOX {
pub Left: u32,
pub Top: u32,
pub Right: u32,
pub Bottom: u32,
pub Front: u32,
pub Back: u32,
}import "golang.org/x/sys/windows"
type D3DBOX struct {
Left uint32
Top uint32
Right uint32
Bottom uint32
Front uint32
Back uint32
}type
D3DBOX = record
Left: DWORD;
Top: DWORD;
Right: DWORD;
Bottom: DWORD;
Front: DWORD;
Back: DWORD;
end;const D3DBOX = extern struct {
Left: u32,
Top: u32,
Right: u32,
Bottom: u32,
Front: u32,
Back: u32,
};type
D3DBOX {.bycopy.} = object
Left: uint32
Top: uint32
Right: uint32
Bottom: uint32
Front: uint32
Back: uint32struct D3DBOX
{
uint Left;
uint Top;
uint Right;
uint Bottom;
uint Front;
uint Back;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; D3DBOX サイズ: 24 バイト(x64)
dim st, 6 ; 4byte整数×6(構造体サイズ 24 / 4 切り上げ)
; Left : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; Top : DWORD (+4, 4byte) st.1 = 値 / 値 = st.1 (lpoke/lpeek も可)
; Right : DWORD (+8, 4byte) st.2 = 値 / 値 = st.2 (lpoke/lpeek も可)
; Bottom : DWORD (+12, 4byte) st.3 = 値 / 値 = st.3 (lpoke/lpeek も可)
; Front : DWORD (+16, 4byte) st.4 = 値 / 値 = st.4 (lpoke/lpeek も可)
; Back : DWORD (+20, 4byte) st.5 = 値 / 値 = st.5 (lpoke/lpeek も可)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global D3DBOX
#field int Left
#field int Top
#field int Right
#field int Bottom
#field int Front
#field int Back
#endstruct
stdim st, D3DBOX ; NSTRUCT 変数を確保
st->Left = 100
mes "Left=" + st->Left