An extension to use BSD Socket functionality within AMOS Professional.
Go to file
John Bintz fbc9dae690 fix readme 2024-03-18 21:23:01 -04:00
bin fix Inet NtoA bugs and release bugs 2024-03-17 13:42:22 -04:00
examples Final update before release 2023-04-04 16:57:17 -04:00
icons Build and release scripts, reorganize code, prep for releases 2023-03-31 13:47:58 -04:00
src Fix string returns 2024-03-18 12:34:30 -04:00
.gitignore 1.1.0 2024-02-24 11:42:04 -05:00
AMOSPro_BSDSocket.Lib Fix string returns 2024-03-18 12:34:30 -04:00
API.md 1.1.0 2024-02-24 11:42:04 -05:00
LICENSE Build and release scripts, reorganize code, prep for releases 2023-03-31 13:47:58 -04:00
README.md fix readme 2024-03-18 21:23:01 -04:00
aminet.readme.erb Tweak READMEs 2023-04-02 17:22:05 -04:00
icons.info Build and release scripts, reorganize code, prep for releases 2023-03-31 13:47:58 -04:00

README.md

AMOS Professional BSD Socket Extension

Want to get online with your AMOS Professional program? Now you can in style!

This extension provides a wrapper around the BSD Socket library provided by your Internet stack for use with AMOS Professional. There's some attempt to roll up some of the low-level functionality into something more usable by AMOS.

Installation

  • Copy AMOSPro_BSDSocket.Lib to AMOSPro_System:APSystem/
  • Within AMOS Professional:
    • Config -> Set Interpreter

    • Load Default Configuration

    • Set Loaded Extensions

    • Extension Slot 18 -- AMOSPro_BSDSocket.Lib

    • Exit

    • Save Configuration

    • Restart AMOS Professional

    • Type in the following and Run:

      Print Socket Library Open
      

      The line should tokenize, and running it should print -1 if you have no Internet stack running, or a large number if you do.

Examples

Communicating with an HTTP server

LIB=Socket Library Open

If LIB<=0
   End
End If

SOCKET=Socket Create Inet Socket
_=Socket Set Nonblocking(SOCKET,True)

' connect to aminet.net
IP$=Dns Get Address By Name$("aminet.net")
ALREADY_CONNECTED=Socket Connect(SOCKET To IP$,80)

Reserve As Work 30,1024

For I=1 To 100
   If ALREADY_CONNECTED=-1
      RESULT=Socket Wait Async Writing(SOCKET,100)
      If RESULT=-3
         Print "Socket connect failure!"
         Exit
      End If

      If RESULT>0
         ALREADY_CONNECTED=0
      End If
   End If

   If ALREADY_CONNECTED=0
      HTTPGET$="GET / HTTP/1.0"+Chr$(10)+"Host: amiga"+Chr$(10)+Chr$(10)
      Print "Making HTTP request to aminet.net"
      _=Socket Send(SOCKET,Varptr(HTTPGET$),Len(HTTPGET$))

      For J=1 To 100
         RESULT=Socket Wait Async Reading(SOCKET,5000)
         If RESULT>0
            OUT=Socket Recv(SOCKET To Start(30),1024)
            _DATA$=""
            For K=0 To OUT-1
               _DATA$=_DATA$+Chr$(Peek(Start(30)+K))
            Next K
            Print _DATA$
            If OUT<1024
               Exit 2
            End If
         End If
      Next J
      Exit
   End If
Next I

Socket Library Close

Starting a server

If Socket Library Open<=0
   End
End If

SOCKET=Socket Create Inet Socket

_=Socket Set Nonblocking(SOCKET,True)
_=Socket Reuse Addr(SOCKET)

RESULT=Socket Bind(SOCKET To "INADDR_ANY",8000)

_=Socket Listen(SOCKET)
Print "listening on port 8000"

