Prototype - Boids Demo Mac OS

-->
  1. Prototype - Boids Demo Mac Os Download
  2. Prototype - Boids Demo Mac Os X
  3. Prototype - Boids Demo Mac Os Catalina

Device Class registration

Lichess.org (also known as Lila - lichess in Scala) is a free and open source chess server written in Scala 2.13 that focuses on real time gameplay and ease of use. It’s where countless chess players and chess enthusiasts can gather and watch or play from a selection of over a million games every day, analyze games, learn and improve their. Prototype Tm Demo Software Star Trek Voyager: Elite Force Demo Star Trek Voyager: Elite Force Demo gives you the opportunity to enjoy such an interesting game in which Star Trek Voyager: Elite Force is the ultimate, sci-fi first-person shooter using the Quake III Arena( TM ) engine.The first game based on Star.

Each device class follows the same principle for registration. A structure containing specific class parameters is passed to the class initialize function.

Each class can register, optionally, a callback function when a instance of the class gets activated. The callback is then called by the device stack to inform the application that an instance was created.

The application would have in its body the 2 functions for activation and deactivation, as shown in the following example.

It is not recommended to do anything within these functions but to memorize the instance of the class and synchronize with the rest of the application.

USB Device Storage Class

The USB device storage class allows for a storage device embedded in the system to be made visible to a USB host.

The USB device storage class does not by itself provide a storage solution. It merely accepts and interprets SCSI requests coming from the host. When one of these requests is a read or a write command, it will invoke a pre-defined call back to a real storage device handler, such as an ATA device driver or a Flash device driver.

When initializing the device storage class, a pointer structure is given to the class that contains all the information necessary. An example is given below.

In this example, the driver storage strings are customized by assigning string pointers to corresponding parameter. If any one of the string pointer is left to UX_NULL, the default Azure RTOS string is used.

In this example, the drive's last block address or LBA is given as well as the logical sector size. The LBA is the number of sectors available in the media –1. The block length is set to 512 in regular storage media. It can be set to 2048 for optical drives.

The application needs to pass three callback function pointers to allow the storage class to read, write and obtain status for the media.

The prototypes for the read and write functions are shown in the example below.

Where:

  • storage is the instance of the storage class.
  • lun is the LUN the command is directed to.
  • data_pointer is the address of the buffer to be used for reading or writing.
  • number_blocks is the number of sectors to read/write.
  • lba is the sector address to read.
  • media_status should be filled out exactly like the media status callback return value.

The return value can have either the value UX_SUCCESS or UX_ERROR indicating a successful or unsuccessful operation. These operations do not need to return any other error codes. If there is an error in any operation, the storage class will invoke the status call back function.

This function has the following prototype.

The calling parameter media_id is not currently used and should always be 0. In the future it may be used to distinguish multiple storage devices or storage devices with multiple SCSI LUNs. This version of the storage class does not support multiple instances of the storage class or storage devices with multiple SCSI LUNs.

The return value is a SCSI error code that can have the following format.

  • Bits 0-7 Sense_key
  • Bits 8-15 Additional Sense Code
  • Bits 16-23 Additional Sense Code Qualifier

The following table provides the possible Sense/ASC/ASCQ combinations.

