Skip to content
Snippets Groups Projects
libmueb.ini 772 B
Newer Older
  • Learn to ignore specific revisions
  • ; Building specific constants.
    [building]
    floors=13
    rooms_per_floor=8
    windows_per_room=2
    
    ; Hardware specific constants.
    [hardware]
    ; Pixel units must be an even number.
    vertical_pixel_unit=2
    horizontal_pixel_unit=2
    
    bodzsoaa's avatar
    bodzsoaa committed
    ; Color depth must be between 3 and 8.
    
    bodzsoaa's avatar
    bodzsoaa committed
    color_depth=4
    
    
    ; Network protocol specific constants.
    [network]
    
    bodzsoaa's avatar
    bodzsoaa committed
    animation_port=50001
    ; Could be any valid IP(v4/v6) address: broadcast, multicast, unicast, localhost etc.
    
    target_address=10.6.255.255
    ; The number of windows divided by max_windows_per_datagram must be an integer.
    ; max_windows_per_datagram must be less than the number of windows.
    ; Packet size must be less than 1472 bytes to avoid IPv4 fragmentation.
    ; Assuming 1500 MTU, 1500-20(IPv4 header)-8(UDP header) = 1472 bytes.
    max_windows_per_datagram=208