1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397

extern crate libc;
extern crate steamworks_sys as sys;
#[macro_use]
extern crate failure;
#[macro_use]
extern crate bitflags;

mod error;
pub use error::*;

mod server;
pub use server::*;
mod utils;
pub use utils::*;
mod app;
pub use app::*;
mod friends;
pub use friends::*;
mod matchmaking;
pub use matchmaking::*;
mod user;
pub use user::*;

use std::sync::{Arc, Mutex, Weak};
use std::ffi::{CString, CStr};
use std::fmt::{
    Debug, Formatter, self
};
use std::collections::HashMap;

pub type SResult<T> = Result<T, SteamError>;

// A note about thread-safety:
// The steam api is assumed to be thread safe unless
// the documentation for a method states otherwise,
// however this is never stated anywhere in the docs
// that I could see.

/// The main entry point into the steam client.
///
/// This provides access to all of the steamworks api that
/// clients can use.
pub struct Client<Manager = ClientManager> {
    inner: Arc<Inner<Manager>>,
    client: *mut sys::ISteamClient,
}

impl <Manager> Clone for Client<Manager> {
    fn clone(&self) -> Self {
        Client {
            inner: self.inner.clone(),
            client: self.client,
        }
    }
}

struct Inner<Manager> {
    _manager: Manager,
    callbacks: Mutex<Callbacks>,
}

struct Callbacks {
    callbacks: Vec<*mut libc::c_void>,
    call_results: HashMap<sys::SteamAPICall, *mut libc::c_void>,
}

unsafe impl <Manager: Send + Sync> Send for Inner<Manager> {}
unsafe impl <Manager: Send + Sync> Sync for Inner<Manager> {}
unsafe impl <Manager: Send + Sync> Send for Client<Manager> {}
unsafe impl <Manager: Send + Sync> Sync for Client<Manager> {}

/// Returns true if the app wasn't launched through steam and
/// begins relaunching it, the app should exit as soon as possible.
///
/// Returns false if the app was either launched through steam
/// or has a `steam_appid.txt`
pub fn restart_app_if_necessary(app_id: AppId) -> bool {
    unsafe {
        sys::SteamAPI_RestartAppIfNecessary(app_id.0) != 0
    }
}

impl Client<ClientManager> {
    /// Attempts to initialize the steamworks api and returns
    /// a client to access the rest of the api.
    ///
    /// This should only ever have one instance per a program.
    ///
    /// # Errors
    ///
    /// This can fail if:
    /// * The steam client isn't running
    /// * The app ID of the game couldn't be determined.
    ///
    ///   If the game isn't being run through steam this can be provided by
    ///   placing a `steam_appid.txt` with the ID inside in the current
    ///   working directory
    /// * The game isn't running on the same user/level as the steam client
    /// * The user doesn't own a license for the game.
    /// * The app ID isn't completely set up.
    pub fn init() -> SResult<Client<ClientManager>> {
        unsafe {
            if sys::SteamAPI_Init() == 0 {
                return Err(SteamError::InitFailed);
            }
            let raw_client = sys::steam_rust_get_client();
            let client = Arc::new(Inner {
                _manager: ClientManager { _priv: () },
                callbacks: Mutex::new(Callbacks {
                    callbacks: Vec::new(),
                    call_results: HashMap::new(),
                }),
            });
            Ok(Client {
                inner: client,
                client: raw_client,
            })
        }
    }
}

impl <Manager> Client<Manager> {
    /// Runs any currently pending callbacks
    ///
    /// This runs all currently pending callbacks on the current
    /// thread.
    ///
    /// This should be called frequently (e.g. once per a frame)
    /// in order to reduce the latency between recieving events.
    pub fn run_callbacks(&self) {
        unsafe {
            sys::SteamAPI_RunCallbacks();
        }
    }

