命令/関数辞書
- 概要
- abs
- acos
- asc
- asin
- assert
- atan
- atan2
- background
- beep
- bgmadd
- bgmplay
- bgmstate
- bgmstop
- bind$
- binding
- box
- call
- chr$
- circle
- cls
- connect$
- connected@
- connecting
- cos
- crash
- data
- datetime@
- def animation
- def background
- def pic
- direction
- disconnect
- distance
- do
- elemtype
- else
- else if
- end
- end function
- end if
- end procedure
- exit do
- exit for
- exit procedure
- fetch@
- for
- function
- hear$
- hide
- if
- include
- inkey$
- input
- left$
- len
- let
- line
- listen
- listening
- locate
- loop
- main
- mainvar
- mainvar$
- mainvar@
- max
- mid$
- min
- move
- moving
- next
- oval
- paint
- pause
- pi
- play
- point
- pow
- procedure
- pset
- put
- random
- read
- receive@
- render
- return
- right$
- roll
- round
- scr$
- send
- sgn
- show
- sin
- speak
- speed
- sprite
- sqr
- stay
- stop
- str$
- tan
- tap
- time
- touch
- truncate
- turn
- unbind
- val
- visible
- write
- xpos
- ypos
bind$
働き
ネットワーク接続の受付を開始します。
文法
bind$(<s>)
- s - クライアント側の接続ID
説明
指定したポート番号にて、ネットワーク接続の受付を開始します。成功した場合は、サーバーの接続IDが得られます。失敗した場合は、長さ0の文字列が得られます。
サンプルプログラム
rem bind$
port=8080
server_conn_id$=bind$(port)
if len(server_conn_id$)=0 then
print "サーバーの起動に失敗しました"
end
end if
print server_conn_id$ + " にて接続受付中です"
do
rem ここで別の関数を使いリクエストの処理などをする
loop