Sense KeyASCASCQDescription
000000NO SENSE
011701RECOVERED DATA WITH RETRIES
011800RECOVERED DATA WITH ECC
020401LOGICAL DRIVE NOT READY - BECOMING READY
020402LOGICAL DRIVE NOT READY - INITIALIZATION REQUIRED
020404LOGICAL UNIT NOT READY - FORMAT IN PROGRESS
0204FFLOGICAL DRIVE NOT READY - DEVICE IS BUSY
020600NO REFERENCE POSITION FOUND
020800LOGICAL UNIT COMMUNICATION FAILURE
020801LOGICAL UNIT COMMUNICATION TIME-OUT
020880LOGICAL UNIT COMMUNICATION OVERRUN
023A00MEDIUM NOT PRESENT
025400USB TO HOST SYSTEM INTERFACE FAILURE
028000INSUFFICIENT RESOURCES
02FFFFUNKNOWN ERROR
030200NO SEEK COMPLETE
030300WRITE FAULT
031000ID CRC ERROR
031100UNRECOVERED READ ERROR
031200ADDRESS MARK NOT FOUND FOR ID FIELD
031300ADDRESS MARK NOT FOUND FOR DATA FIELD
031400RECORDED ENTITY NOT FOUND
033001CANNOT READ MEDIUM - UNKNOWN FORMAT
033101FORMAT COMMAND FAILED
0440NNDIAGNOSTIC FAILURE ON COMPONENT NN (80H-FFH)
051A00PARAMETER LIST LENGTH ERROR
052000INVALID COMMAND OPERATION CODE
052100LOGICAL BLOCK ADDRESS OUT OF RANGE
052400INVALID FIELD IN COMMAND PACKET
052500LOGICAL UNIT NOT SUPPORTED
052600INVALID FIELD IN PARAMETER LIST
052601PARAMETER NOT SUPPORTED
052602PARAMETER VALUE INVALID
053900SAVING PARAMETERS NOT SUPPORT
062800NOT READY TO READY TRANSITION – MEDIA CHANGED
062900POWER ON RESET OR BUS DEVICE RESET OCCURRED
062F00COMMANDS CLEARED BY ANOTHER INITIATOR
072700WRITE PROTECTED MEDIA
0B4E00OVERLAPPED COMMAND ATTEMPTED

There are two additional, optional callbacks the application may implement; one is for responding to a GET_STATUS_NOTIFICATION command and the other is for responding to the SYNCHRONIZE_CACHE command.

If the application would like to handle the GET_STATUS_NOTIFICATION command from the host, it should implement a callback with the following prototype.

Where:

  • storage is the instance of the storage class.
  • media_id is not currently used. notification_class specifies the class of notification.
  • media_notification should be set by the application to the buffer containing the response for the notification.
  • media_notification_length should be set by the application to contain the length of the response buffer.

The return value indicates whether or not the command succeeded – should be either UX_SUCCESS or UX_ERROR.

If the application does not implement this callback, then upon receiving the GET_STATUS_NOTIFICATION command, USBX will notify the host that the command is not implemented.

The SYNCHRONIZE_CACHE command should be handled if the application is utilizing a cache for writes from the host. A host may send this command if it knows the storage device is about to be disconnected, for example, in Windows, if you right click a flash drive icon in the toolbar and select 'Eject [storage device name]', Windows will issue the SYNCHRONIZE_CACHE command to that device.

If the application would like to handle the GET_STATUS_NOTIFICATION command from the host, it should implement a callback with the following prototype.

Where:

  • storage is the instance of the storage class.
  • lun parameter specifies which LUN the command is directed to.
  • number_blocks specifies the number of blocks to synchronize.
  • lba is the sector address of the first block to synchronize.
  • media_status should be filled out exactly like the media status callback return value.

The return value indicates whether or not the command succeeded – should be either UX_SUCCESS or UX_ERROR.

Multiple SCSI LUN

The USBX device storage class supports multiple LUNs. It is therefore possible to create a storage device that acts as a CD-ROM and a Flash disk at the same time. In such a case, the initialization would be slightly different. Here is an example for a Flash Disk and CD-ROM:

USB Device CDC-ACM Class

The USB device CDC-ACM class allows for a USB host system to communicate with the device as a serial device. This class is based on the USB standard and is a subset of the CDC standard.

A CDC-ACM compliant device framework needs to be declared by the device stack. An example is found here below.

The CDC-ACM class uses a composite device framework to group interfaces (control and data). As a result care should be taken when defining the device descriptor. USBX relies on the IAD descriptor to know internally how to bind interfaces. The IAD descriptor should be declared before the interfaces and contain the first interface of the CDC-ACM class and how many interfaces are attached.

