Browse Source

Some core refactoring

master
milkbone57 22 years ago
parent
commit
cf64c44672
  1. 3
      docs/VERSION.txt
  2. 1
      guid/tk.pl
  3. 89
      lib/Milkbone.pm
  4. 11
      lib/Milkbone/Util.pm
  5. 2
      plugins/Tk-BList/Milkbone/BList.pm
  6. 2
      plugins/Tk-BList/Tk-BList.pl
  7. 2
      plugins/Tk-GUI/Tk-GUI.pl
  8. 2
      plugins/Tk-Logon/Milkbone/Logon.pm

3
docs/VERSION.txt

@ -1,6 +1,9 @@
0.7 0.7
-- --
* New slogan (at last)
* All Milkbone.pm exports are by request only, except for register_hook
* path function removed
* Ticker runs in BList * Ticker runs in BList
* Milkbone::Hooks works * Milkbone::Hooks works
* Net-Demo mostly working * Net-Demo mostly working

1
guid/tk.pl

@ -6,6 +6,7 @@
use strict; use strict;
use warnings; use warnings;
use Milkbone qw(load_plugin);
use Milkbone::Hooks qw(create_logon_prompt pre_mainloop mainloop use Milkbone::Hooks qw(create_logon_prompt pre_mainloop mainloop
post_mainloop); post_mainloop);

89
lib/Milkbone.pm

