dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
Macros
Collaboration diagram for Unilayer Static Lists:

Macros

#define LIST_ERROR_MAX   -100
 
#define dio_list_append(node, list, list_sz, list_max, list_type)
 Append a copy of the given node to the end of a static list.
 
#define dio_list_remove(idx, list, list_sz, list_type)   assert( (idx) < (list_sz) ); while( (idx) + 1 < (list_sz) ) { memory_copy_ptr( (MEMORY_PTR)&(list[idx]), (MEMORY_PTR)&(list[idx + 1]), sizeof( list_type ) ); (idx)++; } (list_sz)--;
 Remove an item from a static list and move the other items up, then shrink the list.
 

Detailed Description

Macro Definition Documentation

◆ dio_list_append

#define dio_list_append (   node,
  list,
  list_sz,
  list_max,
  list_type 
)
Value:
if( (list_sz) + 1 >= (list_max) ) { \
g_dio_error = LIST_ERROR_MAX; \
} else { \
memory_copy_ptr( (MEMORY_PTR)&(list[list_sz]), (MEMORY_PTR)node, \
sizeof( list_type ) ); \
(list_sz)++; \
}
int8_t g_dio_error
Holds return errors for macro-based utilities.
void * MEMORY_PTR
A C-style memory pointer that can be safely dereferenced.
Definition: fakem.h:42

Append a copy of the given node to the end of a static list.

Parameters
nodeLocked MEMORY_PTR to a node to copy to the end of the list.
listLocked MEMORY_PTR to the list to manipulate.
list_szNumber of active items in the list.
list_maxMaximum number of active items the list can hold.
list_typeType of items in the list.

◆ dio_list_remove

#define dio_list_remove (   idx,
  list,
  list_sz,
  list_type 
)    assert( (idx) < (list_sz) ); while( (idx) + 1 < (list_sz) ) { memory_copy_ptr( (MEMORY_PTR)&(list[idx]), (MEMORY_PTR)&(list[idx + 1]), sizeof( list_type ) ); (idx)++; } (list_sz)--;

Remove an item from a static list and move the other items up, then shrink the list.

Parameters
idxIndex of the item to remove.
listLocked MEMORY_PTR to the list to manipulate.
list_szNumber of active items in the list.
list_typeType of items in the list.