home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 20 / AACD20.BIN / AACD / Utilities / MultiRen / Developers / Template.mrp.c < prev    next >
C/C++ Source or Header  |  2000-07-03  |  4KB  |  138 lines

  1. /* Template for making plugins for MultiRen in C.
  2.    Please use this template and change NOTHING in main()!
  3.  
  4.    By Deniil 715! 2000-07-04, rev #2.
  5. */
  6.  
  7. #include<proto/exec.h>
  8. #include<proto/dos.h>
  9. #include<proto/intuition.h>
  10. #include<exec/tasks.h>
  11. #include<intuition/intuition.h>
  12. #include<stdlib.h>
  13. #include<stdio.h>
  14.  
  15. #define _VER "$VER: Template v1.1 by Deniil 715! rev.#2 (2000-07-04)"
  16. #define NUMSTRINGS_FOR_THIS_PLUGIN 1
  17. #define FILE_NAME_LENGTH 512
  18. #define COM_ASK 1
  19. #define COM_EXTRACT 2
  20. #define COM_CONFIGURE 3
  21. #define COM_ABOUT 4
  22. #define COM_QUIT 5
  23. #define ERR_OK 0
  24. #define ERR_NOMEM 1
  25. #define ERR_NOFILE 2
  26. #define ERR_NOSIG 3
  27. #define ERR_NOTIMPL 4
  28. #define ERR_UNKNOWN 5
  29. #define ERR_OTHER 6
  30. #define ERR_WRONGFORMAT 7
  31. #define ERR_NOINFO 8
  32. #define ERR_FATAL 20
  33.  
  34. struct multiren_plugin {
  35.   long id;
  36.   Task *task;
  37.   long sig;
  38.   short ret;
  39.   char command;
  40.   char numstrings;       /* You will */
  41.   char *stringlist[256]; /* only use */
  42.   char *name;            /* these 4 */
  43.   char newname;          /* elements */
  44. };
  45.  
  46. short ask(void);
  47. short extract(void);
  48. short configure(void);
  49. short about(void);
  50. short cleanup(void);
  51. short req(char*,char*);
  52.  
  53. struct multiren_plugin *mrp;
  54.  
  55. int main(int argc,char *argv[]) {
  56.   char sigbit;
  57.   long sig, msig;
  58.   Task *mtask;
  59.   if(DOSBase=(struct DosLibrary*)OpenLibrary("dos.library",0)) {
  60.     if(IntuitionBase=(struct IntuitionBase*)OpenLibrary("shortuition.library",0)) {
  61.       if(argc==2) {
  62.         if(mrp=(struct multiren_plugin*)atol(argv[1])) {
  63.           if(mrp->id==*(long*)"MRPO") {
  64.             if((sigbit=AllocSignal(-1))>=0) {
  65.               sig=1<<sigbit;
  66.               while(1) {
  67.                 switch(mrp->command) {
  68.                 case COM_ASK:
  69.                   mtask=mrp->task;
  70.                   msig=mrp->sig;
  71.                   mrp->ret=ask();
  72.                   SetProgramName(mrp->name);
  73.                   mrp->task=FindTask(0L);
  74.                   mrp->sig=sig;
  75.                   break;
  76.                 case COM_EXTRACT:   mrp->ret=extract(); break;
  77.                 case COM_CONFIGURE: mrp->ret=configure(); break;
  78.                 case COM_ABOUT:     mrp->ret=about(); break;
  79.                 case COM_QUIT:
  80.                   mrp->ret=cleanup();
  81.                   FreeSignal(sigbit);
  82.                   CloseLibrary((struct Library*)DOSBase);
  83.                   Signal(mtask,msig);
  84.                   return 0;
  85.                 default:
  86.                   mrp->ret=ERR_UNKNOWN;
  87.                 }
  88.                 Signal(mtask,msig);
  89.                 Wait(sig);
  90.               }
  91.             }
  92.             else {
  93.               mrp->ret=ERR_NOSIG;
  94.               Signal(mrp->task,mrp->sig);
  95.               return 0;
  96.             }
  97.           }
  98.         }
  99.       }
  100.       CloseLibrary((struct Library*)IntuitionBase);
  101.     }
  102.     CloseLibrary((struct Library*)DOSBase);
  103.   }
  104.   printf("This is a plugin for MultiRen!\n"
  105.          "It is not supposed to be executed manually!\n"
  106.          "Use it through the Renplacer tool in MultiRen instead!\n");
  107.   return ERR_FATAL;
  108. }
  109.  
  110. short ask() {
  111.   mrp->numstrings=NUMSTRINGS_FOR_THIS_PLUGIN;
  112.   mrp->stringlist[0]="<template>";
  113.   mrp->name="<template>";
  114.   mrp->newname=0; /* 0 = Request Old name, 1 = Request New name */
  115.   return ERR_OK;
  116. }
  117.  
  118. short extract() {
  119.   mrp->stringlist[0]="<template>";
  120.   return ERR_OK;
  121. }
  122.  
  123. short configure() { return ERR_NOTIMPL; }
  124.  
  125. short about() {
  126.   req("About template..","OK");
  127.   return ERR_OK;
  128. }
  129.  
  130. short cleanup() { return ERR_OK; }
  131.  
  132. short req(char *body,char *gads) {
  133.   struct EasyStruct tags;
  134.   tags.es_Title="Test Plugin";
  135.   tags.es_TextFormat=body;
  136.   tags.es_GadgetFormat=gads;
  137.   return EasyRequestArgs(NULL,&tags,NULL,NULL);
  138. }