@ -15,7 +15,7 @@ require Exporter;
# include the rest of the core # include the rest of the core
use Milkbone::HookEntry; use Milkbone::HookEntry;
use Milkbone::Util; use Milkbone::Util qw(path slurp win32 nix nt loaded_files user_path strip_html);
use Milkbone::Plugin; use Milkbone::Plugin;
# equal to the version of the current milkbone release # equal to the version of the current milkbone release
@ -27,13 +27,13 @@ our $FatalLog = "fatals.txt";
push @INC, "./plugins"; push @INC, "./plugins";
# exports # exports
our @ISA = qw( Exporter ); our @ISA = qw(Exporter);
our @EXPORT = qw(@Milkbone::Util::EXPORT hook is_running abort register_hook our @EXPORT = (@Milkbone::Util::EXPORT, qw(hook is_running abort register_hook
option data slurp option data deregister_hook strip_html user_file set_option
deregister_hook strip_html user_file set_option unload_plugin reload_core reload_plugin
unload_plugin load_plugin reload_core reload_plugin nix win32 %ARGS path));
nix win32 %ARGS); our @EXPORT_OK = (@EXPORT, @Milkbone::Util::EXPORT_OK,
our @EXPORT_OK = qw(@Milkbone::Util::EXPORT_OK); qw(load_plugin));
# global variables # global variables
my ($running, $dirty); my ($running, $dirty);
@ -47,29 +47,32 @@ $running = 1;
# autoflushing on # autoflushing on
$| = 1; $| = 1;
# This causes @EXPORT to be exported even when using import lists
sub import {
Milkbone->export_to_level(1, @_, @EXPORT);
}
# returns a boolean indicating whether or not the core loop is running # returns a boolean indicating whether or not the core loop is running
sub is_running sub is_running {
{ $running;
$running;
} }
# end the core loop and begin shutdown # end the core loop and begin shutdown
sub abort sub abort {
{ $running = 0;
$running = 0; print @_;
print @_; exit;
exit;
} }
# initialize the core # initialize the core
sub init sub init {
{ register_hook("load_plugins", \&load_plugins);
register_hook("load_plugins", \&load_plugins); register_hook("pre_mainloop", \&pre_mainloop);
register_hook("pre_mainloop", \&pre_mainloop); register_hook("post_mainloop", \&post_mainloop);
register_hook("post_mainloop", \&post_mainloop); register_hook("save_options", \&save_options);
register_hook("save_options", \&save_options); register_hook("loaded_plugins", \&plugin_list);
register_hook("loaded_plugins", \&plugin_list); register_hook("error", \&error);
register_hook("error", \&error);
} }
# ------------------------------------------ # ------------------------------------------
@ -77,22 +80,22 @@ sub init
# ------------------------------------------ # ------------------------------------------
sub load_options sub load_options
{ {
my ($directive, $temp, @args); my ($directive, $temp, @args);
my $file = $ARGS{-file} || "mb.conf"; my $file = $ARGS{-file} || "mb.conf";
open(GLOBAL, "<$file") or die "Can't open config file: $!"; open(GLOBAL, "<$file") or die "Can't open config file: $!";
while(<GLOBAL>) while(<GLOBAL>)
{ {
next if /^\#/; next if /^\#/;
next if /^\s*\n/; next if /^\s*\n/;
chomp; chomp;
($directive, @args) = split /\s|\,/; ($directive, @args) = split /\s|\,/;
if(@args > 1) if(@args > 1)
{ {
my @val = grep { !/^$/ } @args; my @val = grep { !/^$/ } @args;
$options{$directive} = \@val; $options{$directive} = \@val;
@ -167,12 +170,12 @@ sub prep_plugin
return unless $plugin; return unless $plugin;
if(-e path("plugins/$plugin.pl")) { if(-e "plugins/$plugin.pl") {
# single-file plugin - no need for @INC setting # single-file plugin - no need for @INC setting
} }
elsif(-e path("plugins/$plugin") and -d path("plugins/$plugin")) { elsif(-e "plugins/$plugin" and -d "plugins/$plugin") {
# multi-file plugin - add its folder to @INC # multi-file plugin - add its folder to @INC
unshift @INC, path("plugins/$plugin"); unshift @INC, "plugins/$plugin";
} }
else { else {
# plugin doesn't exist # plugin doesn't exist
@ -189,7 +192,7 @@ sub init_plugin
{ {
my ($plugin) = @_; my ($plugin) = @_;
eval "require \"$plugin.pl\";"; eval "require \"$plugin.pl\";";
error("Couldn't require $plugin.pl for $plugin: $@") if $@; die "Couldn't require $plugin.pl for $plugin: $@" if $@;
} }
# load one or more plugins # load one or more plugins

11
lib/Milkbone/Util.pm

@ -8,8 +8,11 @@ package Milkbone::Util;
use strict; use strict;
use warnings; use warnings;
use Carp;
our @ISA = qw(Exporter); our @ISA = qw(Exporter);
our @EXPORT_OK = qw(slurp win32 nix nt loaded_files user_path strip_html); our @EXPORT = qw();
our @EXPORT_OK = qw(slurp win32 nix nt loaded_files user_path strip_html path);
# read a file in one big slurp # read a file in one big slurp
sub slurp sub slurp
@ -99,4 +102,10 @@ sub loaded_files
} grep s/^_<//, keys %main::; } grep s/^_<//, keys %main::;
} }
sub path
{
confess "Milkbone::path is deprecated";
return @_;
}
1; 1;

2
plugins/Tk-BList/Milkbone/BList.pm

@ -2,7 +2,7 @@
package Milkbone::BList; package Milkbone::BList;
use Milkbone; use Milkbone qw(slurp abort %ARGS);
use warnings; use warnings;
use strict; use strict;

2
plugins/Tk-BList/Tk-BList.pl

@ -4,7 +4,7 @@ use Tk;
use Milkbone::BList; use Milkbone::BList;
use Milkbone::Tree; use Milkbone::Tree;
use Milkbone; use Milkbone qw(slurp);
use strict; use strict;
use warnings; use warnings;

2
plugins/Tk-GUI/Tk-GUI.pl

@ -35,7 +35,7 @@ $mw->optionAdd("*highlightThickness", 0);
$mw->optionAdd("*background", option("ThemeColor")) if(option("ThemeColor")); $mw->optionAdd("*background", option("ThemeColor")) if(option("ThemeColor"));
my $icon = $mw->Photo(-file => path("images/icon.bmp")); my $icon = $mw->Photo(-file => "images/icon.bmp");
register_hook("tk_seticon", sub { $ARGS{-wnd}->Icon(-image => $icon); }); register_hook("tk_seticon", sub { $ARGS{-wnd}->Icon(-image => $icon); });
register_hook("tk_get_default_font", sub { $defaultFont }); register_hook("tk_get_default_font", sub { $defaultFont });

2
plugins/Tk-Logon/Milkbone/Logon.pm

@ -13,7 +13,7 @@ Construct Tk::Widget 'MBLogon';
my $mw = hook("tk_getmain"); my $mw = hook("tk_getmain");
my $slogan = "when you run out of clever slogans,\n you get something like this"; my $slogan = "earth! wind! water! fire! spirit! MILKBONE!";
sub ClassInit sub ClassInit
{ {

Loading…
Cancel
Save