For I=1 To 100
   RESULT=Socket Wait Async Reading(SOCKET,500)

   If RESULT>0
      _REMOTE_SOCKET=Socket Accept(SOCKET)

      Print Socket Inet Ntoa$(Socket Get Host(_REMOTE_SOCKET))
      Print Socket Get Port(_REMOTE_SOCKET)

      Print Socket Recv$(_REMOTE_SOCKET,1024)

      Exit
   End If
   Wait Vbl
Next I

Socket Library Close

Who's using the extension?

  • AQUABYSS
    • As of April 2023, the extension's been in heavy use for over a month on the client side of the game.
  • Hop to the Top: Bunny's Revenge
    • The game uses this extension to send and receive high score information. I also did some of the art for the game!

Doing something cool with the extension? Contact me and I'll add it to the list!

General Notes

  • The BSD Socket library, and all sockets, will close automatically when the program runs again. Sockets will stay open after stopping you code so you can debug issues from the AMOS console.
  • Since AMOS takes over Ctrl-C handling, you have to continually poll for socket statuses on nonblocking sockets. Trying to use a blocking socket will likely cause AMOS to hang indefinitely!
    • Using the Wait Async functions with small timeouts are the most system-friendly way of doing this.
  • MiamiDX can be fiddly, at least it is on my MiSTer set up. If Internet connectivity is not working, try re-connecting to the network.
  • If using Roadshow, bsdsocket.library will always be available, so you can't use its presence or lack thereof to test if Internet is available. You'll have to use a combination of DNS lookups and/or connection timeouts using Socket Async Wait Writing to determine if the Internet is available.

Versioning

This project uses semantic versioning.

  • If the major number increases, API has changed.
  • Otherwise, the extension's API should be backwards compatible.

License

Copyright 2023-2024 John Bintz. Licensed under the MIT License.

If you use this in your project, and you really want to, throw a link to theindustriousrabbit.com somewhere! You can also find a donate link on the About section on The Industrious Rabbit.

Feedback? Bug reports?

Go to the About section on The Industrious Rabbit to contact me.

Changelog

1.0.0 (2023-04-01)

  • First public release

1.0.1 (2023-04-04)

  • Fix bug in Socket Wait Async Writing where result of getsockopt was incorrectly used.

1.1.0 (2024-02-23)

  • Fix bug in Dns Get Host Address By Name$ where it assumed AMOS strings are null-terminated. They are not.
  • Add Socket Herrno to aid in debugging resolver errors.

1.1.1 (2024-03-17)

  • Fix bug in Socket Inet Ntoa$ where the null terminator on the result of calling Inet_NtoA was being included in the AMOS string.
  • Fix crash bug in Socket Inet Ntoa$ if called with the BSD Socket library was not open.

1.1.2 (2024-03-18)

  • Fix all functions that return strings so that strings work properly in AMOS. While you could kind of use the immediate return value of the string, any future manipulation of that string would fail. This fixes the following functions:
    • Socket Inet Ntoa$
    • Dns Get Address By Name$
    • Socket Recv$

Development

Environment

Native Amiga

  • Clone the AMOS Professional source code

    • Copy AMOSPro Sources/+lequ.s to +LEqu.s
  • Generate the socket LVO file in the src directory

    • Install fd2pragma in your path

    • Download https://raw.githubusercontent.com/cnvogelg/amitools/master/amitools/data/fd/bsdsocket_lib.fd to src

    • In a Shell:

      cd src
      fd2pragma bsdsocket_lib.fd to "" special 20
      
  • Fix up src/absdsocket to match your system's setup

  • In a Shell:

cd src
execute absdsocket

Emulated setup (WinUAE, FS-UAE, Amiberry)

Run bin/setup to do most of the setups above.

Debugging

Modify data in the DebugArea and read it by Peek/Deek/Leeking from the base address provided by Socket Get Debug Area.

Releasing

Ubuntu/Debian

  • Install jlha-utils and a modern enough Java to run it
  • Install Ruby
  • Run bin/release