The CDC-ACM class also uses a union functional descriptor which performs the same function as the newer IAD descriptor. Although a Union Functional descriptor must be declared for historical reasons and compatibility with the host side, it is not used by USBX.

The initialization of the CDC-ACM class expects the following parameters.

The 2 parameters defined are callback pointers into the user applications that will be called when the stack activates or deactivate this class.

The third parameter defined is a callback pointer to the user application that will be called when there is line coding or line states parameter change. E.g., when there is request from host to change DTR state to TRUE, the callback is invoked, in it user application can check line states through IOCTL function to kow host is ready for communication.

The CDC-ACM is based on a USB-IF standard and is automatically recognized by MACOs and Linux operating systems. On Windows platforms, this class requires a .inf file for Windows version prior to 10. Windows 10 does not require any .inf files. We supply a template for the CDC-ACM class and it can be found in the usbx_windows_host_files directory. For more recent version of Windows the file CDC_ACM_Template_Win7_64bit.inf should be used (except Win10). This file needs to be modified to reflect the PID/VID used by the device. The PID/VID will be specific to the final customer when the company and the product are registered with the USB-IF. In the inf file, the fields to modify are located here.

In the device framework of the CDC-ACM device, the PID/VID are stored in the device descriptor (see the device descriptor declared above).

When a USB host systems discovers the USB CDC-ACM device, it will mount a serial class and the device can be used with any serial terminal program. See the host Operating System for reference.

The CDC-ACM class API functions are defined below.

ux_device_class_cdc_acm_ioctl

Perform IOCTL on the CDC-ACM interface

Prototype

Description

This function is called when an application needs to perform various ioctl calls to the cdc acm interface

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • ioctl_function: Ioctl function to be performed.
  • parameter: Pointer to a parameter specific to the ioctl call.

Return Value

  • UX_SUCCESS (0x00) This operation was successful.
  • UX_ERROR (0xFF) Error from function

Example

Ioctl functions:

FunctionValue
UX_SLAVE_CLASS_CDC_ACM_IOCTL_SET_LINE_CODING1
UX_SLAVE_CLASS_CDC_ACM_IOCTL_GET_LINE_CODING2
UX_SLAVE_CLASS_CDC_ACM_IOCTL_GET_LINE_STATE3
UX_SLAVE_CLASS_CDC_ACM_IOCTL_ABORT_PIPE4
UX_SLAVE_CLASS_CDC_ACM_IOCTL_SET_LINE_STATE5
UX_SLAVE_CLASS_CDC_ACM_IOCTL_TRANSMISSION_START6
UX_SLAVE_CLASS_CDC_ACM_IOCTL_TRANSMISSION_STOP7

ux_device_class_cdc_acm_ioctl: UX_SLAVE_CLASS_CDC_ACM_IOCTL_SET_LINE_CODING

Perform IOCTL Set Line Coding on the CDC-ACM interface

Prototype

Description

This function is called when an application needs to Set the Line Coding parameters.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • ioctl_function: ux_SLAVE_CLASS_CDC_ACM_IOCTL_SET_LINE_CODING
  • parameter: Pointer to a line parameter structure:

Return Value

UX_SUCCESS (0x00) This operation was successful.

Example

ux_device_class_cdc_acm_ioctl: UX_SLAVE_CLASS_CDC_ACM_IOCTL_GET_LINE_CODING

Perform IOCTL Get Line Coding on the CDC-ACM interface

Prototype

Description

This function is called when an application needs to Get the Line Coding parameters.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • ioctl_function: ux_SLAVE_CLASS_CDC_ACM_IOCTL_GET_ LINE_CODING
  • parameter: Pointer to a line parameter structure:

Return Value

  • UX_SUCCESS (0x00) This operation was successful.

Example

ux_device_class_cdc_acm_ioctl: UX_SLAVE_CLASS_CDC_ACM_IOCTL_GET_LINE_STATE