    /// Registers the passed function as a callback for the
    /// given type.
    ///
    /// The callback will be run on the thread that `run_callbacks`
    /// is called when the event arrives.
    pub fn register_callback<C, F>(&self, f: F)
        where C: Callback,
              F: FnMut(C) + 'static + Send + Sync
    {
        unsafe {
            register_callback(&self.inner, f, false);
        }
    }

    /// Returns an accessor to the steam utils interface
    pub fn utils(&self) -> Utils<Manager> {
        unsafe {
            let utils = sys::steam_rust_get_utils();
            debug_assert!(!utils.is_null());
            Utils {
                utils: utils,
                _inner: self.inner.clone(),
            }
        }
    }

    /// Returns an accessor to the steam matchmaking interface
    pub fn matchmaking(&self) -> Matchmaking<Manager> {
        unsafe {
            let mm = sys::steam_rust_get_matchmaking();
            debug_assert!(!mm.is_null());
            Matchmaking {
                mm: mm,
                inner: self.inner.clone(),
            }
        }
    }

    /// Returns an accessor to the steam apps interface
    pub fn apps(&self) -> Apps<Manager> {
        unsafe {
            let apps = sys::steam_rust_get_apps();
            debug_assert!(!apps.is_null());
            Apps {
                apps: apps,
                _inner: self.inner.clone(),
            }
        }
    }

    /// Returns an accessor to the steam friends interface
    pub fn friends(&self) -> Friends<Manager> {
        unsafe {
            let friends = sys::steam_rust_get_friends();
            debug_assert!(!friends.is_null());
            Friends {
                friends: friends,
                inner: self.inner.clone(),
            }
        }

    }

    /// Returns an accessor to the steam user interface
    pub fn user(&self) -> User<Manager> {
        unsafe {
            let user = sys::steam_rust_get_user();
            debug_assert!(!user.is_null());
            User {
                user,
                _inner: self.inner.clone(),
            }
        }

    }
}

impl <Manager> Drop for Inner<Manager> {
    fn drop(&mut self) {
        unsafe {
            {
                let callbacks = self.callbacks.lock().unwrap();
                for cb in &callbacks.callbacks {
                    sys::unregister_rust_steam_callback(*cb);
                }
                for cb in callbacks.call_results.values() {
                    sys::unregister_rust_steam_call_result(*cb);
                }
            }
        }
    }
}


pub(crate) unsafe fn register_callback<C, F, Manager>(inner: &Arc<Inner<Manager>>, f: F, game_server: bool)
    where C: Callback,
          F: FnMut(C) + 'static + Send + Sync
{
    let userdata = Box::into_raw(Box::new(f));

    extern "C" fn run_func<C, F>(userdata: *mut libc::c_void, param: *mut libc::c_void)
        where C: Callback,
              F: FnMut(C) + 'static + Send + Sync
    {
        unsafe {
            let func: &mut F = &mut *(userdata as *mut F);
            let param = C::from_raw(param);
            func(param);
        }
    }
    extern "C" fn dealloc<C, F>(userdata: *mut libc::c_void)
        where C: Callback,
              F: FnMut(C) + 'static + Send + Sync
    {
        let func: Box<F> = unsafe { Box::from_raw(userdata as _) };
        drop(func);
    }

    let ptr = sys::register_rust_steam_callback(
        C::size() as _,
        userdata as _,
        run_func::<C, F>,
        dealloc::<C, F>,
        C::id() as _,
        game_server as _,
    );
    let mut cbs = inner.callbacks.lock().unwrap();
    cbs.callbacks.push(ptr);
}

