X-Git-Url: https://jxself.org/git/?p=mudsync.git;a=blobdiff_plain;f=mudsync.scm;h=eee888dd5a69d9adc43ae0b0170ae84980ca8a58;hp=6913ac23f2b5aad572e8bf3b2b4dd07e5c25b258;hb=11ff8f1ac1d05e8d00c9936cfac59907eb323318;hpb=afe044e00f0a95fdb945c90d679ae2d223cfe0e8 diff --git a/mudsync.scm b/mudsync.scm index 6913ac2..eee888d 100644 --- a/mudsync.scm +++ b/mudsync.scm @@ -1,16 +1,40 @@ +;;; Mudsync --- Live hackable MUD +;;; Copyright © 2016 Christopher Allan Webber +;;; +;;; This file is part of Mudsync. +;;; +;;; Mudsync is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or +;;; (at your option) any later version. +;;; +;;; Mudsync is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with Mudsync. If not, see . + (use-modules (8sync systems actors) + (8sync systems actors debug) (8sync agenda) (ice-9 format) (ice-9 match) + (gdbm) (oop goops)) + +;;; Networking +;;; ========== + (define %default-server #f) (define %default-port 8889) (define-class () (server-socket #:accessor nm-server-socket) - ;; mapping of client -> local-id + ;; mapping of client -> client-id (clients #:accessor nm-clients #:init-thunk make-hash-table) ;; send input to this actor @@ -21,7 +45,9 @@ (make-action-dispatch ((start-listening actor message) (nm-install-socket actor (message-ref message 'server %default-server) - (message-ref message 'port %default-port)))))) + (message-ref message 'port %default-port))) + ((send-to-client actor message client data) + (nm-send-to-client-id actor client data))))) (define-method (nm-close-everything (nm ) remove-from-agenda) "Shut it down!" @@ -43,7 +69,7 @@ (define %maximum-backlog-conns 128) ; same as SOMAXCONN on Linux 2.X, ; says the intarwebs -(define-method (nm-install-socket (nm ) server port) +(define (nm-install-socket nm server port) "Install socket on SERVER with PORT" (let ((s (socket PF_INET ; ipv4 SOCK_STREAM ; two-way connection-based byte stream @@ -82,7 +108,7 @@ ;; TODO: set up periodic close of idle connections? )) -(define-method (nm-new-client (nm ) s) +(define (nm-new-client nm s) "Handle new client coming in to socket S" (let* ((client-connection (accept s)) (client-details (cdr client-connection)) @@ -92,11 +118,11 @@ (gethostbyaddr (sockaddr:addr client-details))) - (let ((local-id (big-random-number))) - (hash-set! (nm-clients nm) local-id client) - (8sync-port client #:read (nm-make-client-receive nm local-id))))) + (let ((client-id (big-random-number))) + (hash-set! (nm-clients nm) client-id client) + (8sync-port client #:read (nm-make-client-receive nm client-id))))) -(define-method (nm-make-client-receive (nm ) local-id) +(define (nm-make-client-receive nm client-id) "Make a method to receive client data" (let ((buffer '())) (define (reset-buffer) @@ -115,33 +141,40 @@ ;; reset buffer (set! buffer '()) ;; run it - (nm-handle-line nm client local-id ready-line))) + (nm-handle-line nm client client-id ready-line))) (_ #f))) ;; Shut things down on closed port or EOF object (cond ((port-closed? client) - (nm-handle-port-closed nm client local-id)) + (nm-handle-port-closed nm client client-id)) ((and (char-ready? client) (eof-object? (peek-char client))) - (nm-handle-port-eof nm client local-id)))) + (nm-handle-port-eof nm client client-id)))) receive-handler)) -(define-method (nm-handle-port-closed (nm ) client local-id) +(define (nm-handle-port-closed nm client client-id) "Handle a closed port" - (format #t "DEBUG: handled closed port ~x\n" local-id) + (format #t "DEBUG: handled closed port ~x\n" client-id) (8sync-port-remove client) - (hash-remove! (nm-clients nm) local-id)) + (hash-remove! (nm-clients nm) client-id)) -(define-method (nm-handle-port-eof (nm ) client local-id) +(define-method (nm-handle-port-eof nm client client-id) "Handle seeing an EOF on port" - (format #t "DEBUG: handled eof-object on port ~x\n" local-id) + (format #t "DEBUG: handled eof-object on port ~x\n" client-id) (close client) (8sync-port-remove client) - (hash-remove! (nm-clients nm) local-id)) + (hash-remove! (nm-clients nm) client-id)) -(define-method (nm-handle-line (nm ) client local-id line) +(define-method (nm-handle-line nm client client-id line) "Handle an incoming line of input from a client" - (format #t "~x got line: ~s\n" local-id line)) + (<- nm (nm-send-input-to nm) 'client-input + #:data line + #:client client-id)) + +(define-method (nm-send-to-client-id nm client-id data) + "Send DATA to TO-CLIENT id" + (display data + (hash-ref (nm-clients nm) client-id))) ; (ez-run-hive hive (list (bootstrap-message hive (actor-id nm) 'start-listening))) @@ -149,12 +182,220 @@ ;; (define-method (nm-close-port (nm ))) -(define-generic gm-init-world) + +;;; The game master! Runs the world. +;;; ================================= + +;; @@: We could call this a "world builder" instead... +;; I kinda like calling it a GM though. + (define-class () + ;; Directory of "special" objects. + (special-dir #:init-thunk make-hash-table + #:getter gm-special-dir) + + ;; Room directory. Room symbols to + (room-dir #:init-thunk make-hash-table + #:getter gm-room-dir) + + ;; A mapping of client ids to in-game actors + (client-to-actor #:init-thunk make-hash-table) + ;; Network manager + (network-manager #:accessor gm-network-manager + #:init-value #f) + (message-handler #:init-value (make-action-dispatch - ;; init-world - ))) + (init-world (wrap-apply gm-init-world)) + (client-input (wrap-apply gm-handle-client-input)) + (lookup-room (wrap-apply gm-lookup-room))))) + + +;;; .. begin world init stuff .. + +(define (gm-init-world gm message) + ;; Load database + ;; TODO + + ;; Init basic rooms / structure + (gm-init-rooms gm (message-ref message 'room-spec)) + + ;; Restore database-based actors + ;; TODO + + ;; Set up the network + (gm-setup-network gm)) + +(define (gm-init-rooms gm rooms-spec) + "Initialize the prebuilt rooms" + ;; @@: Would it be nicer to just allow passing in + ;; #:exits to the room spec itself? + (define (exit-from-spec exit-spec) + "Take room exits syntax from the spec, turn it into exits" + (match exit-spec + ((name to-symbol description) + (make + #:name name + #:to-symbol to-symbol + #:description description)))) + + (define rooms + (map + (match-lambda + ((room-symbol room-class + room-args ... + (room-exits ...)) + + ;; initialize the room + (apply create-actor* gm room-class "room" + #:gm (actor-id gm) + #:exits (map exit-from-spec room-exits) + room-args))) + rooms-spec)) + + ;; now wire up all the exits + (for-each + (lambda (room) + (format #t "Wiring up ~s...\n" (address->string room)) + (<-wait gm room 'wire-exits!)) + rooms)) + + +(define (gm-setup-network gm) + ;; Create a default network manager if none available + (set! (gm-network-manager gm) + (create-actor* gm "netman" + #:send-input-to (actor-id gm))) + + ;; TODO: Add host and port options + (<-wait gm (gm-network-manager gm) 'start-listening)) + +;;; .. end world init stuff ... + + +(define (gm-handle-client-input actor message) + "Handle input from a client." + (define client-id (message-ref message 'client)) + (define input (message-ref message 'data)) + (format #t "From ~s: ~s\n" client-id input) + (<- actor (gm-network-manager actor) 'send-to-client + #:client client-id + #:data "Thanks, we got it!\n")) + +(define-mhandler (gm-lookup-room actor message symbol) + (define room-id + (slot-ref (gm-room-dir actor) symbol)) + (<-reply actor message room-id)) + +(define-method (gm-setup-database (gm )) + 'TODO) + +(define-method (gm-setup-rooms-etc (gm )) + 'TODO) + + + +;;; Rooms +;;; ===== + +;; @@: Maybe make this into a record type when this congeals a bit? +;; I dunno? + +(define-class () + ;; Used for wiring + (to-symbol #:accessor exit-to-symbol + #:init-keyword #:to-symbol) + ;; The actual address we use + (to-address #:accessor exit-to-address + #:init-keyword #:address) + ;; Name of the room (@@: Should this be names?) + (name #:accessor exit-name + #:init-keyword #:name) + (description #:accessor exit-description + #:init-keyword #:description) + + ;; *Note*: These two methods have an extra layer of indirection, but + ;; it's for a good reason. + (visible-check #:init-value (const #t) + #:init-keyword #:visible-check) + ;; By default all exits can be traversed + (traverse-check #:init-value (const #t) + #:init-keyword #:traverse-check)) + +(define* (exit-can-traverse? exit actor + #:optional (target-actor (actor-id actor))) + ((slot-ref exit 'traverse-check) exit actor target-actor)) + +(define* (exit-is-visible? exit actor + #:optional (target-actor (actor-id actor))) + ((slot-ref exit 'traverse-check) exit actor target-actor)) + + +;; Kind of a useful utility, maybe? +(define (simple-slot-getter slot) + (lambda (actor message) + (reply-message actor message + #:val (slot-ref actor slot)))) + + +(define-class () + (name #:init-keyword #:name) + (description #:init-value "" + #:init-keyword #:description) + ;; Uses a hash table like a set (values ignored) + (occupants #:init-thunk make-hash-table) + ;; A list of + (exits #:init-value '() + #:getter room-exits) + ;; @@: Maybe eventually will inherit from some more general + ;; game object class + (gm #:init-keyword #:gm + #:getter room-gm) + + (message-handler + #:allocation #:each-subclass + #:init-value + (make-action-dispatch + (get-description + (simple-slot-getter 'description)) + (get-name + (simple-slot-getter 'name)) + ((register-occupant! actor message who) + "Register an actor as being a occupant of this room" + (hash-set! (slot-ref actor 'occupants) who #t)) + ((evict-occupant! actor message who) + "De-register an occupant removed from the room" + (hash-remove! (slot-ref actor 'occupants) who)) + (wire-exits! (wrap-apply room-wire-exits!))))) + +(define (room-wire-exits! room message) + (for-each + (lambda (exit) + (define new-exit + (<-wait room (room-gm room) 'lookup-room + #:symbol (exit-to-symbol exit))) + + (set! (exit-to-address exit) new-exit)) + + (room-exits room))) + + + +;;; Players +;;; ======= + +;; Debugging stuff +(define %test-gm #f) +(define (run-demo db-path room-spec) + (define hive (make-hive)) + (define gm + (hive-create-actor-gimmie* hive "gm")) + (set! %test-gm gm) + ;; @@: Boy, wouldn't it be nice if the agenda could do things + ;; on interrupt :P + (ez-run-hive hive + (list (bootstrap-message hive (actor-id gm) 'init-world + #:room-spec room-spec))))