X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=workshop.h;h=f328d179316444e80e5b3dfaa84672bb54a23ecc;hb=7b1e8a237acc3121c86fab9b5946da6a8d3bf6c4;hp=a08bc4d25602ad631880b5f04e3dc741d29ad19a;hpb=ac6288a8951db15eab6c681b8add8f350eb60746;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/workshop.h b/workshop.h index a08bc4d..f328d17 100644 --- a/workshop.h +++ b/workshop.h @@ -1,22 +1,18 @@ #ifndef WORKSHOP_H #define WORKSHOP_H +#include "workshop_types.h" + #define VG_GAME #include "vg/vg.h" #include "vg/vg_steam_remote_storage.h" - -struct workshop{ - enum workshop_operation{ - k_workshop_form_op_none, - k_workshop_form_op_loading_model, - k_workshop_form_op_downloading_submission, - k_workshop_form_op_publishing_update, - k_workshop_op_item_scan, - k_workshop_op_item_load - } - operation; -} -static workshop; +#include "skaterift.h" +#include "pointcloud.h" +#include "vg/vg_steam_auth.h" +#include "vg/vg_steam_ugc.h" +#include "vg/vg_steam_friends.h" +#include "steam.h" +#include "ent_skateshop.h" struct async_workshop_filepath_info{ PublishedFileId_t id; @@ -29,32 +25,115 @@ struct async_workshop_installed_files_info{ u32 *len; /* inout */ }; -VG_STATIC void async_workshop_get_filepath( void *data, u32 len ); -VG_STATIC void async_workshop_get_installed_files( void *data, u32 len ); +struct async_workshop_metadata_info{ + struct workshop_file_info *info; + const char *path; +}; -/* - * Start a new operation and crash if we are already running one. - */ -VG_STATIC int workshop_begin_op( enum workshop_operation op ) -{ - if( workshop.operation != k_workshop_form_op_none ){ - vg_error( "Workshop form currently executing op(%d), tried to " - "start op(%d)\n", workshop.operation, op ); - return 0; + +#define WORKSHOP_VIEW_PER_PAGE 15 + +struct workshop_form{ + struct { + char title[80]; + char description[512]; + char author[32]; + struct ui_dropdown_value submission_type_selection; + enum workshop_file_type type; + + PublishedFileId_t file_id; /* 0 if not published yet */ + + struct ui_dropdown_value visibility; + int submit_title, /* set if the respective controls are touched */ + submit_description, + submit_file_and_image; + } + submission; + + enum workshop_form_page{ + k_workshop_form_hidden, + k_workshop_form_open, /* open but not looking at anything */ + k_workshop_form_edit, /* editing a submission */ + k_workshop_form_cclosing, + k_workshop_form_closing_good, /* post upload screen */ + k_workshop_form_closing_bad, + } + page; + + /* model viewer + * ----------------------------- + */ + + char addon_folder[128]; + struct player_board board_model; + + /* what does the user want to do with the image preview? */ + enum workshop_form_file_intent{ + k_workshop_form_file_intent_none, /* loading probably */ + k_workshop_form_file_intent_new, /* board_model is valid */ + k_workshop_form_file_intent_keep_old /* just browsing */ } - - workshop.operation = op; - vg_info( "Starting op( %d )\n", op ); - return 1; + file_intent; + + world_instance *view_world; + ent_swspreview *ptr_ent; + v2f view_angles, + view_angles_begin; + v3f view_offset, + view_offset_begin; + + float view_dist; + int view_changed; + + /* + * published UGC request + * ------------------------------ + */ + + struct { + UGCQueryHandle_t handle; + EResult result; + + int all_item_count, + returned_item_count; + } + ugc_query; + + /* + * UI information + * ------------------------------------------ + */ + + const char *failure_or_success_string; + + int img_w, img_h; + u8 *img_buffer; + + int view_published_page_count, + view_published_page_id; + + struct published_file{ + EResult result; + int result_index; + char title[80]; + } + published_files_list[WORKSHOP_VIEW_PER_PAGE]; + int published_files_list_length; } +static workshop_form; + + + +VG_STATIC int workshop_submit_command( int argc, const char *argv[] ); +VG_STATIC void async_workshop_get_filepath( void *data, u32 len ); +VG_STATIC void async_workshop_get_installed_files( void *data, u32 len ); +VG_STATIC void workshop_load_metadata( const char *path, + struct workshop_file_info *info ); -/* - * Finished operation, otheres can now run - */ -VG_STATIC void workshop_end_op(void) +/* generic reciever */ +VG_STATIC void workshop_async_any_complete( void *data, u32 size ) { - vg_info( "Finishing op( %d )\n", workshop.operation ); - workshop.operation = k_workshop_form_op_none; + skaterift_end_op(); } #endif /* WORKSHOP_H */