
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1320 4e206d99-4929-0410-ac5d-dfc041789085
123 lines
4.8 KiB
C
123 lines
4.8 KiB
C
////////////////////////////////////////////////////////////
|
|
//
|
|
// SFML - Simple and Fast Multimedia Library
|
|
// Copyright (C) 2007-2009 Laurent Gomila (laurent.gom@gmail.com)
|
|
//
|
|
// This software is provided 'as-is', without any express or implied warranty.
|
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
|
//
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
// including commercial applications, and to alter it and redistribute it freely,
|
|
// subject to the following restrictions:
|
|
//
|
|
// 1. The origin of this software must not be misrepresented;
|
|
// you must not claim that you wrote the original software.
|
|
// If you use this software in a product, an acknowledgment
|
|
// in the product documentation would be appreciated but is not required.
|
|
//
|
|
// 2. Altered source versions must be plainly marked as such,
|
|
// and must not be misrepresented as being the original software.
|
|
//
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
|
//
|
|
////////////////////////////////////////////////////////////
|
|
|
|
#ifndef SFML_SELECTOR_H
|
|
#define SFML_SELECTOR_H
|
|
|
|
////////////////////////////////////////////////////////////
|
|
// Headers
|
|
////////////////////////////////////////////////////////////
|
|
#include <SFML/Config.h>
|
|
#include <SFML/Network/Types.h>
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// Create a new selector
|
|
///
|
|
/// \return A new sfSelector object
|
|
///
|
|
////////////////////////////////////////////////////////////
|
|
CSFML_API sfSelectorTCP* sfSelectorTCP_Create();
|
|
CSFML_API sfSelectorUDP* sfSelectorUDP_Create();
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// Copy an existing selector
|
|
///
|
|
/// \param selector : Selector to copy
|
|
///
|
|
/// \return Copied object
|
|
///
|
|
////////////////////////////////////////////////////////////
|
|
CSFML_API sfSelectorTCP* sfSelectorTCP_Copy(sfSelectorTCP* selector);
|
|
CSFML_API sfSelectorUDP* sfSelectorUDP_Copy(sfSelectorUDP* selector);
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// Destroy an existing selector
|
|
///
|
|
/// \param selector : Selector to delete
|
|
///
|
|
////////////////////////////////////////////////////////////
|
|
CSFML_API void sfSelectorTCP_Destroy(sfSelectorTCP* selector);
|
|
CSFML_API void sfSelectorUDP_Destroy(sfSelectorUDP* selector);
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// Add a socket to watch to a selector
|
|
///
|
|
/// \param selector : Selector to add the socket to
|
|
/// \param socket : Socket to add
|
|
///
|
|
////////////////////////////////////////////////////////////
|
|
CSFML_API void sfSelectorTCP_Add(sfSelectorTCP* selector, sfSocketTCP* socket);
|
|
CSFML_API void sfSelectorUDP_Add(sfSelectorUDP* selector, sfSocketUDP* socket);
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// Remove a socket from a selector
|
|
///
|
|
/// \param selector : Selector to remove the socket from
|
|
/// \param socket : Socket to remove
|
|
///
|
|
////////////////////////////////////////////////////////////
|
|
CSFML_API void sfSelectorTCP_Remove(sfSelectorTCP* selector, sfSocketTCP* socket);
|
|
CSFML_API void sfSelectorUDP_Remove(sfSelectorUDP* selector, sfSocketUDP* socket);
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// Remove all sockets from a selector
|
|
///
|
|
/// \param selector : Selector to remove the socket from
|
|
///
|
|
////////////////////////////////////////////////////////////
|
|
CSFML_API void sfSelectorTCP_Clear(sfSelectorTCP* selector);
|
|
CSFML_API void sfSelectorUDP_Clear(sfSelectorUDP* selector);
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// Wait and collect sockets which are ready for reading.
|
|
/// This functions will return either when at least one socket
|
|
/// is ready, or when the given time is out
|
|
///
|
|
/// \param selector : Selector to check
|
|
/// \param timeout : Maximum time to wait, in seconds (0 to disable timeout)
|
|
///
|
|
/// \return Number of sockets ready
|
|
///
|
|
////////////////////////////////////////////////////////////
|
|
CSFML_API unsigned int sfSelectorTCP_Wait(sfSelectorTCP* selector, float timeout);
|
|
CSFML_API unsigned int sfSelectorUDP_Wait(sfSelectorUDP* selector, float timeout);
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// After a call to Wait(), get the Index-th socket which is
|
|
/// ready for reading. The total number of sockets ready
|
|
/// is the integer returned by the previous call to Wait()
|
|
///
|
|
/// \param selector : Selector to check
|
|
/// \param index : Index of the socket to get
|
|
///
|
|
/// \return The Index-th socket
|
|
///
|
|
////////////////////////////////////////////////////////////
|
|
CSFML_API sfSocketTCP* sfSelectorTCP_GetSocketReady(const sfSelectorTCP* selector, unsigned int index);
|
|
CSFML_API sfSocketUDP* sfSelectorUDP_GetSocketReady(const sfSelectorUDP* selector, unsigned int index);
|
|
|
|
|
|
#endif // SFML_SELECTOR_H
|