pub(crate) unsafe fn register_call_result<C, F, Manager>(inner: &Arc<Inner<Manager>>, api_call: sys::SteamAPICall, callback_id: i32, f: F)
    where F: for <'a> FnMut(&'a C, bool) + 'static + Send + Sync
{
    use std::mem;

    struct Info<F, Manager> {
        func: F,
        api_call: sys::SteamAPICall,
        inner: Weak<Inner<Manager>>,
    }

    let userdata = Box::into_raw(Box::new(Info {
        func: f,
        api_call,
        inner: Arc::downgrade(&inner),
    }));

    extern "C" fn run_func<C, F, Manager>(userdata: *mut libc::c_void, param: *mut libc::c_void, io_error: bool)
        where F: for <'a> FnMut(&'a C, bool) + 'static + Send + Sync
    {
        unsafe {
            let func: &mut Info<F, Manager> = &mut *(userdata as *mut Info<F, Manager>);
            (func.func)(&*(param as *const _), io_error);
        }
    }
    extern "C" fn dealloc<C, F, Manager>(userdata: *mut libc::c_void)
        where F: for <'a> FnMut(&'a C, bool) + 'static + Send + Sync
    {
        let func: Box<Info<F, Manager>> = unsafe { Box::from_raw(userdata as _) };
        if let Some(inner) = func.inner.upgrade() {
            let mut cbs = inner.callbacks.lock().unwrap();
            cbs.call_results.remove(&func.api_call);
        }
        drop(func);
    }

    let ptr = sys::register_rust_steam_call_result(
        mem::size_of::<C>() as _,
        userdata as _,
        run_func::<C, F, Manager>,
        dealloc::<C, F, Manager>,
        api_call,
        callback_id as _,
    );
    let mut cbs = inner.callbacks.lock().unwrap();
    cbs.call_results.insert(api_call, ptr);
}

/// Manages keeping the steam api active for clients
pub struct ClientManager {
    _priv: (),
}

impl Drop for ClientManager {
    fn drop(&mut self) {
        unsafe {
            sys::SteamAPI_Shutdown();
        }
    }
}

/// A user's steam id
#[derive(Clone, Copy, Debug, Ord, PartialOrd, Eq, PartialEq)]
pub struct SteamId(pub(crate) u64);

impl SteamId {
    /// Creates a `SteamId` from a raw 64 bit value.
    ///
    /// May be useful for deserializing steam ids from
    /// a network or save format.
    pub fn from_raw(id: u64) -> SteamId {
        SteamId(id)
    }

    /// Returns the raw 64 bit value of the steam id
    ///
    /// May be useful for serializing steam ids over a
    /// network or to a save format.
    pub fn raw(&self) -> u64 {
        self.0
    }
}

pub unsafe trait Callback {
    fn id() -> i32;
    fn size() -> i32;
    unsafe fn from_raw(raw: *mut libc::c_void) -> Self;
}

#[cfg(test)]
mod tests {
    use super::*;
    #[test]
    fn basic_test() {
        let client = Client::init().unwrap();

        client.register_callback(|p: PersonaStateChange| {
            println!("Got callback: {:?}", p);
        });

        let utils = client.utils();
        println!("Utils:");
        println!("AppId: {:?}", utils.app_id());
        println!("UI Language: {}", utils.ui_language());

        let apps = client.apps();
        println!("Apps");
        println!("IsInstalled(480): {}", apps.is_app_installed(AppId(480)));
        println!("InstallDir(480): {}", apps.app_install_dir(AppId(480)));
        println!("BuildId: {}", apps.app_build_id());
        println!("AppOwner: {:?}", apps.app_owner());
        println!("Langs: {:?}", apps.available_game_languages());
        println!("Lang: {}", apps.current_game_language());
        println!("Beta: {:?}", apps.current_beta_name());

        let friends = client.friends();
        println!("Friends");
        let list = friends.get_friends(FriendFlags::IMMEDIATE);
        println!("{:?}", list);
        for f in &list {
            println!("Friend: {:?} - {}({:?})", f.id(), f.name(), f.state());
            friends.request_user_information(f.id(), true);
        }
        friends.request_user_information(SteamId(76561198174976054), true);

        for _ in 0 .. 50 {
            client.run_callbacks();
            ::std::thread::sleep(::std::time::Duration::from_millis(100));
        }
    }
}