Perform IOCTL Get Line State on the CDC-ACM interface

Prototype

Description

This function is called when an application needs to Get the Line State parameters.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • ioctl_function: ux_SLAVE_CLASS_CDC_ACM_IOCTL_GET_LINE_STATE
  • parameter: Pointer to a line parameter structure:

Return Value

  • UX_SUCCESS (0x00) This operation was successful.

Example

ux_device_class_cdc_acm_ioctl: UX_SLAVE_CLASS_CDC_ACM_IOCTL_SET_LINE_STATE

Perform IOCTL Set Line State on the CDC-ACM interface

Prototype

Description

This function is called when an application needs to Get the Line State parameters

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • ioctl_function: ux_SLAVE_CLASS_CDC_ACM_IOCTL_SET_LINE_STATE
  • parameter: Pointer to a line parameter structure:

Return Value

  • UX_SUCCESS (0x00) This operation was successful.

Example

ux_device_class_cdc_acm_ioctl: UX_SLAVE_CLASS_CDC_ACM_IOCTL_ABORT_PIPE

Perform IOCTL ABORT PIPE on the CDC-ACM interface

Prototype

Description

This function is called when an application needs to abort a pipe. For example, to abort an ongoing write, UX_SLAVE_CLASS_CDC_ACM_ENDPOINT_XMIT should be passed as the parameter.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • ioctl_function: ux_SLAVE_CLASS_CDC_ACM_IOCTL_ABORT_PIPE
  • parameter: The pipe direction:

Return Value

  • UX_SUCCESS (0x00) This operation was successful.
  • UX_ENDPOINT_HANDLE_UNKNOWN (0x53) Invalid pipe direction.

Example

ux_device_class_cdc_acm_ioctl: UX_SLAVE_CLASS_CDC_ACM_IOCTL_TRANSMISSION_START

Perform IOCTL Transmission Start on the CDC-ACM interface

Prototype

Description

This function is called when an application wants to use transmission with callback.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • ioctl_function: ux_SLAVE_CLASS_CDC_ACM_IOCTL_TRANSMISSION_START
  • parameter: Pointer to the Start Transmission parameter structure:

Return Value

  • UX_SUCCESS (0x00) This operation was successful.
  • UX_ERROR (0xFF) Transmission already started.
  • UX_MEMORY_INSUFFICIENT (0x12) A memory allocation failed.

Example

ux_device_class_cdc_acm_ioctl: UX_SLAVE_CLASS_CDC_ACM_IOCTL_TRANSMISSION_STOP

Perform IOCTL Transmission Stop on the CDC-ACM interface

Prototype

Description

This function is called when an application wants to stop using transmission with callback.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • ioctl_function: ux_SLAVE_CLASS_CDC_ACM_IOCTL_TRANSMISSI ON_STOP
  • parameter: Not used

Return Value

  • UX_SUCCESS (0x00) This operation was successful.
  • UX_ERROR (0xFF) No ongoing transmission.

Example

ux_device_class_cdc_acm_read

Read from CDC-ACM pipe

Prototype

Description

This function is called when an application needs to read from the OUT data pipe (OUT from the host, IN from the device). It is blocking.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • buffer: Buffer address where data will be stored.
  • requested_length: The maximum length we expect.
  • actual_length: The length returned into the buffer.

Return Value

  • UX_SUCCESS (0x00) This operation was successful.
  • UX_CONFIGURATION_HANDLE_UNKNOWN (0x51) Device is no longer in the configured state.
  • UX_TRANSFER_NO_ANSWER (0x22) No answer from device. The device was probably disconnected while the transfer was pending.

Example

ux_device_class_cdc_acm_write

Write to a CDC-ACM pipe

Prototype

Description

This function is called when an application needs to write to the IN data pipe (IN from the host, OUT from the device). It is blocking.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • buffer: Buffer address where data is stored.
  • requested_length: The length of the buffer to write.
  • actual_length: The length returned into the buffer after write is performed.

