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

  1. /* Test-plugin v1.1 rev.#2 by Deniil 715! for MultiRen
  2.    Made 2000-07-04
  3.  
  4.    E-mail to me, Daniel Westerberg: deniil@algonet.se
  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: Test-plugin v1.1 by Deniil 715! rev.#2 (2000-07-04)"
  16. #define NUMSTRINGS_FOR_THIS_PLUGIN 2
  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. char ascii[5], hex[9];
  55.  
  56. int main(int argc,char *argv[]) {
  57.   char sigbit;
  58.   long sig, msig;
  59.   Task *mtask;
  60.   if(DOSBase=(struct DosLibrary*)OpenLibrary("dos.library",0)) {
  61.     if(IntuitionBase=(struct IntuitionBase*)OpenLibrary("intuition.library",0)) {
  62.       if(argc==2) {
  63.         if(mrp=(struct multiren_plugin*)atol(argv[1])) {
  64.           if(mrp->id==*(long*)"MRPO") {
  65.             if((sigbit=AllocSignal(-1))>=0) {
  66.               sig=1<<sigbit;
  67.               while(1) {
  68.                 switch(mrp->command) {
  69.                 case COM_ASK:
  70.                   mtask=mrp->task;
  71.                   msig=mrp->sig;
  72.                   mrp->ret=ask();
  73.                   SetProgramName(mrp->name);
  74.                   mrp->task=FindTask(0L);
  75.                   mrp->sig=sig;
  76.                   break;
  77.                 case COM_EXTRACT:   mrp->ret=extract(); break;
  78.                 case COM_CONFIGURE: mrp->ret=configure(); break;
  79.                 case COM_ABOUT:     mrp->ret=about(); break;
  80.                 case COM_QUIT:
  81.                   mrp->ret=cleanup();
  82.                   FreeSignal(sigbit);
  83.                   CloseLibrary((struct Library*)DOSBase);
  84.                   Signal(mtask,msig);
  85.                   return 0;
  86.                 default:
  87.                   mrp->ret=ERR_UNKNOWN;
  88.                 }
  89.                 Signal(mtask,msig);
  90.                 Wait(sig);
  91.               }
  92.             }
  93.             else {
  94.               mrp->ret=ERR_NOSIG;
  95.               Signal(mrp->task,mrp->sig);
  96.               return 0;
  97.             }
  98.           }
  99.         }
  100.       }
  101.       CloseLibrary((struct Library*)IntuitionBase);
  102.     }
  103.     CloseLibrary((struct Library*)DOSBase);
  104.   }
  105.   printf("This is a plugin for MultiRen!\n"
  106.          "It is not supposed to be executed manually!\n"
  107.          "Use it through the Renplacer tool in MultiRen instead!\n");
  108.   return ERR_FATAL;
  109. }
  110.  
  111. short ask() {
  112.   mrp->numstrings=NUMSTRINGS_FOR_THIS_PLUGIN;  /* I will return 2 strings */
  113.   mrp->stringlist[0]="First 4 bytes as hex";   /* Setting information-strings */
  114.   mrp->stringlist[1]="First 4 bytes as ASCII";
  115.   mrp->name="Test Plugin"; /* This plugins name */
  116.   mrp->newname=0;          /* This plugin reads info from the file and it is
  117.                               therefor unwise to request newname as it changes
  118.                               and the file will not be found. */
  119.   return ERR_OK; /* This plugin can't fail in initiation */
  120. }
  121.  
  122. short extract() { /* Do my stuff.. */
  123.   BPTR fh;
  124.   long len;
  125.   if(fh=Open(mrp->name,MODE_OLDFILE)) { /* Open the file that later is going to be renamed. */
  126.     len=Read(fh,ascii,4L);
  127.     Close(fh);
  128.     hex[8]='\0';
  129.     ascii[4]='\0';
  130.     if(len!=4L) return ERR_OTHER;
  131.     sprintf(hex,"%08lX",*(long*)ascii);
  132.     mrp->stringlist[0]=hex;   /* Set the pointer so that MultiRen.. */
  133.     mrp->stringlist[1]=ascii; /* ..can get my strings. */
  134.     return ERR_OK; /* My stuff went ok */
  135.   }
  136.   return ERR_NOFILE; /* The file didn't open */
  137. }
  138.  
  139. short configure() { return ERR_NOTIMPL; } /* There is no config for this plugin */
  140.  
  141. short about() {
  142.   if(req("Test Plugin v1.1 rev.#2 by Deniil 715! for MultiRen\n\n"
  143.          "It was made 2000-07-04 in Amiga-E\n\n"
  144.          "E-mail: deniil@algonet.se","More|OK"))
  145.     req("This plugin will return the first 4 bytes\n"
  146.         "of the file to rename in two ways. The first\n"
  147.         "string will be the 4 bytes in hexadecimal,\n"
  148.         "the other one just as a plain string.","OK");
  149.   return ERR_OK;
  150. }
  151.  
  152. short cleanup() { return ERR_OK; }
  153.  
  154. short req(char *body,char *gads) {
  155.   struct EasyStruct tags;
  156.   tags.es_Title="Test Plugin";
  157.   tags.es_TextFormat=body;
  158.   tags.es_GadgetFormat=gads;
  159.   return EasyRequestArgs(NULL,&tags,NULL,NULL);
  160. }