Return Value

  • UX_SUCCESS (0x00) This operation was successful.
  • UX_CONFIGURATION_HANDLE_UNKNOWN (0x51) Device is no longer in the configured state.
  • UX_TRANSFER_NO_ANSWER (0x22) No answer from device. The device was probably disconnected while the transfer was pending.

Example

ux_device_class_cdc_acm_write_with_callback

Writing to a CDC-ACM pipe with callback

Prototype

Description

This function is called when an application needs to write to the IN data pipe (IN from the host, OUT from the device). This function is non-blocking and the completion will be done through a callback set in UX_SLAVE_CLASS_CDC_ACM_IOCTL_TRANSMISSION_START.

Parameters

  • cdc_acm: Pointer to the cdc class instance.
  • buffer: Buffer address where data is stored.
  • requested_length: The length of the buffer to write.
  • actual_length: The length returned into the buffer after write is performed

Return Value

  • UX_SUCCESS (0x00) This operation was successful.
  • UX_CONFIGURATION_HANDLE_UNKNOWN (0x51) Device is no longer in the configured state.
  • UX_TRANSFER_NO_ANSWER (0x22) No answer from device. The device was probably disconnected while the transfer was pending.

Example

USB Device CDC-ECM Class

The USB device CDC-ECM class allows for a USB host system to communicate with the device as a ethernet device. This class is based on the USB standard and is a subset of the CDC standard.

A CDC-ACM compliant device framework needs to be declared by the device stack. An example is found here below.

The CDC-ECM class uses a very similar device descriptor approach to the CDC-ACM and also requires an IAD descriptor. See the CDC-ACM class for definition.

In addition to the regular device framework, the CDC-ECM requires special string descriptors. An example is given below.

The MAC address string descriptor is used by the CDC-ECM class to reply to the host queries as to what MAC address the device is answering to at the TCP/IP protocol. It can be set to the device choice but must be defined here.

The initialization of the CDC-ECM class is as follows.

The initialization of this class expects the same function callback for activation and deactivation, although here as an exercise they are set to NULL so that no callback is performed.

The next parameters are for the definition of the node IDs. 2 Nodes are necessary for the CDC-ECM, a local node and a remote node. The local node specifies the MAC address of the device, while the remote node specifies the MAC address of the host. The remote node must be the same one as the one declared in the device framework string descriptor.

The CDC-ECM class has built-in APIs for transferring data both ways but they are hidden to the application as the user application will communicate with the USB Ethernet device through NetX.

The USBX CDC-ECM class is closely tied to Azure RTOS NetX Network stack. An application using both NetX and USBX CDC-ECM class will activate the NetX network stack in its usual way but in addition needs to activate the USB network stack as follows.

The USB network stack needs to be activated only once and is not specific to CDCECM but is required by any USB class that requires NetX services.

The CDC-ECM class will be recognized by MAC OS and Linux hosts. But there is no driver supplied by Microsoft Windows to recognize CDC-ECM natively. Some commercial products do exist for Windows platforms and they supply their own .inf file. This file will need to be modified the same way as the CDC-ACM inf template to match the PID/VID of the USB network device.

USB Device HID Class

The USB device HID class allows for a USB host system to connect to a HID device with specific HID client capabilities.

USBX HID device class is relatively simple compared to the host side. It is closely tied to the behavior of the device and its HID descriptor.

Any HID client requires first to define a HID device framework as the example below.

The HID framework contains an interface descriptor that describes the HID class and the HID device subclass. The HID interface can be a standalone class or part of a composite device.

Currently, the USBX HID class does not support multiple report IDs, as most applications only require one ID (ID zero). If multiple report IDs is a feature you are interested in, please contact us.

The initialization of the HID class is as follow, using a USB keyboard as an example.

The application needs to pass to the HID class a HID report descriptor and its length. The report descriptor is a collection of items that describe the device. For more information on the HID grammar refer to the HID USB class specification.

In addition to the report descriptor, the application passes a call back when a HID event happens.

The USBX HID class supports the following standard HID commands from the host.

Command nameValueDescription
UX_DEVICE_CLASS_HID_COMMAND_GET_REPORT0x01Get a report from the device
UX_DEVICE_CLASS_HID_COMMAND_GET_IDLE0x02Get the idle frequency of the interrupt endpoint
UX_DEVICE_CLASS_HID_COMMAND_GET_PROTOCOL0x03Get the protocol running on the device
UX_DEVICE_CLASS_HID_COMMAND_SET_REPORT0x09Set a report to the device
UX_DEVICE_CLASS_HID_COMMAND_SET_IDLE0x0aSet the idle frequency of the interrupt endpoint
UX_DEVICE_CLASS_HID_COMMAND_SET_PROTOCOL0x0bGet the protocol running on the device

The Get and Set report are the most commonly used commands by HID to transfer data back and forth between the host and the device. Most commonly the host sends data on the control endpoint but can receive data either on the interrupt endpoint or by issuing a GET_REPORT command to fetch the data on the control endpoint.

The HID class can send data back to the host on the interrupt endpoint by using the ux_device_class_hid_event_set function.

ux_device_class_hid_event_set

Setting an event to the HID class

Prototype

Description

This function is called when an application needs to send a HID event back to the host. The function is not blocking, it merely puts the report into a circular queue and returns to the application.

Parameters

  • hid: Pointer to the hid class instance.
  • hid_event: Pointer to structure of the hid event.

Return Value

  • UX_SUCCESS (0x00) This operation was successful.
  • UX_ERROR (0xFF) Error no space available in circular queue.

Example

The callback defined at the initialization of the HID class performs the opposite of sending an event. It gets as input the event sent by the host. The prototype of the callback is as follows.

hid_callback

Getting an event from the HID class

Prototype

Description

This function is called when the host sends a HID report to the application.

Parameters

  • hid: Pointer to the hid class instance.
  • hid_event: Pointer to structure of the hid event.

Example

The following example shows how to interpret an event for a HID keyboard:

SHOOT 'EM UP. BULLET HELL. SYNTHWAVE MUSIC.

Ghost 808 is an arcade-style Bullet Hell

Vertical scrolling shooter fully realized in 3d low-poly with 2d arcade gameplay.
Its specificities are an adaptive gameplay based on player's skill, leading to difficulty and dynamic music.

..And a DASH system to dodge!

A scoring shooter challenge.

Prototype demo is available at download:

FEATURE

Game is still in development build v0.52

  • Fully playable with 1 spaceship on stage 1
  • Adaptive gameplay with Rank level
  • Dynamic music scaling on the Rank
  • Dash system
  • Attack score mode in 3 difficulties : easy / normal / maniac
  • Score ranking
  • Leaderboard on our website

Lot of feature to discover by downloading and enjoying the game's prototype for free

Mac Os and Linux build will be available soon.

Support and feedback will be appreciated!

Prototype - Boids Demo Mac Os Download

CONTACT US
Website : Ghost 808
Twitter : @Ghost808Game

StatusIn development
PlatformsWindows
AuthorGhost 808
GenreShooter
Made withUnity, Blender
TagsArcade, bullethell, danmaku, ghost808, Low-poly, manic, Retro, Shoot 'Em Up, Singleplayer
Average sessionA few minutes
LanguagesEnglish
InputsKeyboard, Xbox controller, Gamepad (any), Joystick, Playstation controller
LinksTwitter, Leaderboard, Homepage

Install instructions

INSTALLATION

  1. Download the archive, depends on your operating system
  2. Extract the downloaded file on your drive
  3. Go into the extracted directory
  4. Launch Ghost808 file
  5. Play and enjoy game's prototype demo

Download

Development log

Prototype - Boids Demo Mac Os X

Boids
  • Update v0.52
    May 17, 2019

Prototype - Boids Demo Mac Os Catalina

Log in with itch.io to leave a comment.